
    /* ══════════════════════════════════════
       TOKENS
    ══════════════════════════════════════ */
    :root {
      --white: #FFFFFF;
      --off-white: #F7F7F7;
      --black: #0A0A0A;
      --gray-100: #F5F5F5;
      --gray-200: #E8E8E8;
      --gray-300: #D1D1D1;
      --gray-400: #A0A0A0;
      --gray-500: #6E6E6E;
      --gray-600: #4A4A4A;
      --card-dark: #1A1A1A;
      --font-heading: 'Urbanist';
      --font-body: 'Google Sans', 'Product Sans', 'Urbanist';
      --font: var(--font-body);
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 20px;
      --radius-pill: 100px;
    }

    *, *::before, *::after {
      margin: 0; padding: 0; box-sizing: border-box;
    }

        /* --- ACCESSIBILITY --- */
    :focus-visible { outline: 2px solid var(--black); outline-offset: 4px; }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font);
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: var(--font); }
    img { display: block; max-width: 100%; }

    /* ══════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--gray-200);
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      transition: background 0.3s;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      width: 200px; /* Balance with right */
    }

    .nav-trigger {
      font-size: 14px;
      font-weight: 500;
      font-family: var(--font-body);
      color: var(--black);
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-trigger:hover {
      background: var(--gray-100);
      color: var(--black);
    }

    .nav-trigger svg {
      width: 12px; height: 12px;
      transition: transform 0.2s;
    }

    .nav-left:hover .nav-trigger svg {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm);
      padding: 8px;
      min-width: 220px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-4px);
      transition: all 0.2s var(--ease);
    }

    .nav-left:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown a {
      display: block;
      padding: 10px 16px;
      font-size: 14px;
      font-weight: 400;
      font-family: var(--font-body);
      color: var(--black);
      border-radius: 8px;
      transition: all 0.15s;
    }

    .nav-dropdown a:hover {
      background: var(--gray-100);
      color: var(--black);
    }

    /* ── Center Logo ── */
    .nav-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      line-height: 1.15;
      user-select: none;
    }

    .nav-logo-line {
      font-weight: 800;
      font-size: 11px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--black);
      font-family: var(--font-heading);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
      width: 200px;
      justify-content: flex-end;
    }

    .nav-link {
      font-size: 14px;
      font-weight: 500;
      font-family: var(--font-body);
      color: var(--black);
      transition: opacity 0.2s;
    }

    .nav-link:hover { opacity: 0.6; }

    .nav-btn {
      font-size: 13px;
      font-weight: 600;
      font-family: var(--font-body);
      color: var(--white);
      background: var(--black);
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      transition: all 0.3s var(--ease);
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .nav-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      background: #000;
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 48px 100px;
      overflow: hidden;
    }

    /* Floating brand letters background */
    .hero-letters {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-letter {
      position: absolute;
      font-family: var(--font-heading);
      font-weight: 800;
      color: inherit;
      opacity: 0.04;
      user-select: none;
      animation: floatLetters var(--dur) cubic-bezier(0.16, 1, 0.3, 1) infinite;
      transform: rotate(var(--rot));
    }

    @keyframes floatLetters {
      0%, 100% { transform: translate(0, 0) rotate(var(--rot)); }
      33% { transform: translate(10px, -12px) rotate(calc(var(--rot) + 4deg)); }
      66% { transform: translate(-8px, 8px) rotate(calc(var(--rot) - 3deg)); }
    }

    .hero h1 {
      font-weight: 400;
      font-size: clamp(48px, 7.5vw, 88px);
      font-family: var(--font-heading);
      letter-spacing: -2px;
      line-height: 1.02;
      color: var(--black);
      position: relative;
      z-index: 1;
      margin-bottom: 28px;
    }

    .hero h1 .typing-cursor {
      display: inline-block;
      width: 3px;
      height: 0.85em;
      background: var(--black);
      margin-left: 4px;
      vertical-align: text-bottom;
      animation: cursorBlink 1s step-end infinite;
    }

    @keyframes cursorBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .hero-sub {
      font-size: clamp(16px, 1.8vw, 20px);
      font-weight: 400;
      font-family: var(--font-body);
      color: var(--black);
      max-width: 520px;
      line-height: 1.6;
      position: relative;
      z-index: 1;
      margin-bottom: 44px;
      animation: subtitleBreath 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    }

    @keyframes subtitleBreath {
      0%, 100% { transform: translateY(0); opacity: 0.85; }
      50% { transform: translateY(-2px); opacity: 1; }
    }

    @keyframes wordReveal {
      0% { opacity: 0; transform: translateY(15px); filter: blur(8px); }
      100% { opacity: 1; transform: translateY(0); filter: blur(0); }
    }

    .word-anim {
      display: inline-block;
      opacity: 0;
      animation: wordReveal 1.4s var(--ease) forwards;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      font-family: var(--font-body);
      color: var(--white);
      background: var(--black);
      padding: 14px 32px;
      border-radius: var(--radius-pill);
      transition: all 0.3s var(--ease);
      position: relative;
      z-index: 1;
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    }

    .hero-cta .arr {
      transition: transform 0.2s;
    }

    .hero-cta:hover .arr {
      transform: translateX(4px);
    }

    .hero-secondary {
      display: none;
    }

    /* ══════════════════════════════════════
       DEMO SECTION (Full-width, centered)
    ══════════════════════════════════════ */
    .demo-section {
      position: relative;
      padding: 80px 24px 100px;
      background: var(--white);
    }

    .demo-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .demo-label {
      font-size: 11px;
      font-weight: 700;
      font-family: var(--font-body);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 20px;
    }

    .demo-intro h2 {
      font-weight: 400;
      font-size: clamp(32px, 4vw, 48px);
      font-family: var(--font-heading);
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: var(--black);
      margin-bottom: 20px;
    }

    .demo-intro p {
      font-size: 17px;
      font-family: var(--font-body);
      color: var(--black);
      line-height: 1.7;
    }

    .demo-visual {
      display: flex;
      justify-content: center;
    }

    .demo-frame {
      width: 100%;
      background: transparent;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
    }

    .demo-frame-bar {
      display: none;
    }

    .demo-frame-dot {
      display: none;
    }

    .demo-frame-body {
      height: 850px;
      overflow: hidden;
    }

    .demo-frame-body iframe {
      border: none;
      transform-origin: top left;
      width: 100%;
      height: 100%;
    }

    /* ══════════════════════════════════════
       FLOATING EMOJIS (Wavy Marquee)
    ══════════════════════════════════════ */
    .emoji-section {
      padding: 80px 0;
      overflow: hidden;
      background: var(--white);
    }

    .emoji-track-wrap {
      display: flex;
      gap: 0;
      width: max-content;
      animation: emojiScroll 45s linear infinite;
    }

    .emoji-item {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      flex-shrink: 0;
      margin: 0 16px;
      filter: grayscale(1);
      opacity: 0.5;
      transition: all 0.4s var(--ease);
      animation: emojiWave 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    }

    /* Stagger the wave via nth-child */
    .emoji-item:nth-child(1)  { animation-delay: 0s; }
    .emoji-item:nth-child(2)  { animation-delay: 0.15s; }
    .emoji-item:nth-child(3)  { animation-delay: 0.3s; }
    .emoji-item:nth-child(4)  { animation-delay: 0.45s; }
    .emoji-item:nth-child(5)  { animation-delay: 0.6s; }
    .emoji-item:nth-child(6)  { animation-delay: 0.75s; }
    .emoji-item:nth-child(7)  { animation-delay: 0.9s; }
    .emoji-item:nth-child(8)  { animation-delay: 1.05s; }
    .emoji-item:nth-child(9)  { animation-delay: 1.2s; }
    .emoji-item:nth-child(10) { animation-delay: 1.35s; }
    .emoji-item:nth-child(11) { animation-delay: 1.5s; }
    .emoji-item:nth-child(12) { animation-delay: 1.65s; }
    .emoji-item:nth-child(13) { animation-delay: 1.8s; }
    .emoji-item:nth-child(14) { animation-delay: 1.95s; }
    .emoji-item:nth-child(15) { animation-delay: 2.1s; }
    .emoji-item:nth-child(n+16) { animation-delay: calc((var(--i, 0) - 15) * 0.15s); }

    .emoji-item:hover {
      filter: grayscale(0);
      opacity: 1;
      transform: translateY(-4px) scale(1.12);
    }

    @keyframes emojiScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes emojiWave {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ══════════════════════════════════════
       STATEMENT CTA
    ══════════════════════════════════════ */
    .statement {
      padding: 120px 48px;
      text-align: center;
    }

    .statement h2 {
      font-weight: 400;
      font-size: clamp(28px, 4vw, 48px);
      font-family: var(--font-heading);
      letter-spacing: -1.5px;
      line-height: 1.15;
      color: var(--black);
      max-width: 800px;
      margin: 0 auto;
    }

    /* ══════════════════════════════════════
       BLOGS SECTION
    ══════════════════════════════════════ */
    .blogs-section {
      padding: 80px 48px 100px;
      max-width: 1320px;
      margin: 0 auto;
    }

    .blogs-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .blogs-header h2 {
      font-weight: 500;
      font-size: 24px;
      font-family: var(--font-heading);
      letter-spacing: -0.3px;
    }

    .blogs-view-btn {
      font-size: 14px;
      font-weight: 600;
      font-family: var(--font-body);
      color: var(--black);
      border: 1.5px solid var(--gray-200);
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      transition: all 0.2s;
    }

    .blogs-view-btn:hover {
      border-color: var(--black);
    }

    .blogs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .blog-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.35s var(--ease), box-shadow 0.35s;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .blog-card-img {
      background: var(--card-dark);
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .blog-card-img-inner {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s var(--ease);
    }

    .blog-card:hover .blog-card-img-inner {
      transform: scale(1.04);
    }

    .blog-card-body {
      padding: 20px 4px 8px;
    }

    .blog-card-title {
      font-weight: 600;
      font-size: 15px;
      font-family: var(--font-heading);
      line-height: 1.35;
      color: var(--black);
      margin-bottom: 8px;
      letter-spacing: -0.2px;
    }

    .blog-card-meta {
      font-size: 12px;
      font-family: var(--font-body);
      color: var(--black);
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
    }

    .blog-card-link {
      font-size: 13px;
      font-weight: 500;
      font-family: var(--font-body);
      color: var(--black);
      display: flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.2s;
    }

    .blog-card:hover .blog-card-link {
      gap: 8px;
    }

    .blogs-arrows {
      display: flex;
      gap: 8px;
      margin-top: 32px;
    }

    .blogs-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--gray-200);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      color: var(--black);
    }

    .blogs-arrow:hover {
      border-color: var(--black);
      color: var(--black);
    }

    /* ══════════════════════════════════════
       FINAL CTA
    ══════════════════════════════════════ */
    .final-cta {
      padding: 100px 48px;
      display: flex;
      justify-content: center;
    }

    .final-cta-card {
      background: var(--card-dark);
      border-radius: 24px;
      padding: 80px;
      text-align: center;
      max-width: 800px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .final-cta-card::before {
      content: '';
      position: absolute;
      top: -120px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .final-cta-card h2 {
      font-weight: 400;
      font-size: clamp(32px, 4.5vw, 48px);
      font-family: var(--font-heading);
      letter-spacing: -1.5px;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
    }

    .final-cta-card p {
      font-size: 17px;
      font-family: var(--font-body);
      color: rgba(255,255,255,0.5);
      margin-bottom: 36px;
      position: relative;
    }

    .final-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 700;
      font-family: var(--font-body);
      background: var(--white);
      color: var(--black);
      padding: 16px 36px;
      border-radius: var(--radius-pill);
      transition: all 0.3s var(--ease);
      position: relative;
    }

    .final-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 60px rgba(255,255,255,0.15);
    }

    .final-cta-btn .arr {
      transition: transform 0.2s;
    }

    .final-cta-btn:hover .arr {
      transform: translateX(4px);
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    .footer-section {
      padding: 80px 48px 60px;
    }

    .footer-tagline {
      font-size: 18px;
      font-weight: 400;
      font-family: var(--font-body);
      color: var(--black);
      text-align: center;
      margin-bottom: 24px;
    }

    .footer-brand {
      font-weight: 800;
      font-size: clamp(60px, 10vw, 140px);
      font-family: var(--font-heading);
      letter-spacing: 0.08em;
      line-height: 1;
      color: var(--black);
      margin-bottom: 60px;
      user-select: none;
      text-align: center;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 40px;
      border-top: 1px solid var(--gray-200);
    }

    .footer-logo-small {
      text-align: left;
    }

    .footer-logo-mark {
      font-weight: 800;
      font-size: 10px;
      font-family: var(--font-heading);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      line-height: 1.25;
      color: var(--black);
    }

    .footer-columns {
      display: flex;
      gap: 80px;
    }

    .footer-col h4 {
      font-weight: 700;
      font-size: 13px;
      font-family: var(--font-heading);
      color: var(--black);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      font-weight: 400;
      font-family: var(--font-body);
      color: var(--black);
      margin-bottom: 10px;
      transition: opacity 0.2s;
    }

    .footer-col a:hover {
      opacity: 0.5;
    }

    .footer-copy {
      font-size: 12px;
      font-family: var(--font-body);
      color: var(--black);
      text-align: center;
      padding: 24px 48px 40px;
    }

    /* ══════════════════════════════════════
       WHO WE SERVE
    ══════════════════════════════════════ */
    .serve-section {
      padding: 100px 48px;
      max-width: 1320px;
      margin: 0 auto;
    }

    .serve-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .serve-label {
      font-size: 11px;
      font-weight: 700;
      font-family: var(--font-body);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 20px;
    }

    .serve-intro h2 {
      font-weight: 400;
      font-size: clamp(32px, 4vw, 48px);
      font-family: var(--font-heading);
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: var(--black);
      margin-bottom: 20px;
    }

    .serve-intro p {
      font-size: 17px;
      font-family: var(--font-body);
      color: var(--gray-500);
      line-height: 1.7;
    }

    .serve-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .serve-card {
      background: var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      transition: all 0.35s var(--ease);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .serve-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      background: var(--white);
      border: 1px solid var(--gray-200);
    }

    .serve-icon {
      font-size: 32px;
      display: block;
      margin-bottom: 16px;
    }

    .serve-card h3 {
      font-weight: 600;
      font-size: 18px;
      font-family: var(--font-heading);
      letter-spacing: -0.3px;
      margin-bottom: 10px;
      color: var(--black);
    }

    .serve-card p {
      font-size: 14px;
      font-family: var(--font-body);
      color: var(--gray-500);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
       FEATURES
    ══════════════════════════════════════ */
    .features-section {
      padding: 100px 48px;
      max-width: 1320px;
      margin: 0 auto;
    }

    .features-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .features-label {
      font-size: 11px;
      font-weight: 700;
      font-family: var(--font-body);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 20px;
    }

    .features-intro h2 {
      font-weight: 400;
      font-size: clamp(32px, 4vw, 48px);
      font-family: var(--font-heading);
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: var(--black);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      transition: all 0.35s var(--ease);
    }

    .feature-card:hover {
      border-color: var(--black);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    }

    .feature-icon {
      font-size: 28px;
      display: block;
      margin-bottom: 16px;
    }

    .feature-card h3 {
      font-weight: 600;
      font-size: 17px;
      font-family: var(--font-heading);
      letter-spacing: -0.3px;
      margin-bottom: 10px;
      color: var(--black);
    }

    .feature-card p {
      font-size: 14px;
      font-family: var(--font-body);
      color: var(--gray-500);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
       FAQ SECTION
    ══════════════════════════════════════ */
    .faq-section {
      padding: 100px 48px;
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-intro {
      text-align: center;
      margin-bottom: 60px;
    }
    .faq-label {
      font-size: 11px;
      font-weight: 700;
      font-family: var(--font-body);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 20px;
    }
    .faq-intro h2 {
      font-weight: 800;
      font-size: clamp(32px, 4vw, 48px);
      font-family: var(--font-heading);
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: var(--black);
    }
    .faq-item {
      border-bottom: 1.5px solid var(--gray-200);
    }
    .faq-item:first-child {
      border-top: 1.5px solid var(--gray-200); // Only for the first item under the wrapper if we wrap them
    }
    .faq-items-wrapper {
      border-top: 1.5px solid var(--gray-200);
    }
    .faq-btn {
      width: 100%;
      text-align: left;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 18px;
      font-weight: 700;
      font-family: var(--font-heading);
      color: var(--black);
      transition: color 0.2s;
    }
    .faq-btn:hover {
      color: var(--gray-500);
    }
    .faq-icon {
      font-size: 24px;
      font-weight: 300;
      transition: transform 0.3s var(--ease);
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    }
    .faq-content-inner {
      padding-bottom: 32px;
      font-size: 16px;
      font-family: var(--font-body);
      color: var(--gray-600);
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .faq-section {
        padding: 60px 24px;
      }
      .faq-btn {
        font-size: 16px;
        padding: 20px 0;
      }
      .faq-content-inner {
        font-size: 15px;
      }
    }

    /* ══════════════════════════════════════
       SCROLL ANIMATIONS
    ══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s var(--ease), transform 1s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .demo-section {
        padding: 60px 24px 80px;
      }
      .footer-columns {
        gap: 40px;
      }
      .serve-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav {
        padding: 0 20px;
      }
      .nav-left .nav-trigger span {
        display: none;
      }
      .nav-right {
        gap: 12px;
      }
      .nav-btn {
        padding: 8px 16px;
        font-size: 12px;
      }
      .hero {
        padding: 120px 20px 80px;
      }
      .hero h1 {
        font-size: 44px;
        letter-spacing: -1.5px;
      }
      .demo-section {
        padding: 40px 16px 60px;
      }
      .demo-frame-body {
        height: 850px;
      }
      .statement {
        padding: 80px 20px;
      }
      .serve-section {
        padding: 60px 20px;
      }
      .serve-grid {
        grid-template-columns: 1fr;
      }
      .features-section {
        padding: 60px 20px;
      }
      .features-grid {
        grid-template-columns: 1fr;
      }
      .blogs-section {
        padding: 60px 20px 80px;
      }
      .blogs-grid {
        grid-template-columns: 1fr;
      }
      .final-cta {
        padding: 60px 20px;
      }
      .final-cta-card {
        padding: 48px 28px;
      }
      .footer-section {
        padding: 60px 20px 40px;
      }
      .footer-brand {
        font-size: 56px;
        letter-spacing: -2px;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 32px;
      }
      .footer-columns {
        flex-direction: column;
        gap: 24px;
      }
    }

    @media (max-width: 480px) {
      .nav-logo-line {
        font-size: 9px;
        letter-spacing: 0.25em;
      }
      .hero h1 {
        font-size: 36px;
      }
      .final-cta-card h2 {
        font-size: 28px;
      }
    }

    /* ══════════════════════════════════════
       CONTACT FORM
    ══════════════════════════════════════ */
    .contact-section {
      padding: 120px 48px 100px;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
    }
    .contact-inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .contact-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gray-400); display: block; margin-bottom: 20px; font-family: var(--font-body);
    }
    .contact-headline {
      font-size: clamp(36px, 5vw, 72px); font-weight: 800; letter-spacing: -2px;
      color: var(--black); line-height: 1.0; margin-bottom: 16px; font-family: var(--font-heading);
    }
    .contact-sub {
      font-size: 17px; color: var(--gray-500); line-height: 1.7; margin-bottom: 64px;
      max-width: 480px; font-family: var(--font-body);
    }
    .contact-form { display: flex; flex-direction: column; gap: 0; }
    .cf-field {
      position: relative;
      border-bottom: 1.5px solid var(--black);
      margin-bottom: 40px;
    }
    .cf-field::after {
      content: ''; position: absolute; bottom: -1.5px; left: 0;
      width: 0; height: 2px; background: var(--black);
      transition: width 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .cf-field:focus-within::after { width: 100%; }
    .cf-field input, .cf-field textarea {
      width: 100%; background: transparent; border: none; outline: none;
      padding: 22px 0 8px; font-size: 18px; font-weight: 400; color: var(--black);
      font-family: var(--font-heading); line-height: 1.4; resize: none;
    }
    .cf-field textarea { min-height: 120px; }
    .cf-label {
      position: absolute; top: 22px; left: 0;
      font-size: 14px; font-weight: 500; color: var(--gray-400);
      pointer-events: none; font-family: var(--font-body);
      transition: top 0.3s cubic-bezier(0.22,1,0.36,1), font-size 0.3s cubic-bezier(0.22,1,0.36,1), color 0.3s;
    }
    .cf-field input:focus ~ .cf-label,
    .cf-field input:not(:placeholder-shown) ~ .cf-label,
    .cf-field textarea:focus ~ .cf-label,
    .cf-field textarea:not(:placeholder-shown) ~ .cf-label {
      top: 4px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--black);
    }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .cf-submit {
      display: inline-flex; align-items: center; gap: 12px;
      margin-top: 8px; padding: 18px 48px;
      background: var(--black); color: var(--white);
      border: none; border-radius: var(--radius-pill);
      font-size: 15px; font-weight: 600; letter-spacing: .02em;
      font-family: var(--font-body); cursor: pointer;
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
    }
    .cf-submit:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
    .cf-submit:active { transform: translateY(0); }
    .cf-submit-arrow { transition: transform 0.3s; }
    .cf-submit:hover .cf-submit-arrow { transform: translateX(5px); }
    .cf-sent-msg {
      display: none; margin-top: 32px;
      font-size: 15px; font-weight: 500; color: var(--black);
      padding: 20px 28px; border: 1px solid var(--gray-200); border-radius: 12px;
      background: var(--gray-100); font-family: var(--font-body);
    }
    .cf-sent-msg.visible { display: block; }
    @media (max-width: 768px) {
      .contact-section { padding: 80px 20px 60px; }
      .cf-row { grid-template-columns: 1fr; gap: 0; }
    }

  
        .lang-switcher {
            display: flex;
            gap: 6px;
        }

        .lang-btn {
            background: none;
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
            padding: 4px 8px;
            border-radius: 6px;
            text-decoration: none;
            transition: all .2s;
        }

        .lang-btn:hover,
        .lang-btn.active {
            background: var(--off-white);
            color: var(--black);
        }

    


    
    /* Beautiful Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f9f9f9;
        border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb {
        background: #d1d1d1;
        border-radius: 10px;
        border: 2px solid #f9f9f9;
        transition: all 0.3s ease;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #000;
    }
    html {
        scroll-behavior: smooth;
    }

    
    /* ═══════════════════════════════════
       MOBILE RESPONSIVE — Global Block
       Targets: 768px and below
    ═══════════════════════════════════ */

    /* NAV: Global Mobile */
    @media (max-width: 768px) {
      .nav {
        padding: 0 20px !important;
        height: 52px !important;
      }
      .nav-logo, .nav-logo-line {
        font-size: 10px !important;
        letter-spacing: 0.25em !important;
      }
      .nav-right .lang-switcher {
        display: none !important;
      }
      .nav-right .nav-link:not(:last-child) {
        display: none !important;
      }
    }

    /* HERO: index.html */
    @media (max-width: 768px) {
      .hero {
        padding: 80px 24px 60px !important;
        text-align: center !important;
      }
      .hero h1 {
        font-size: clamp(44px, 12vw, 80px) !important;
        letter-spacing: -2px !important;
      }
      .hero-sub {
        font-size: 16px !important;
        max-width: 100% !important;
      }
      .hero-cta {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 24px !important;
      }
      .hero-letters { opacity: 0.4 !important; }
    }

    /* PRODUCT PAGES: Feature Sections */
    @media (max-width: 768px) {
      .feat-inner {
        flex-direction: column !important;
        gap: 32px !important;
        padding: 48px 24px !important;
      }
      .feat-hl {
        font-size: clamp(30px, 9vw, 52px) !important;
        letter-spacing: -1px !important;
      }
      .feat-body {
        font-size: 16px !important;
      }
      .feat-visual-box {
        width: 100% !important;
        max-width: 100% !important;
      }
      .feat-phone, .feat-phone-img {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
      }
    }

    /* WHO WE SERVE / Serve Grid */
    @media (max-width: 768px) {
      .serve-section { padding: 60px 24px !important; }
      .serve-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      .serve-intro h2 {
        font-size: clamp(28px, 8vw, 42px) !important;
      }
    }

    /* STATEMENT */
    @media (max-width: 768px) {
      .statement {
        padding: 60px 24px !important;
        font-size: clamp(22px, 7vw, 36px) !important;
      }
      .statement h2 {
        font-size: clamp(22px, 7vw, 36px) !important;
      }
    }

    /* PRICING PAGES */
    @media (max-width: 768px) {
      .pricing-grid, .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }
      .pricing-card, .plan-card {
        padding: 32px 24px !important;
      }
      .gateway-card {
        padding: 40px 24px !important;
      }
      .gateway-card h2 {
        font-size: clamp(28px, 8vw, 48px) !important;
      }
    }

    /* BLOG GRID */
    @media (max-width: 768px) {
      .blog-grid, .posts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      .blog-hero, .blog-header {
        padding: 60px 24px 32px !important;
      }
      .blog-hero h1, .blog-header h1 {
        font-size: clamp(32px, 9vw, 56px) !important;
      }
    }

    /* BLOG POST / ARTICLE */
    @media (max-width: 768px) {
      .post-hero {
        padding: 60px 24px 32px !important;
      }
      .post-hero h1, .post-title {
        font-size: clamp(26px, 7vw, 44px) !important;
        letter-spacing: -0.5px !important;
      }
      .post-body {
        padding: 32px 24px !important;
        font-size: 16px !important;
        line-height: 1.75 !important;
      }
      .related-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
    }

    /* AUTH PAGES (Signup / Login) */
    @media (max-width: 768px) {
      .auth-form-wrapper {
        padding: 48px 20px 32px !important;
      }
      .auth-header h1 {
        font-size: 28px !important;
      }
      .form-row {
        flex-direction: column !important;
        gap: 0 !important;
      }
      .back-btn {
        top: 14px !important;
        left: 16px !important;
        font-size: 13px !important;
      }
      .auth-nav {
        font-size: 13px !important;
        top: 16px !important;
        right: 16px !important;
      }
    }

    /* ABOUT PAGE */
    @media (max-width: 768px) {
      .about-hero {
        padding: 80px 24px 48px !important;
      }
      .about-hero h1 {
        font-size: clamp(36px, 10vw, 64px) !important;
      }
      .about-grid, .values-grid, .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      .about-section, .values-section {
        padding: 60px 24px !important;
      }
    }

    /* LEGAL PAGES (Terms / Privacy) */
    @media (max-width: 768px) {
      .legal-hero {
        padding: 60px 24px 32px !important;
      }
      .legal-body, .doc-body, .legal-content {
        padding: 32px 24px !important;
        font-size: 15px !important;
        line-height: 1.75 !important;
      }
    }

    /* CONTACT FORM (index.html) */
    @media (max-width: 768px) {
      .contact-section, .cf-section {
        padding: 60px 24px !important;
      }
      .cf-grid, .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }
    }

    /* FOOTER */
    @media (max-width: 768px) {
      .footer-section {
        padding: 60px 24px 40px !important;
      }
      .footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
      }
      .footer-brand {
        font-size: clamp(40px, 14vw, 80px) !important;
      }
      .footer-tagline {
        font-size: 14px !important;
      }
    }

    /* 404 PAGE */
    @media (max-width: 768px) {
      .error-page, .not-found {
        padding: 80px 24px !important;
        text-align: center !important;
      }
    }

    /* ACCOUNT PAGE */
    @media (max-width: 768px) {
      .account-layout, .dashboard-layout {
        flex-direction: column !important;
        gap: 24px !important;
      }
      .account-sidebar {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid var(--gray-200) !important;
      }
    }

    /* Very small phones */
    @media (max-width: 400px) {
      .hero h1 {
        font-size: 38px !important;
      }
      .nav-right .nav-link {
        font-size: 13px !important;
      }
      .footer-columns {
        grid-template-columns: 1fr !important;
      }
    }

    