/* ==========================================
   Swift Steeds - Modern Premium CSS
   Fonts: Epilogue (headings) + Inter (body)
   Accent: Royal Blue (#19268C)
   ========================================== */

/* CSS Layers for cascade control */
@layer reset, base, layout, components, utilities, animations;

/* ==========================================
   Reset Layer
   ========================================== */
@layer reset {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.6;
    overflow-x: hidden;
  }

  img,
  picture,
  video,
  canvas,
  svg {
    display: block;
    max-width: 100%;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul,
  ol {
    list-style: none;
  }

  button {
    border: none;
    background: none;
    cursor: pointer;
  }
}

/* ==========================================
   Base Layer - Custom Properties & Typography
   ========================================== */
@layer base {
  :root {
    /* Colors - Royal Blue Theme using OKLCH */
    --color-primary: #121c82;
    --color-primary-dark: oklch(from var(--color-primary) calc(l - 0.1) c h);
    --color-primary-light: oklch(from var(--color-primary) calc(l + 0.15) c h);
    --color-primary-rgb: 25, 38, 140;

    --color-accent: var(--color-primary);
    --color-accent-dark: oklch(from var(--color-primary) calc(l - 0.1) c h);
    --color-accent-light: oklch(from var(--color-primary) 0.95 0.03 h);
    --color-accent-gradient: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      oklch(from var(--color-primary) calc(l + 0.1) c h) 50%,
      oklch(from var(--color-primary) calc(l + 0.2) 0.12 h) 100%
    );

    /* Premium gradient for sections */
    --gradient-primary: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      oklch(
          from var(--color-primary) calc(l - 0.05) calc(c + 0.02) calc(h + 10)
        )
        50%,
      oklch(from var(--color-primary) calc(l + 0.05) c calc(h - 5)) 100%
    );

    --color-dark: #1a1a1a;
    --color-dark-secondary: #2d2d2d;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;

    --color-light: #ffffff;
    --color-light-secondary: #f8f8f8;
    --color-light-tertiary: #f0f0f0;
    --color-border: #e5e5e5;

    --color-success: #22c55e;
    --color-whatsapp: #25d366;

    /* Typography */
    --font-heading: "Epilogue", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Fluid Typography - Refined sizes */
    --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.75rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.2vw, 0.875rem);
    --text-base: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
    --text-lg: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
    --text-xl: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
    --text-2xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
    --text-3xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
    --text-4xl: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
    --text-5xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);

    /* Spacing - Tighter */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.875rem;
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --space-5xl: 6rem;

    /* Layout */
    --container-width: 1280px;
    --container-padding: clamp(1rem, 4vw, 2rem);
    --section-padding: clamp(4rem, 10vw, 6rem);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07),
      0 2px 4px -2px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08),
      0 4px 6px -4px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 40px -10px rgba(var(--color-primary-rgb), 0.4);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index scale */
    --z-base: 1;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-cursor: 400;
    --z-preloader: 500;
  }

  body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f9fc 25%,
      #f5f6fb 50%,
      #f8f9fc 75%,
      #ffffff 100%
    );
    background-attachment: fixed;
    overflow-x: hidden;
  }

  body.no-scroll {
    overflow: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
  }

  p {
    color: var(--color-text-light);
  }

  ::selection {
    background-color: var(--color-primary);
    color: var(--color-light);
  }
}

/* ==========================================
   Layout Layer
   ========================================== */
@layer layout {
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }

  .section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
  }

  .section__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }

  .section__label::before {
    content: "";
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
  }

  .section__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
  }

  .section__description {
    font-size: var(--text-base);
    color: var(--color-text-light);
  }
}

/* ==========================================
   Components Layer
   ========================================== */
@layer components {
  /* ----- Preloader ----- */
  .preloader {
    position: fixed;
    inset: 0;
    background: var(--color-light);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .preloader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .preloader__logo {
    width: 100px;
    height: auto;
    margin-bottom: var(--space-xl);
    animation: pulse 1.5s ease-in-out infinite;
  }

  .preloader__bar {
    width: 200px;
    height: 3px;
    background: var(--color-light-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
  }

  .preloader__progress {
    height: 100%;
    background: var(--color-accent-gradient);
    border-radius: var(--radius-full);
    animation: loading 1.5s ease-in-out infinite;
  }

  /* ----- Custom Cursor (Removed) ----- */
  .cursor,
  .cursor-follower {
    display: none !important;
  }

  /* ----- Navigation ----- */
  .header {
    position: fixed;
    top: 28px; /* Account for announcement bar */
    width: 100vw;
    z-index: var(--z-header);
    padding: var(--space-lg) 0;
    transition: background-color var(--transition-base),
      padding var(--transition-base), box-shadow var(--transition-base),
      top var(--transition-base);
  }

  .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
      box-sizing: border-box;
  }
html, body {
  overflow-x: hidden;
}

  .nav__brand {
    display: flex;
    align-items: center;
  }

  .nav__logo {
    height: 60px;
    width: auto;
    transition: transform var(--transition-base);
  }

  .nav__logo:hover {
    transform: scale(1.05);
  }

  .nav__menu {
    display: flex;
    align-items: center;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav__link {
    position: relative;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-dark);
    padding: var(--space-sm) 0;
    margin: 0 var(--space-sm);
    background: transparent;
    transition: color var(--transition-base);
    z-index: 1;
  }

  .nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--color-primary),
      oklch(from var(--color-primary) calc(l + 0.15) c h)
    );
    border-radius: var(--radius-full);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__link:hover {
    color: var(--color-primary);
  }

  .nav__link:hover::after {
    width: 100%;
  }

  .nav__link.active {
    color: var(--color-primary);
    font-weight: 600;
  }

  .nav__link.active::after {
    width: 100%;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--color-primary),
      oklch(from var(--color-primary) calc(l + 0.2) c h)
    );
    box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.4);
  }

  .nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-md);
    cursor: pointer;
    background: var(--color-light-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
  }

  .nav__toggle:hover {
    background: var(--color-light-tertiary);
  }

  .nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base), opacity var(--transition-base),
      background var(--transition-base);
  }

  .nav__toggle:hover span {
    background: var(--color-primary);
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile Navigation */
  @media (max-width: 768px) {
    .nav__menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: var(--color-light);
      flex-direction: column;
      justify-content: center;
      transition: right var(--transition-base);
    }

    .nav__menu.active {
      right: 0;
    }

    .nav__list {
      flex-direction: column;
      gap: var(--space-2xl);
    }

    .nav__link {
      font-size: var(--text-2xl);
    }

    .nav__toggle {
      display: flex;
      z-index: 10;
    }

    .nav__actions {
      flex-direction: row-reverse;
      gap: var(--space-md);
    }
    .nav__actions .btn {
      display: inline-flex;
      margin-right: auto;
    }
    .nav__toggle {
      margin-left: 0;
    }
  }

  /* ----- Buttons ----- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
  }

  .btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
  }

  .btn:hover svg {
    transform: scale(1.1);
  }

  .btn--primary {
    background: var(--gradient-primary);
    color: var(--color-light);
    box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.15);
  }

  .btn--primary:hover {
    background: var(--gradient-primary);
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.3);
  }

  .btn--primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(var(--color-primary-rgb), 0.2);
  }

  .btn--accent {
    background: var(--color-accent);
    color: var(--color-light);
  }

  .btn--accent:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
  }

  .btn--accent:active {
    transform: translateY(-1px);
  }

  .btn--outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
  }

  .btn--outline:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.2);
  }

  .btn--outline:active {
    transform: translateY(-1px);
  }

  .btn--white {
    background: var(--color-light);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .btn--white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .btn--white:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .btn--outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-light);
  }

  .btn--outline-white:hover {
    background: var(--color-light);
    border-color: var(--color-light);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
  }

  .btn--outline-white:active {
    transform: translateY(-1px);
  }

  .btn--large {
    padding: 0.625rem 1.75rem;
    font-size: var(--text-sm);
    gap: 0.75rem;
  }

  .btn--small {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-xs);
    gap: 0.75rem;
  }

  /* ----- Hero Section ----- */
  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    overflow: hidden;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  .hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 50% at 50% 0%,
        rgba(var(--color-primary-rgb), 0.06) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse 60% 40% at 90% 80%,
        rgba(var(--color-primary-rgb), 0.04) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse 50% 30% at 10% 60%,
        rgba(var(--color-primary-rgb), 0.03) 0%,
        transparent 50%
      ),
      linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  }

  .hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
      rgba(var(--color-primary-rgb), 0.08) 1px,
      transparent 1px
    );
    background-size: 30px 30px;
  }

  .hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
  }

  .shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(var(--color-primary-rgb), 0.15);
    top: -100px;
    right: -100px;
  }

  .shape--2 {
    width: 300px;
    height: 300px;
    background: rgba(var(--color-primary-rgb), 0.1);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
  }

  .shape--3 {
    width: 200px;
    height: 200px;
    background: rgba(var(--color-primary-rgb), 0.2);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
  }

  .hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }

  .hero__content {
    padding-left: 0;
  }

  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-accent-light);
    color: var(--color-primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-xl);
  }

  .hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  .hero__title {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
  }

  .hero__title-accent {
    display: block;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero__typewriter {
    display: inline;
    color: var(--color-dark);
  }

  .hero__cursor {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 300;
    animation: cursor-blink 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-left: 2px;
  }

  @keyframes cursor-blink {
    0%,
    50% {
      opacity: 1;
    }
    51%,
    100% {
      opacity: 0;
    }
  }

  .hero__description {
    font-size: var(--text-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 480px;
    line-height: 1.6;
  }

  .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }

  .hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }

  .hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stat-row {
    display: flex;
    align-items: baseline;
  }

  .hero__stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
  }

  .hero__stat-suffix {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 2px;
  }

  .hero__stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: 4px;
  }

  .hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
  }

  .hero__visual {
    position: relative;
  }

  /* ----- Stats Section ----- */
  .stats {
    padding: var(--space-xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
  }

  .stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 50%,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 40%
      );
    pointer-events: none;
  }

  .stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .stats__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
  }

  .stats__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
  }

  .stats__icon svg {
    width: 20px;
    height: 20px;
  }

  .stats__content {
    display: flex;
    flex-direction: column;
  }

  .stats__value {
    display: flex;
    align-items: baseline;
  }

  .stats__number {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-light);
    line-height: 1;
  }

  .stats__suffix {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 1px;
  }

  .stats__label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .stats__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
  }

  @media (max-width: 900px) {
    .stats__grid {
      flex-wrap: wrap;
      justify-content: center;
    }

    .stats__divider {
      display: none;
    }

    .stats__item {
      padding: var(--space-sm) var(--space-lg);
    }
  }

  @media (max-width: 600px) {
    .stats__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
    }

    .stats__divider {
      display: none;
    }

    .stats__item {
      justify-content: center;
    }
  }

  .hero__image-wrapper {
    position: relative;
  }

  .hero__image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
      0 12px 24px -8px rgba(0, 0, 0, 0.1);
  }

  .hero__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }

  /* Fading Images Container */
  .hero__fading-images {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-2xl);
  }

  .hero__fading-images .hero__image--fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 0.6s ease;
  }

  .hero__fading-images .hero__image--fade.active {
    opacity: 1;
  }

  .hero__image-frame:hover .hero__image {
    transform: scale(1.05);
  }

  .hero__image-frame:hover .hero__image--fade {
    transform: scale(1.05);
  }

  .hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: #ffffff;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    animation: float-card 4s ease-in-out infinite;
    z-index: 10;
  }

  .hero__floating-card--1 {
    top: 15%;
    left: -50px;
    animation-delay: 0s;
  }

  .hero__floating-card--2 {
    bottom: 20%;
    right: -30px;
    animation-delay: -2s;
  }

  .floating-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      oklch(from #19268c calc(l + 0.15) c h) 100%
    );
    color: white;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
  }

  .floating-card__title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--color-dark);
    white-space: nowrap;
  }

  .floating-card__subtitle {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    white-space: nowrap;
  }

  .hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
    padding-bottom: var(--space-lg);
  }

  .hero__scroll span {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .hero__scroll-line {
    width: 1px;
    height: 50px;
    background: var(--color-border);
    position: relative;
    overflow: hidden;
  }

  .hero__scroll-dot {
    width: 3px;
    height: 10px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    position: absolute;
    left: -1px;
    animation: scroll-dot 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  @media (max-width: 1024px) {
    .hero__container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hero__description {
      margin-left: auto;
      margin-right: auto;
    }

    .hero__cta {
      justify-content: center;
    }

    .hero__stats {
      justify-content: center;
    }

    .hero__visual {
      display: none;
    }

    .hero__scroll {
      display: none;
    }
  }

  /* ----- Announcement Bar ----- */
  .announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: var(--space-xs) 0;
    overflow: hidden;
    z-index: calc(var(--z-header) + 1);
    transition: transform var(--transition-base);
  }

  .marquee__track {
    display: flex;
  }

  .marquee__track:hover .marquee__content {
    animation-play-state: paused;
  }

  .marquee__content {
    display: flex;
    animation: marquee 25s linear infinite;
    will-change: transform;
  }

  .marquee__item {
    flex-shrink: 0;
    padding: 0 var(--space-2xl);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-light);
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  /* ----- About Section ----- */
  .about {
    padding: var(--section-padding) 0;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(248, 249, 252, 1) 50%,
      rgba(255, 255, 255, 1) 100%
    );
  }

  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
  }

  .about__images {
    position: relative;
  }

  .about__image-main {
    width: 80%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--color-light);
  }

  .about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }

  .about__image-main:hover .about__img,
  .about__image-secondary:hover .about__img {
    transform: scale(1.05);
  }

  .about__experience-badge {
    position: absolute;
    top: 20%;
    left: -50px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: #ffffff;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    z-index: 10;
    animation: float-card 4s ease-in-out infinite;
  }

  .about__content .section__label {
    justify-content: flex-start;
  }

  .about__content .section__title {
    text-align: left;
  }

  .about__text {
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
  }

  .about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md) var(--space-lg);
    margin: var(--space-2xl) 0;
  }

  .about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }

  .about__feature-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-success) 0%, #16a34a 100%);
    color: var(--color-light);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
  }

  .about__feature-icon svg {
    width: 14px;
    height: 14px;
  }

  .about__feature span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-dark);
  }

  @media (max-width: 1024px) {
    .about__grid {
      grid-template-columns: 1fr;
      gap: var(--space-3xl);
    }

    .about__images {
      max-width: 500px;
      margin: 0 auto;
    }

    .about__content {
      text-align: center;
      margin: 3rem 0 0;
    }

    .about__content .section__label {
      justify-content: center;
    }

    .about__content .section__title {
      text-align: center;
    }

    .about__features {
      justify-items: center;
    }
  }

  @media (max-width: 640px) {
    .about__features {
      grid-template-columns: repeat(1, 1fr);
      justify-items: flex-start;
    }

    .about__experience-badge {
      left: 170px;
    }
  }

  /* ----- Products Section ----- */
  .products {
    padding: var(--section-padding) 0;
    background: linear-gradient(
      180deg,
      rgba(245, 246, 251, 1) 0%,
      rgba(240, 242, 250, 1) 50%,
      rgba(245, 246, 251, 1) 100%
    );
  }

  /* ----- Rice Slider ----- */
  .rice-slider {
    margin-bottom: var(--space-3xl);
  }

  .rice-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
  }

  .rice-slider__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-dark);
  }

  .rice-slider__nav {
    display: flex;
    gap: var(--space-sm);
  }

  .rice-slider__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--color-light);
    color: var(--color-dark);
    border: 1.5px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .rice-slider__btn:hover {
    background: var(--gradient-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.3);
  }

  .rice-slider__btn:active {
    transform: scale(1.02);
  }

  .rice-slider__btn svg {
    transition: transform var(--transition-fast);
  }

  .rice-slider__btn:hover svg {
    transform: scale(1.1);
  }

  .rice-slider__track {
    overflow: hidden;
  }

  .rice-slider__slides {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.5s ease;
  }

  .rice-slide {
    position: relative;
    flex: 0 0 calc(33.333% - var(--space-md));
    min-width: calc(33.333% - var(--space-md));
    background: var(--color-light);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base),
      box-shadow var(--transition-base);
    clip-path: inset(0 round 24px);
    -webkit-clip-path: inset(0 round 24px);
  }

  .rice-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }

  .rice-slide__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(
      135deg,
      var(--color-light-tertiary) 0%,
      var(--color-accent-light) 100%
    );
  }

  .rice-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .rice-slide:hover .rice-slide__image img {
    transform: scale(1.1);
  }

  .rice-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      transparent 100%
    );
    pointer-events: none;
  }

  .rice-slide__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    color: var(--color-light);
  }

  .rice-slide__tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-light);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: var(--space-md);
  }

  .rice-slide__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: var(--space-sm);
  }

  .rice-slide__description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .rice-slide__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-light);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
  }

  .rice-slide__link svg {
    transition: transform var(--transition-base);
  }

  .rice-slide__link:hover {
    background: rgba(255, 255, 255, 0.2);
    gap: var(--space-lg);
  }

  .rice-slide__link:hover svg {
    transform: translateX(3px);
  }

  @media (max-width: 1024px) {
    .rice-slide {
      flex: 0 0 calc(50% - var(--space-sm));
      min-width: calc(50% - var(--space-sm));
    }
  }

  @media (max-width: 640px) {
    .rice-slide {
      flex: 0 0 100%;
      min-width: 100%;
    }

    .rice-slider__header {
      flex-direction: column;
      gap: var(--space-md);
      align-items: flex-start;
    }
  }

  .products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .product-card {
    position: relative;
    background: var(--color-light);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s ease;
    clip-path: inset(0 round 24px);
    -webkit-clip-path: inset(0 round 24px);
  }

  .product-card:hover {
    box-shadow: var(--shadow-xl);
  }

  .product-card__image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(
      135deg,
      var(--color-light-tertiary) 0%,
      var(--color-accent-light) 100%
    );
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.1);
  }

  .product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      transparent 100%
    );
    pointer-events: none;
  }

  .product-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    color: var(--color-light);
  }

  .product-card__tag {
    display: inline-block;
    background: var(--color-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: var(--space-md);
  }

  .product-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: var(--space-sm);
  }

  .product-card__description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-light);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
  }

  .product-card__link svg {
    transition: transform var(--transition-base);
  }

  .product-card__link:hover {
    background: rgba(255, 255, 255, 0.2);
    gap: var(--space-lg);
  }

  .product-card__link:hover svg {
    transform: translateX(3px);
  }

  .products__cta {
    margin-top: var(--space-3xl);
    text-align: center;
  }

  .products__cta p {
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
  }

  @media (max-width: 1024px) {
    .products__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .products__grid {
      grid-template-columns: 1fr;
    }
  }

  /* ----- Consultancy Section ----- */
  .consultancy {
    padding: var(--section-padding) 0;
    background: linear-gradient(
      180deg,
      rgba(248, 249, 252, 1) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(248, 249, 252, 1) 100%
    );
  }

  .consultancy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .consultancy-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--color-light);
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .consultancy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .consultancy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(var(--color-primary-rgb), 0.15);
  }

  .consultancy-card:hover::before {
    transform: scaleX(1);
  }

  .consultancy-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    color: var(--color-primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
  }

  .consultancy-card:hover .consultancy-card__icon {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: scale(1.1);
  }

  .consultancy-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
  }

  .consultancy-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
  }

  .consultancy-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-base);
  }

  .consultancy-card__link svg {
    transition: transform var(--transition-base);
  }

  .consultancy-card__link:hover {
    gap: var(--space-md);
  }

  .consultancy-card__link:hover svg {
    transform: translateX(4px);
  }

  @media (max-width: 1024px) {
    .consultancy__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .consultancy__grid {
      grid-template-columns: 1fr;
    }
  }

  /* ----- Services Section ----- */
  .services {
    padding: var(--section-padding) 0;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(248, 249, 252, 1) 50%,
      rgba(255, 255, 255, 1) 100%
    );
  }

  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .service-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    overflow: hidden;
  }

  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
  }

  .service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-card__number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--color-light-tertiary);
    line-height: 1;
    transition: color var(--transition-base);
  }

  .service-card:hover .service-card__number {
    color: var(--color-accent-light);
  }

  .service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    color: var(--color-primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    transition: all var(--transition-base);
  }

  .service-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .service-card:hover .service-card__icon {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: scale(1.1);
  }

  .service-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-dark);
  }

  .service-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.7;
  }

  @media (max-width: 1024px) {
    .services__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .services__grid {
      grid-template-columns: 1fr;
    }
  }

  /* ----- Founder's Message Section ----- */
  .founder {
    padding: var(--section-padding) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
  }

  .founder::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
    background-size: 30px 30px;
    animation: cta-pattern-move 20s linear infinite;
    pointer-events: none;
  }

  .founder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse 80% 50% at 20% 20%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse 60% 40% at 80% 80%,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 50%
      );
    pointer-events: none;
  }

  .founder__grid {
    position: relative;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-4xl);
    align-items: center;
  }

  .founder__image-wrapper {
    position: relative;
  }

  .founder__image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.15);
  }

  .founder__image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 60%,
      rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
  }

  .founder__image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
  }

  .founder__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-light);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

  .founder__badge-title {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
  }

  .founder__badge-text {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
  }

  .founder__content {
    position: relative;
    color: var(--color-light);
  }

  .section__label--light {
    color: rgba(255, 255, 255, 0.9);
  }

  .section__label--light::before {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .founder__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    font-style: italic;
    margin-bottom: var(--space-xl);
    color: var(--color-light);
    line-height: 1.3;
  }

  .founder__message {
    margin-bottom: var(--space-2xl);
  }

  .founder__message p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
  }

  .founder__message p:last-child {
    margin-bottom: 0;
  }

  .founder__message strong {
    color: var(--color-light);
    font-weight: 600;
  }

  .founder__signature {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .founder__info {
    display: flex;
    flex-direction: column;
  }

  .founder__name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-light);
  }

  .founder__designation {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-xs);
  }

  .founder__company {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xs);
  }

  @media (max-width: 1024px) {
    .founder__grid {
      grid-template-columns: 1fr;
      gap: var(--space-3xl);
    }

    .founder__image-wrapper {
      max-width: 400px;
      margin: 0 auto;
    }

    .founder__badge {
      bottom: -15px;
      right: -10px;
    }
  }

  @media (max-width: 640px) {
    .founder__image {
      height: 400px;
    }

    .founder__title {
      font-size: var(--text-3xl);
    }

    .founder__badge {
      padding: var(--space-md) var(--space-lg);
      right: 10px;
      bottom: 10px;
      left: auto;
      max-width: 90vw;
      box-sizing: border-box;
      transform: none;
    }

    .founder__badge-title {
      font-size: var(--text-2xl);
    }
  }

  /* ----- Contact Section ----- */
  .contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(
      180deg,
      rgba(245, 246, 251, 1) 0%,
      rgba(240, 242, 250, 1) 50%,
      rgba(245, 246, 251, 1) 100%
    );
  }

  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: stretch;
  }

  .contact__info {
    display: flex;
    flex-direction: column;
  }

  .contact__info .section__label {
    justify-content: flex-start;
  }

  .contact__info .section__title {
    text-align: left;
  }

  .contact__description {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
  }

  .contact__cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    flex: 1;
  }

  .contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-light);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
    flex: 1;
  }

  .contact-card:hover {
    background: var(--color-light);
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.12);
    border-color: rgba(var(--color-primary-rgb), 0.15);
  }

  .contact-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    color: var(--color-primary);
    border-radius: var(--radius-xl);
    flex-shrink: 0;
    transition: all var(--transition-base);
  }

  .contact-card:hover .contact-card__icon {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: scale(1.05);
  }

  .contact-card__icon--whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
  }

  .contact-card:hover .contact-card__icon--whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-light);
  }

  .contact-card__content {
    display: flex;
    flex-direction: column;
  }

  .contact-card__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
  }

  .contact-card__value {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-dark);
  }

  .contact__map {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .contact__map-wrapper {
    width: 100%;
    flex: 1;
    min-height: 350px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .contact__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .contact__map-overlay {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: var(--color-light);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }

  .contact__store-hours h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
  }

  .contact__store-hours p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
  }

  @media (max-width: 1024px) {
    .contact__grid {
      grid-template-columns: 1fr;
    }

    .contact__info {
      text-align: center;
    }

    .contact__info .section__label {
      justify-content: center;
    }

    .contact__info .section__title {
      text-align: center;
    }

    .contact-card:hover {
      transform: translateY(-4px);
    }
  }

  /* ----- CTA Section ----- */
  .cta {
    padding: var(--section-padding) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
    background-size: 30px 30px;
    animation: cta-pattern-move 20s linear infinite;
    pointer-events: none;
  }

  .cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse 80% 50% at 20% 20%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse 60% 40% at 80% 80%,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 50%
      );
    pointer-events: none;
  }

  @keyframes cta-pattern-move {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(30px, 30px);
    }
  }

  .cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-light);
  }

  .cta__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-xl);
    background: var(--color-light);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .cta__title {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--color-light);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  }

  .cta__description {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-light);
    line-height: 1.7;
  }

  .cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  /* ----- Footer ----- */
  .footer {
    background: var(--color-light-secondary);
    padding: var(--space-4xl) 0 var(--space-2xl);
    color: var(--color-text);
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-xl);
  }

  .footer__logo-link {
    display: inline-block;
    margin-bottom: var(--space-sm);
  }

  .footer__logo {
    height: 50px;
    width: auto;
  }

  .footer__brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }

  .footer__description {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
  }

  .footer__social {
    display: flex;
    gap: var(--space-md);
  }

  .footer__social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
  }

  .footer__social-link svg {
    transition: transform var(--transition-fast);
  }

  .footer__social-link:hover {
    background: var(--gradient-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.2);
  }

  .footer__social-link:hover svg {
    transform: scale(1.15);
  }

  .footer__title {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
  }

  .footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer__link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    transition: all var(--transition-fast);
  }

  .footer__link:hover {
    color: var(--color-primary);
  }

  .footer__address {
    cursor: default;
  }

  .footer__bottom {
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-lg);
  }

  .footer__copyright,
  .footer__credit {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
  }

  .footer__regulatory {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    margin: 0 0 1rem 0;
    text-align: left;
    font-size: 0.85rem;
    color: var(--color-text-light);
    letter-spacing: 0.01em;
  }

  .footer__regulatory strong {
    font-weight: 600;
    color: var(--color-primary);
  }

  @media (max-width: 1024px) {
    .footer__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer__brand {
      grid-column: span 2;
    }
  }

  @media (max-width: 640px) {
    .footer__grid {
      grid-template-columns: 1fr;
    }

    .footer__brand {
      grid-column: span 1;
      text-align: center;
    }

    .footer__social {
      justify-content: center;
    }

    .footer__bottom {
      flex-direction: column;
      text-align: center;
    }

    .footer__regulatory {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 1rem;
    }
  }

  /* ----- WhatsApp Float ----- */
  .whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--color-light);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35),
      0 2px 6px rgba(37, 211, 102, 0.2);
    z-index: 90;
    transition: all var(--transition-base);
  }

  .whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  .whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45),
      0 4px 10px rgba(37, 211, 102, 0.25);
  }

  .whatsapp-float:hover::before {
    opacity: 1;
  }

  .whatsapp-float:active {
    transform: translateY(-2px) scale(1.02);
  }

  .whatsapp-float svg {
    transition: transform var(--transition-fast);
  }

  .whatsapp-float:hover svg {
    transform: scale(1.1);
  }

  .whatsapp-float__tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-dark);
    color: var(--color-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .whatsapp-float__tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-dark);
  }
}

/* ==========================================
   Animations Layer
   ========================================== */
@layer animations {
  @keyframes pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.7;
      transform: scale(0.95);
    }
  }

  @keyframes loading {
    0% {
      width: 0;
      margin-left: 0;
    }
    50% {
      width: 80%;
      margin-left: 10%;
    }
    100% {
      width: 0;
      margin-left: 100%;
    }
  }

  @keyframes float {
    0%,
    100% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(-20px, 20px);
    }
    50% {
      transform: translate(20px, -20px);
    }
    75% {
      transform: translate(-10px, -10px);
    }
  }

  @keyframes float-card {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes scroll-dot {
    0% {
      top: 0;
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      top: 40px;
      opacity: 0;
    }
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-25%);
    }
  }

  /* AOS-like animations */
  [data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  [data-aos="fade-up"] {
    transform: translateY(30px);
  }

  [data-aos="fade-down"] {
    transform: translateY(-30px);
  }

  [data-aos="fade-left"] {
    transform: translateX(30px);
  }

  [data-aos="fade-right"] {
    transform: translateX(-30px);
  }

  [data-aos="zoom-in"] {
    transform: scale(0.9);
  }

  [data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
  }

  /* Delay utilities */
  [data-aos-delay="100"] {
    transition-delay: 100ms;
  }

  [data-aos-delay="200"] {
    transition-delay: 200ms;
  }

  [data-aos-delay="300"] {
    transition-delay: 300ms;
  }

  [data-aos-delay="400"] {
    transition-delay: 400ms;
  }

  [data-aos-delay="500"] {
    transition-delay: 500ms;
  }
}
