/* ==========================================
   GRID STUDIO - CSS STYLES
   Theme: Black, White, Blue
   ========================================== */

/* CSS Variables */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-blue: #2563eb;
  --color-blue-light: #3b82f6;
  --color-blue-dark: #1e40af;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;

  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* btn css */
.btn-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1.5rem;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

/* Primary Button */
.btn-new-primary {
  text-decoration: none;
  background: #2563eb;
  color: white;
}

.btn-new-primary:hover {
  background: #000000;
  color: white;
}

/* Make absolutely sure text is white */
.btn-new-primary:hover,
.btn-new-primary:hover * {
  color: white;
}

/* Secondary Button */
.btn-new-secondary {
  background: white;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn-new-secondary:hover {
  background: #000000;
  color: white;
  border-color: #000000;
}

.btn-new-secondary:hover {
  color: white;
}

/* Keyboard Shortcuts */
.btn-new-shortcuts {
  display: inline-flex;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.btn-new-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.25rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

/* btn css */

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   HERO SECTION - CENTERED CARD
   ========================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Hero Card - Centered Box */
.hero-card {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-2xl);
  background: #f9fafb;
  border-radius: var(--radius-2xl);
  box-shadow:
    0 0 20px -5px rgb(0 0 0 / 12%),
    20px 18px 19px 0px rgb(255 255 255);
  /* box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 12%),
    0 10px 10px -5px rgb(0 0 0 / 11%); */
  /* border: 1px solid var(--color-gray-100); */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: var(--spacing-lg);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.brand-icon {
  width: 32px;
  height: 32px;
  color: var(--color-black);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

/* Hero Text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.hero-headline {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

.hero-subtext {
  display: block;
  color: var(--color-gray-500);
  font-weight: 400;
  margin-top: var(--spacing-sm);
}

.hero-experience {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  max-width: 650px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
}

/* Buttons with Animations */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--color-black);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn span,
.btn .btn-icons {
  position: relative;
  z-index: 1;
}

/* Primary Button - Blue to Black */
.btn-primary {
  background-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover::before {
  height: 100%;
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Secondary Button - White to Black */
.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-gray-900);
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary::before {
  background: var(--color-black);
}

.btn-secondary:hover {
  color: var(--color-white);
  border-color: var(--color-black);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-icons {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icons {
  transform: translateY(-2px);
}

/* Promo Badge */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.25rem;
}

.promo-icon {
  font-size: 1.125rem;
}

.promo-text {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
}

.promo-text strong {
  color: var(--color-blue);
  font-weight: 600;
}

/* Clients Slider Container */
.clients-slider-container {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
}

.clients-slider {
  display: flex;
  gap: var(--spacing-xl);
  animation: scroll 20s linear infinite;
  width: max-content;
}

.client-logo {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-400);
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo.meta {
  font-family: var(--font-family);
  text-transform: none;
}

.client-logo.script {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   PORTFOLIO SLIDER - CURVED/PARABOLIC
   ========================================== */

.portfolio-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-gray-50);
  overflow: hidden;
}

.portfolio-slider {
  position: relative;
  height: 500px;
}

.portfolio-track {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: var(--spacing-lg);
  height: 100%;
  padding: 0 var(--spacing-lg);
}

/* Portfolio Items with Parabolic Curve */
.portfolio-item {
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:nth-child(1),
.portfolio-item:nth-child(5) {
  transform: translateY(80px); /* Edges lower */
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(4) {
  transform: translateY(20px); /* Mid points slightly lower */
}

.portfolio-item:nth-child(3) {
  transform: translateY(0); /* Center highest - creates smile curve */
}

/* Portfolio Cards */
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.15),
    0 10px 10px -5px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.portfolio-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Card Sizes */
.portfolio-card.mobile {
  width: 240px;
  height: 400px;
}

.portfolio-card.tablet {
  width: 300px;
  height: 420px;
}

.portfolio-card.desktop {
  width: 500px;
  height: 350px;
}

/* Portfolio Previews */
.portfolio-preview {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

/* Birthday Card Preview */
.birthday-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fca5a5 100%);
  padding: var(--spacing-lg);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.preview-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.birthday-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-xs);
}

.birthday-card p {
  font-size: 1.5rem;
}

/* Dashboard Blue Preview */
.dashboard-blue {
  background: linear-gradient(
    135deg,
    var(--color-blue) 0%,
    var(--color-blue-dark) 100%
  );
  padding: var(--spacing-lg);
}

.preview-header.blue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.stats {
  display: flex;
  gap: var(--spacing-sm);
}

.stat-item {
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.stat-item.green {
  background: #10b981;
}

.preview-image {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

/* Dashboard Dark Preview */
.dashboard-dark {
  background: linear-gradient(
    135deg,
    var(--color-gray-900) 0%,
    var(--color-black) 100%
  );
}

.browser-bar {
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.browser-dots span:nth-child(1) {
  background: #ef4444;
}

.browser-dots span:nth-child(2) {
  background: #f59e0b;
}

.browser-dots span:nth-child(3) {
  background: #10b981;
}

.dashboard-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.code-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  width: 100%;
}

.code-line.short {
  width: 60%;
}

.code-line.medium {
  width: 80%;
}

/* Analytics Preview */
.analytics {
  background: var(--color-white);
  padding: var(--spacing-lg);
}

.preview-header.white-header {
  margin-bottom: var(--spacing-md);
}

.metric {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chart-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--spacing-sm);
}

.chart-bar {
  height: 120px;
  background: linear-gradient(to top, #ef4444 0%, #fca5a5 100%);
  border-radius: var(--radius-sm);
  position: relative;
}

.chart-text {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  font-weight: 500;
}

/* Design System Preview */
.design-system {
  background: linear-gradient(
    135deg,
    var(--color-gray-100) 0%,
    var(--color-white) 100%
  );
  padding: var(--spacing-lg);
  align-items: center;
  justify-content: center;
}

.preview-content-center {
  text-align: center;
}

.component-preview {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
  .portfolio-track {
    gap: var(--spacing-md);
  }

  .portfolio-card.desktop {
    width: 400px;
    height: 300px;
  }

  .portfolio-card.tablet {
    width: 250px;
    height: 360px;
  }
}

@media (max-width: 968px) {
  .hero-card {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .hero-headline {
    font-size: 1.875rem;
  }

  .portfolio-slider {
    height: 400px;
  }

  .portfolio-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: center;
    padding: var(--spacing-lg);
    scrollbar-width: none;
  }

  .portfolio-track::-webkit-scrollbar {
    display: none;
  }

  .portfolio-item {
    transform: translateY(0) !important;
  }

  .portfolio-card.desktop {
    width: 350px;
    height: 250px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: var(--spacing-2xl) 0;
  }

  .hero-card {
    padding: var(--spacing-xl) var(--spacing-md);
    border-radius: var(--radius-xl);
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-experience {
    font-size: 0.9375rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .promo-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .clients-slider {
    gap: var(--spacing-lg);
  }

  .portfolio-card.mobile {
    width: 200px;
    height: 340px;
  }

  .portfolio-card.tablet {
    width: 220px;
    height: 320px;
  }

  .portfolio-card.desktop {
    width: 300px;
    height: 220px;
  }
}

/* circle blocks section */
/* .main-container {
  background: linear-gradient(to right, #ed30a0 0%, #0b86a6 100%);
  min-height: 100vh;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 560px;
  overflow: hidden;
} */

:root {
  --font-title: 24px;
  --grad-start: 280;
  --grad-end: 40;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background: linear-gradient(
    135deg,
    hsl(var(--grad-start), 100%, 75%),
    hsl(var(--grad-end), 100%, 50%)
  );
}

.main-container {
  counter-reset: hueStart var(--grad-start) hueEnd var(--grad-end);
  position: relative;
  padding: 40px;
  border: 1px solid currentColor;
  border-radius: var(--font-title);
  font: 100 var(--font-title)/1 sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}

.main-container::before,
.main-container::after {
  position: absolute;
  display: block;
  width: 100%;
  padding: 5px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.main {
  margin: 0px auto;
  width: 480px;
  height: 480px;
  position: relative;
}

.big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 3px solid #6495f2;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
}

.icon-block {
  width: 64px;
  height: 64px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  box-shadow: 0 2px 4px 0 #3e5ada;
  -webkit-box-shadow: 0 2px 4px 0 #3e5ada;
}

.icon-block img {
  margin: 0px auto;
  width: 86%;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}

.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}

.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}

.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

/* circle content */
.circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 75%;
  height: 75%;
  border: 3px solid #6495f2;
  border-radius: 50%;
}

.circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}

/* center logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.center-logo img {
  max-width: 200px;
}

/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }

  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }

  to {
    -webkit-transform: rotate(-405deg);
  }
}

/* ========================================
   Portfolio Showcase Slider (inside Hero)
   ======================================== */
.portfolio-showcase-wrapper {
  width: 100%;
  margin-top: 5rem;
  position: relative;
}

.portfolio-showcase-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, var(--primary-bg), transparent);
  z-index: 2;
  pointer-events: none;
}

.portfolio-showcase-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to left, var(--primary-bg), transparent);
  z-index: 2;
  pointer-events: none;
}

.portfolio-slider-container {
  width: 100%;
  overflow: hidden;
}

.portfolio-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.05s linear;
  will-change: transform;
}

.portfolio-slide {
  flex-shrink: 0;
  height: 500px;
  width: auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  background: var(--card-bg);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
}

.portfolio-slide.mobile-screen {
  height: 500px;
  width: auto;
}

.portfolio-slide:hover {
  border-color: var(--accent-color);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(83, 237, 149, 0.2);
}

.portfolio-image {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(1) contrast(1);
  transition: all 0.4s ease;
}

.portfolio-slide:hover .portfolio-image {
  filter: brightness(1.05) contrast(1.05);
  transform: scale(1.05);
}

.portfolio-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-slide:hover::after {
  opacity: 1;
}

/* Stats Section */
.stats-section {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.stat-card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #53ed95 0%, #2dd4bf 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Optional: Add subtle glow effect on hover */
.stat-card:hover .stat-number {
  filter: drop-shadow(0 0 8px rgba(83, 237, 149, 0.3));
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #fafafa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card.dark {
  background: #2d2d2d;
  color: white;
}

.testimonial-card.highlight {
  background: #4e7eff;
  color: white;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
  margin: 0 0 16px 0;
  font-weight: 400;
}

.testimonial-card.dark .testimonial-text,
.testimonial-card.highlight .testimonial-text {
  color: white;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-header img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.testimonial-header strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.testimonial-header .time {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.author-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.author-image-round {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: #2d2d2d;
}

.testimonial-card.dark .author-name,
.testimonial-card.highlight .author-name {
  color: white;
}

/* CTA Section */
.testimonials-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-primary-cta {
  background: #4e7eff;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.btn-primary-cta:hover {
  background: #3d6eef;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(78, 126, 255, 0.3);
}

.btn-secondary-cta {
  background: white;
  color: #2d2d2d;
  border: 1px solid #e0e0e0;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.btn-secondary-cta:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.keyboard-shortcuts {
  display: flex;
  gap: 4px;
}

.key {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(78, 126, 255, 0.08);
  border-radius: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00c853;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.badge-text {
  font-size: 14px;
  color: #2d2d2d;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-column:nth-child(3) .testimonial-card {
    display: block;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .testimonials-column {
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .cta-badge {
    font-size: 13px;
  }
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background: #ffffff;
}

.industries-intro {
  margin: 0 auto 40px;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #888;
  margin-bottom: 20px;
}

.intro-text strong {
  color: #2d2d2d;
  font-weight: 600;
}

.trusted-text {
  color: #888;
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tag {
  background: #f5f3ff;
  color: #7c3aed;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.tag:hover {
  background: #ede9fe;
  transform: translateY(-2px);
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.result-card {
  background: #f0f4ff;
  border-radius: 20px;
  padding: 32px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(78, 126, 255, 0.15);
}

.result-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.result-icon {
  width: 48px;
  height: 48px;
  background: #4e7eff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.result-title {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
  line-height: 1.4;
}

.result-divider {
  border: none;
  border-top: 2px dashed #d0dfff;
  margin: 0 0 24px 0;
}

.result-quote {
  background: white;
  border-radius: 16px;
  padding: 24px;
}

.quote-text {
  font-size: 15px;
  line-height: 1.7;
  color: #2d2d2d;
  margin: 0 0 16px 0;
}

.quote-text strong {
  font-weight: 700;
  color: #000;
}

.quote-author {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #c {
    display: none !important;
  }

  #hide-me {
    display: none !important;
  }

  .industries-section {
    padding: 60px 0;
  }

  .industries-intro {
    padding: 0 20px;
    width: 100% !important;
  }

  .intro-text {
    font-size: 16px;
  }

  .service-tags {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .tag {
    font-size: 13px;
    padding: 6px 12px;
  }

  .result-card {
    padding: 24px;
  }

  .result-title {
    font-size: 18px;
  }

  .result-header {
    gap: 12px;
  }

  .result-icon {
    width: 40px;
    height: 40px;
  }

  .quote-text {
    font-size: 14px;
  }
}

/* mouse image slider */
.cont {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: linear-gradient(to left bottom, #f2e3c6 0%, #a7a1a5 100%);
  overflow: hidden;
}

.app {
  position: relative;
  min-width: 850px;
  height: 540px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.app__bgimg {
  position: absolute;
  top: 0;
  left: -2.5%;
  width: 105%;
  height: 100%;
  transition: transform 3.5s 770ms;
}

.app__bgimg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.app__bgimg-image--1 {
  background: url("../images/work/mouse-img1.png") center center no-repeat;
  background-size: cover;
}

.app__bgimg-image--2 {
  background: url("../images/work/mouse-img3.jpg") center center no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0ms 1300ms;
  will-change: opacity;
}

.app__text {
  position: absolute;
  right: 165px;
  top: 150px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  z-index: 1;
}

.app__text-line {
  transition:
    transform 1500ms 400ms,
    opacity 750ms 500ms;
  will-change: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.app__text-line--4 {
  transition:
    transform 1500ms 1500ms,
    opacity 1500ms 1500ms;
}

.app__text-line--3 {
  transition:
    transform 1500ms 1600ms,
    opacity 1500ms 1750ms;
}

.app__text-line--2 {
  transition:
    transform 1500ms 1700ms,
    opacity 1500ms 2000ms;
}

.app__text-line--1 {
  transition:
    transform 1500ms 1800ms,
    opacity 1500ms 2250ms;
}

.app__text-line--4 {
  font-size: 50px;
  font-weight: 700;
  color: #0a101d;
}

.app__text-line--3 {
  font-size: 40px;
  font-weight: 300;
}

.app__text-line--2 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #0099cc;
}

.app__text-line--1 {
  margin-top: 15px;
}

.app__text-line--1 img {
  width: 50px;
}

.app__text--1 .app__text-line {
  transform: translate3d(0, -125px, 0);
  opacity: 0;
}

.app__text--2 {
  right: initial;
  top: 250px;
  left: 80px;
  z-index: -1;
  transition: z-index 1500ms;
}

.app__text--2 .app__text-line--4 {
  opacity: 0;
  transition:
    transform 1500ms -75ms,
    opacity 400ms 125ms;
}

.app__text--2 .app__text-line--3 {
  opacity: 0;
  transition:
    transform 1500ms 0ms,
    opacity 400ms 200ms;
}

.app__text--2 .app__text-line--2 {
  opacity: 0;
  transition:
    transform 1500ms 75ms,
    opacity 400ms 275ms;
}

.app__text--2 .app__text-line--1 {
  opacity: 0;
  transition:
    transform 1500ms 150ms,
    opacity 400ms 350ms;
}

.app__img {
  position: absolute;
  transform: translate3d(0, -750px, 0);
  width: 850px;
  height: 100%;
  transition: transform 3s cubic-bezier(0.6, 0.13, 0.31, 1.02);
  will-change: transform;
}

.app__img img {
  min-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.initial .app__img {
  transform: translate3d(0, 0, 0);
}

.initial .app__text--1 .app__text-line--1 {
  transform: translate3d(0, 0, 0);
  transition:
    transform 1500ms 1400ms,
    opacity 400ms 1600ms;
  opacity: 1;
}

.initial .app__text--1 .app__text-line--2 {
  transform: translate3d(0, 0, 0);
  transition:
    transform 1500ms 1475ms,
    opacity 400ms 1675ms;
  opacity: 1;
}

.initial .app__text--1 .app__text-line--3 {
  transform: translate3d(0, 0, 0);
  transition:
    transform 1500ms 1550ms,
    opacity 400ms 1750ms;
  opacity: 1;
}

.initial .app__text--1 .app__text-line--4 {
  transform: translate3d(0, 0, 0);
  transition:
    transform 1500ms 1625ms,
    opacity 400ms 1825ms;
  opacity: 1;
}

.active .app__bgimg {
  transform: translate3d(10px, 0, 0) scale(1.05);
  transition: transform 5s 850ms ease-in-out;
}

.active .app__bgimg .app__bgimg-image--2 {
  opacity: 1;
  transition: opacity 0ms 1500ms;
}

.active .app__img {
  transition: transform 3s cubic-bezier(0.6, 0.13, 0.31, 1.02);
  transform: translate3d(0, -1410px, 0);
}

.active .app__text--1 {
  z-index: -1;
  transition: z-index 0ms 1500ms;
}

.active .app__text--1 .app__text-line--1 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 1500ms 300ms,
    opacity 400ms 500ms;
  opacity: 0;
}

.active .app__text--1 .app__text-line--2 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 1500ms 375ms,
    opacity 400ms 575ms;
  opacity: 0;
}

.active .app__text--1 .app__text-line--3 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 1500ms 450ms,
    opacity 400ms 650ms;
  opacity: 0;
}

.active .app__text--1 .app__text-line--4 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 1500ms 525ms,
    opacity 400ms 725ms;
  opacity: 0;
}

.active .app__text--2 {
  z-index: 1;
}

.active .app__text--2 .app__text-line--1 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 2500ms 1100ms,
    opacity 1300ms 1300ms;
  opacity: 1;
}

.active .app__text--2 .app__text-line--2 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 2500ms 1175ms,
    opacity 1300ms 1575ms;
  opacity: 1;
}

.active .app__text--2 .app__text-line--3 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 2500ms 1250ms,
    opacity 1300ms 1850ms;
  opacity: 1;
}

.active .app__text--2 .app__text-line--4 {
  transform: translate3d(0, -125px, 0);
  transition:
    transform 2500ms 1325ms,
    opacity 1300ms 2125ms;
  opacity: 1;
}

.mouse {
  position: relative;
  margin-right: 20px;
  min-width: 50px;
  height: 80px;
  border-radius: 30px;
  border: 5px solid rgba(255, 255, 255, 0.8);
}

.mouse:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
  animation: scroll 1s infinite alternate;
}

@-webkit-keyframes scroll {
  100% {
    transform: translate(-50%, 15px);
  }
}

@keyframes scroll {
  100% {
    transform: translate(-50%, 15px);
  }
}

.pages {
  margin-left: 20px;
}

.pages__list {
  list-style-type: none;
}

.pages__item {
  position: relative;
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #fff;
  cursor: pointer;
}

.pages__item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  transition: 500ms;
}

.pages__item:hover:after {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

.page__item-active:after {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

.icon-link {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 50px;
}

.icon-link img {
  width: 100%;
  vertical-align: top;
}

.icon-link--twitter {
  left: auto;
  right: 5px;
}

/* ==========================================
   CASE STUDY SHOWCASE SECTION
   ========================================== */

.case-study-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-gray-50);
}

/* Case Study Grid */
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}

/* ==========================================
   LEFT SIDE - SINGLE TILTED CARD
   ========================================== */

.case-study-cards {
  position: relative;
}

/* Single Case Card - Tilted Down to Left */
.case-card {
  background: #d6e4f5;
  padding: var(--spacing-xl);
  border-radius: var(--radius-2xl);
  transform: rotate(-3deg);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.case-card:hover {
  transform: rotate(-1deg) translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card Icon */
.card-icon {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  margin-bottom: var(--spacing-md);
}

/* Card Text */
.card-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
  font-weight: 500;
}

/* Card Divider */
.card-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--spacing-lg) 0;
  border-style: dashed;
  border-width: 1px 0 0 0;
  border-color: rgba(0, 0, 0, 0.15);
}

/* Card Secondary Text */
.card-text-secondary {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 500;
}

/* Card Author */
.card-author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin: 0;
}

/* ==========================================
   RIGHT SIDE - SIMPLE IMAGE
   ========================================== */

.case-study-image {
  position: relative;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.showcase-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   BOTTOM CTA
   ========================================== */

.case-study-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: var(--spacing-2xl);
}

.cta-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Fix Button Hover Text Color to White */
.btn-primary:hover,
.btn-primary:hover *,
.btn-primary:hover span,
.btn-primary:hover .btn-icons,
.btn-primary:hover .keyboard-shortcuts,
.btn-primary:hover .key {
  color: var(--color-white) !important;
}

/* Fix for SVG icons */
.btn-primary:hover svg,
.btn-primary:hover svg path {
  stroke: var(--color-white) !important;
}

/* Additional fix for z-index issue */
.btn-primary:hover .btn-icons svg path {
  stroke: var(--color-white) !important;
}

/* Keyboard Shortcuts */
.keyboard-shortcuts {
  display: inline-flex;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.25rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Secondary Outline Button */
.btn-secondary-outline {
  background: transparent;
  color: var(--color-gray-900);
  border: 1px solid var(--color-gray-300);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: var(--color-white);
  border-color: var(--color-gray-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
  .case-study-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .case-study-cards {
    order: 2;
  }

  .case-study-image {
    order: 1;
  }
}

@media (max-width: 640px) {
  .case-study-section {
    padding: var(--spacing-2xl) 0;
  }

  .case-card {
    padding: var(--spacing-lg);
    transform: rotate(-2deg);
  }

  .card-text {
    font-size: 1rem;
  }

  .card-text-secondary {
    font-size: 0.9375rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn-secondary-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   DUAL TESTIMONIALS SECTION
   ========================================== */

.dual-testimonials-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-gray-50);
}

/* Dual Cards Grid */
.dual-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--spacing-2xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Base Card Style */
.dual-card {
  background: #d6e4f5;
  padding: var(--spacing-xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Left Card - Tilted Left, Smaller */
.dual-card-left {
  transform: rotate(-2deg);
}

.dual-card-left:hover {
  transform: rotate(-1deg) translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Right Card - Tilted Right, Larger */
.dual-card-right {
  transform: rotate(2deg);
}

.dual-card-right:hover {
  transform: rotate(1deg) translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card Icon */
.dual-card-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  margin-bottom: var(--spacing-md);
}

.dual-card-icon svg {
  width: 32px;
  height: 32px;
}

/* Card Title */
.dual-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
}

/* Card Divider */
.dual-card-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--spacing-lg) 0;
  border-style: dashed;
  border-width: 1px 0 0 0;
  border-color: rgba(0, 0, 0, 0.15);
}

/* Card Text */
.dual-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
}

.dual-card-text strong {
  font-weight: 700;
  color: var(--color-black);
}

/* Card Author */
.dual-card-author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
  .dual-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  /* Reset tilts on mobile for better readability */
  .dual-card-left {
    transform: rotate(-1deg);
  }

  .dual-card-right {
    transform: rotate(1deg);
  }
}

@media (max-width: 640px) {
  .dual-testimonials-section {
    padding: var(--spacing-2xl) 0;
  }

  .dual-card {
    padding: var(--spacing-lg);
  }

  .dual-card-title {
    font-size: 1.125rem;
  }

  .dual-card-text {
    font-size: 0.9375rem;
  }

  /* Smaller tilts on mobile */
  .dual-card-left,
  .dual-card-right {
    transform: rotate(0deg);
  }

  .dual-card-left:hover,
  .dual-card-right:hover {
    transform: translateY(-4px);
  }
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-white);
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
}

.pricing-headline {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-gray-900);
  font-weight: 400;
}

.pricing-headline strong {
  font-weight: 700;
  color: var(--color-black);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gray-300);
}

/* Popular Card */
.pricing-card-popular {
  background: var(--color-gray-50);
  border-color: var(--color-gray-300);
}

/* Popular Badge */
.popular-badge {
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  display: inline-block;
}

/* Card Header */
.pricing-card-header {
  margin-bottom: var(--spacing-lg);
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 0 0 var(--spacing-sm) 0;
}

.plan-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
}

/* Plan Price */
.plan-price {
  margin-bottom: 15px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 1rem;
  color: var(--color-gray-600);
  margin-left: 0.5rem;
}

/* Popular Plan Price - Blue */
.plan-price-popular .price-amount {
  color: var(--color-blue);
}

/* Plan Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-xl) 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  display: flex;
  margin-top: 2px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-900);
}

/* Plan Button */
.plan-button {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.plan-button-basic {
  background: var(--color-black);
  color: var(--color-white);
}

.plan-button-basic:hover {
  background: var(--color-gray-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-button-pro {
  background: var(--color-blue);
  color: var(--color-white);
}

.plan-button-pro:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .pricing-headline {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .pricing-section {
    padding: var(--spacing-2xl) 0;
  }

  .pricing-header {
    margin-bottom: var(--spacing-2xl);
    padding: 0 var(--spacing-md);
  }

  .pricing-headline {
    font-size: 1.125rem;
  }

  .pricing-card {
    padding: var(--spacing-xl);
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .feature-text {
    font-size: 0.875rem;
  }
}

/* ==========================================
   OVERLAPPING TESTIMONIALS SECTION
   ========================================== */

.overlap-testimonials-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-white);
}

/* Overlap Cards Wrapper */
.overlap-cards-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
  padding: var(--spacing-xl) 0;
}

/* Base Card Style */
.overlap-card {
  background: #d6e4f5;
  padding: var(--spacing-xl) var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 520px;
  position: absolute;
}

/* Left Card - Behind, Tilted Left */
.overlap-card-left {
  transform: rotate(-3deg);
  left: 0;
  z-index: 1;
}

.overlap-card-left:hover {
  transform: rotate(-2deg) translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

/* Right Card - Front, Tilted Right, Overlapping */
.overlap-card-right {
  transform: rotate(2deg);
  right: 0;
  z-index: 2;
}

.overlap-card-right:hover {
  transform: rotate(1deg) translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

/* Card Text */
.overlap-card-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
}

.overlap-card-text strong {
  font-weight: 700;
  color: var(--color-black);
}

/* Card Author */
.overlap-card-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
  .overlap-cards-wrapper {
    flex-direction: column;
    gap: var(--spacing-xl);
    min-height: auto;
    padding: var(--spacing-md);
  }

  .overlap-card {
    position: relative;
    left: auto;
    right: auto;
    max-width: 100%;
  }

  .overlap-card-left {
    transform: rotate(-2deg);
  }

  .overlap-card-right {
    transform: rotate(2deg);
  }
}

@media (max-width: 640px) {
  .overlap-testimonials-section {
    padding: var(--spacing-2xl) 0;
  }

  .overlap-card {
    padding: var(--spacing-lg) var(--spacing-xl);
  }

  .overlap-card-text {
    font-size: 1rem;
  }

  .overlap-card-author {
    font-size: 0.9375rem;
  }

  /* Remove tilts on small mobile */
  .overlap-card-left,
  .overlap-card-right {
    transform: rotate(0deg);
  }

  .overlap-card-left:hover,
  .overlap-card-right:hover {
    transform: translateY(-4px);
  }
}

/* ==========================================
   FOOTER - SIMPLE & CENTERED
   ========================================== */

.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: var(--spacing-3xl) 0;
}

/* Footer Content - All Centered */
.footer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-logo .brand-icon {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.footer-logo .brand-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin: 0;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-white);
}

.contact-link svg {
  flex-shrink: 0;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-gray-400);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Footer Copyright */
.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 640px) {
  .footer {
    padding: var(--spacing-2xl) 0;
  }

  .footer-content {
    gap: var(--spacing-lg);
  }

  .footer-logo .brand-name {
    font-size: 1.25rem;
  }

  .contact-link {
    font-size: 0.875rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================
   PAGE LOADER
   ========================================== */

/* Page Loader Wrapper - Full Screen Overlay */
.page-loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eeeeee;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

/* Hide loader when page is loaded */
.page-loader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Loader Content Container */
.loader-content {
  position: relative;
  width: 200px;
  height: 200px;
}

/* The loader container */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 200px;
  height: 100px;

  margin-top: -100px;
  margin-left: -100px;

  perspective: 1000px;
  transform-style: preserve-3d;
}

.loader--reflect {
  margin-top: 0;
}

.loader--reflect:after {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;

  width: 150%;
  height: 110%;

  background: linear-gradient(
    0deg,
    rgba(238, 238, 238, 1),
    rgba(238, 238, 238, 1) 20%,
    rgba(238, 238, 238, 0.3)
  );
}

/* The bar */
.bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 100px;
  background-color: #1e3f57;

  transform: scaleY(0);
  transform-style: preserve-3d;
  animation: bar 3s cubic-bezier(0.81, 0.04, 0.4, 0.7) infinite;
}

.bar:nth-child(2) {
  left: 20px;
  background-color: #264a63;
  animation-delay: 50ms;
}

.bar:nth-child(3) {
  left: 40px;
  background-color: #2d566f;
  animation-delay: 100ms;
}

.bar:nth-child(4) {
  left: 60px;
  background-color: #35617a;
  animation-delay: 150ms;
}

.bar:nth-child(5) {
  left: 80px;
  background-color: #3d6d86;
  animation-delay: 200ms;
}

.bar:nth-child(6) {
  left: 100px;
  background-color: #447892;
  animation-delay: 250ms;
}

.bar:nth-child(7) {
  left: 120px;
  background-color: #4c849e;
  animation-delay: 300ms;
}

.bar:nth-child(8) {
  left: 140px;
  background-color: #548fa9;
  animation-delay: 350ms;
}

.bar:nth-child(9) {
  left: 160px;
  background-color: #5c9bb5;
  animation-delay: 400ms;
}

.bar:nth-child(10) {
  left: 180px;
  background-color: #63a6c1;
  animation-delay: 450ms;
}

.loader--reflect .bar {
  animation-name: bar-reflect;
}

/* Animations */
@keyframes bar {
  0% {
    transform: rotateZ(-180deg) rotateX(-360deg);
  }
  75%,
  100% {
    transform: rotateZ(0) rotateX(0);
  }
}

@keyframes bar-reflect {
  0% {
    transform: rotateZ(180deg) rotateX(360deg);
  }
  75%,
  100% {
    transform: rotateZ(0) rotateX(0);
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 640px) {
  .loader-content {
    width: 150px;
    height: 150px;
  }

  .loader {
    width: 150px;
    height: 75px;
    margin-top: -75px;
    margin-left: -75px;
  }

  .bar {
    width: 15px;
    height: 75px;
  }

  .bar:nth-child(2) {
    left: 15px;
  }
  .bar:nth-child(3) {
    left: 30px;
  }
  .bar:nth-child(4) {
    left: 45px;
  }
  .bar:nth-child(5) {
    left: 60px;
  }
  .bar:nth-child(6) {
    left: 75px;
  }
  .bar:nth-child(7) {
    left: 90px;
  }
  .bar:nth-child(8) {
    left: 105px;
  }
  .bar:nth-child(9) {
    left: 120px;
  }
  .bar:nth-child(10) {
    left: 135px;
  }
}

/* stressed section css */
#c {
  display: block;
  margin: 20px auto 0;
}

/* #info {
            position: absolute;
            left: -1px;
            top: -1px;
            width: auto;
            max-width: 420px;
            height: auto;
            background: #f8f8f8;
            border-bottom-right-radius: 10px;
            border: 1px solid #ccc;
        } */

#top {
  background: #fff;
  width: 100%;
  height: auto;
  position: relative;
  border-bottom: 1px solid #eee;
}

p {
  font-family: Arial, sans-serif;
  color: #666;
  text-align: justify;
  font-size: 16px;
  margin: 0px 16px;
}

#github,
#twitter {
  color: #3377ee;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}

.center {
  text-align: center;
}

#net {
  text-align: center;
  white-space: nowrap;
  font-size: 19px;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  display: block;
  color: #888;
}

#net > span {
  color: #3377ee;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}

a {
  font-family: sans-serif;
  color: #444;
  text-decoration: none;
  font-size: 20px;
}

#site {
  float: left;
  margin: 10px;
  color: #ff9900;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 3px;
}

#site:hover {
  color: #ffaa11;
}

#close {
  float: right;
  margin: 10px;
}

#p {
  font-family: Verdana, sans-serif;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #4099ff;
  border: 1px dashed #4099ff;
  padding: 4px 8px;
}

#new {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-family: Helvetica;
  margin-top: 12px;
}

#new a {
  font-size: 20px;
  color: #4099ff;
}

.bull {
  opacity: 0.3;
  margin: 0 6px;
  font-size: 14px;
}
