  :root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #c8c8c8;
    --gray-500: #888888;
    --gray-700: #444444;
    --gray-900: #111111;
    --font-display: 'Syne', sans-serif;
    --font-mono: 'DM Mono', monospace;
    --font-body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html, body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.7);
  }
  .logo {
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    letter-spacing: -0.02em; color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .logo-dot {
    width: 8px; height: 8px; background: var(--white);
    border-radius: 50%; animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6} }

  .nav-links {
    display: flex; align-items: center; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body); font-size: 13px; font-weight: 400;
    color: var(--gray-300); text-decoration: none;
    letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta { display: flex; align-items: center; gap: 16px; }
  .btn-ghost {
    font-family: var(--font-body); font-size: 13px; color: var(--gray-300);
    background: none; border: none; cursor: pointer;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.2s; text-decoration: none;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-primary {
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    color: var(--black); background: var(--white); border: none;
    padding: 10px 22px; cursor: pointer;
    letter-spacing: 0.03em; text-transform: uppercase; text-decoration: none;
    transition: background 0.2s, transform 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--gray-200); transform: translateY(-1px); }

  /* ── LOADER ── */
  .loader {
    position: fixed; inset: 0; background: var(--black); z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .loader.hidden { opacity: 0; visibility: hidden; }
  .loader-logo {
    font-family: var(--font-display); font-weight: 800; font-size: 28px;
    letter-spacing: -0.02em; color: var(--white);
  }
  .loader-bar {
    width: 200px; height: 1px; background: rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
  }
  .loader-bar::after {
    content: ''; position: absolute; inset: 0;
    background: var(--white); animation: load 1.2s ease forwards;
  }
  @keyframes load { from{transform:translateX(-100%)} to{transform:translateX(0)} }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 110px 40px 40px; position: relative;
    text-align: center; overflow: hidden;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,0.15); padding: 6px 14px;
    font-family: var(--font-mono); font-size: 11px; color: var(--gray-300);
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 40px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-tag-dot {
    width: 6px; height: 6px; background: var(--white);
    border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;
  }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 800; line-height: 0.92;
    letter-spacing: -0.04em; color: var(--white);
    margin-bottom: 32px; animation: fadeUp 0.8s ease 0.1s both;
  }
  .hero-headline em {
    font-style: normal; color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  }
  .hero-sub {
    font-family: var(--font-body); font-size: 18px; font-weight: 300;
    color: var(--gray-500); max-width: 520px; line-height: 1.7;
    margin-bottom: 40px; animation: fadeUp 0.8s ease 0.2s both;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    justify-content: center; animation: fadeUp 0.8s ease 0.3s both;
    position: relative; z-index: 2;
  }
  .btn-large {
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    letter-spacing: 0.02em; text-transform: uppercase;
    padding: 18px 44px; background: var(--white); color: var(--black);
    border: none; text-decoration: none; cursor: pointer;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-large:hover { background: var(--gray-200); transform: translateY(-2px); }
  .btn-large-outline {
    background: none; color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
  }
  .btn-large-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }



  /* ── MARQUEE ── */
  .marquee-section {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0; overflow: hidden;
    background: rgba(255,255,255,0.02);
  }
  .marquee-track {
    display: flex; gap: 64px;
    animation: marquee 25s linear infinite; white-space: nowrap;
  }
  .marquee-item {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gray-500);
    display: flex; align-items: center; gap: 16px; flex-shrink: 0;
  }
  .marquee-item::after { content: '·'; color: rgba(255,255,255,0.2); }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  /* ── FEATURES ── */
  .section { padding: 48px 40px; max-width: 1280px; margin: 0 auto; }
  .section-label {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; width: 32px; height: 1px; background: var(--gray-700); }
  .section-title {
    font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 800; line-height: 1; letter-spacing: -0.03em;
    color: var(--white); margin-bottom: 48px; max-width: 600px;
  }

  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .feature-card {
    background: var(--black); padding: 36px 32px;
    position: relative; overflow: hidden; transition: background 0.3s;
  }
  .feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--white); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .feature-card:hover { background: rgba(255,255,255,0.03); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-number {
    font-family: var(--font-mono); font-size: 11px; color: var(--gray-700);
    letter-spacing: 0.08em; margin-bottom: 32px;
  }
  .feature-icon {
    width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px; color: var(--white);
  }
  .feature-title {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em;
  }
  .feature-desc {
    font-family: var(--font-body); font-size: 14px; font-weight: 300;
    color: var(--gray-500); line-height: 1.7;
  }

  /* ── HOW IT WORKS ── */
  .steps-section { border-top: 1px solid rgba(255,255,255,0.06); }
  .steps-inner {
    max-width: 1400px; margin: 0 auto; padding: 48px 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .steps-left { position: sticky; top: 120px; }
  .steps-right { display: flex; flex-direction: column; gap: 0; }
  .step-item {
    padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 24px;
  }
  .step-item:first-child { padding-top: 0; }
  .step-num {
    font-family: var(--font-mono); font-size: 11px; color: var(--gray-700);
    letter-spacing: 0.06em; padding-top: 4px; flex-shrink: 0; width: 32px;
  }
  .step-title {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    color: var(--white); margin-bottom: 10px; letter-spacing: -0.02em;
  }
  .step-desc {
    font-family: var(--font-body); font-size: 14px; font-weight: 300;
    color: var(--gray-500); line-height: 1.7;
  }

  /* ── ROOM PREVIEW VISUAL ── */
  .room-preview {
    border: 1px solid rgba(255,255,255,0.08);
    background: #080808; overflow: hidden;
  }
  .rp-bar {
    display: flex; align-items: center; gap: 8px; padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
  }
  .rp-dot { width: 7px; height: 7px; border-radius: 50%; }
  .rp-title {
    font-family: var(--font-mono); font-size: 10px; color: var(--gray-700);
    letter-spacing: 0.06em; margin-left: 6px; flex: 1;
  }
  .rp-avatars { display: flex; gap: 3px; }
  .rp-av {
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 8px; font-weight: 800; color: #000;
  }
  .rp-body { display: flex; height: 140px; }
  .rp-sidebar {
    width: 90px; border-right: 1px solid rgba(255,255,255,0.05);
    padding: 10px 8px; display: flex; flex-direction: column; gap: 5px;
  }
  .rp-file {
    padding: 4px 8px; border-radius: 3px;
    font-family: var(--font-mono); font-size: 9px; color: var(--gray-700);
    letter-spacing: 0.04em; display: flex; align-items: center; gap: 5px;
  }
  .rp-file.active { background: rgba(255,255,255,0.06); color: var(--white); }
  .rp-file-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
  .rp-editor { flex: 1; padding: 10px 12px; display: flex; flex-direction: column; gap: 5px; }
  .rp-line { height: 5px; background: rgba(255,255,255,0.05); border-radius: 2px; }
  .rp-line.kw { background: rgba(125,211,252,0.2); }
  .rp-line.str { background: rgba(134,239,172,0.2); }
  .rp-line.cur { 
    position: relative;
    background: rgba(255,255,255,0.08);
    overflow: visible;
  }
  .rp-cursor {
    position: absolute; right: -1px; top: -3px;
    width: 2px; height: 11px; background: #e2c275;
    animation: blink 1s step-end infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

  /* ── SHOWCASE ── */
  .showcase { border-top: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.01); }
  .showcase-inner { max-width: 1400px; margin: 0 auto; padding: 48px 40px; }
  .showcase-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 64px;
  }
  .showcase-item {
    aspect-ratio: 16/10; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative; overflow: hidden; transition: border-color 0.3s;
  }
  .showcase-item:hover { border-color: rgba(255,255,255,0.2); }
  .showcase-item:first-child { grid-row: span 2; aspect-ratio: unset; min-height: 300px; }
  .showcase-preview {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .showcase-item-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-family: var(--font-mono); font-size: 11px;
    color: var(--gray-500); letter-spacing: 0.06em;
  }

  /* ── EXECUTIVE ORG CHART SCENE ── */
  .scene-section {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 72px 24px 80px;
    overflow: hidden;
    position: relative;
    background: #000;
  }
  .scene-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-bottom: 10px;
  }
  .scene-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 64px;
  }
  .scene-title em { font-style: normal; color: rgba(255,255,255,0.4); }

  /* ── ORG CHART CONTAINER ── */
  .org-chart {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    user-select: none;
  }

  /* SVG connector lines */
  .org-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: visible;
  }
  .org-line {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 1;
  }
  .org-line-pulse {
    fill: none;
    stroke: rgba(255,255,255,0.55);
    stroke-width: 1;
    stroke-dasharray: 4 120;
    animation: linePulse 3s linear infinite;
  }
  .org-line-pulse.d1 { animation-delay: 0s; }
  .org-line-pulse.d2 { animation-delay: 0.6s; }
  .org-line-pulse.d3 { animation-delay: 1.2s; }
  .org-line-pulse.d4 { animation-delay: 1.8s; }
  @keyframes linePulse {
    0%   { stroke-dashoffset: 130; opacity: 0; }
    8%   { opacity: 1; }
    80%  { opacity: 0.6; }
    100% { stroke-dashoffset: 0;   opacity: 0; }
  }

  /* ── CARD ── */
  .org-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
  }
  .org-row.top    { margin-bottom: 56px; }
  .org-row.middle { margin-bottom: 56px; }
  .org-row.bottom { }

  .org-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 20px 16px;
    width: 180px;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
  }
  .org-card:hover {
    border-color: rgba(255,255,255,0.28);
    background: #111;
  }
  .org-card.is-lead {
    border-color: rgba(255,255,255,0.22);
    background: #0d0d0d;
    width: 210px;
  }
  .org-card.is-lead:hover {
    border-color: rgba(255,255,255,0.4);
  }

  /* Top accent bar — only on lead */
  .org-card.is-lead::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.7);
  }

  /* Status dot */
  .org-status {
    position: absolute;
    top: 14px; right: 14px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    animation: statusBreathe 3s ease-in-out infinite;
  }
  .org-status.busy { background: rgba(255,255,255,0.3); animation: none; }
  .org-status.away { background: rgba(255,255,255,0.15); animation: none; }
  @keyframes statusBreathe {
    0%,100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.8); }
  }

  /* Avatar initials */
  .org-avatar {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.14);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 13px; font-weight: 800;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    background: rgba(255,255,255,0.04);
  }
  .org-card.is-lead .org-avatar {
    width: 42px; height: 42px;
    font-size: 15px;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
  }

  .org-name {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.01em;
    margin-bottom: 3px;
  }
  .org-role {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
  }
  .org-card.is-lead .org-name { font-size: 15px; }
  .org-card.is-lead .org-role { color: rgba(255,255,255,0.45); }

  /* Task bar */
  .org-task {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Progress bar */
  .org-progress {
    height: 2px;
    background: rgba(255,255,255,0.07);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
  }
  .org-progress-fill {
    height: 100%;
    background: rgba(255,255,255,0.5);
    position: relative;
  }
  .org-progress-fill::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 20px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
    animation: shimmer 2.5s ease-in-out infinite;
  }
  @keyframes shimmer {
    0%,100% { opacity: 0.4; }
    50%      { opacity: 1; }
  }

  /* ── CTA ── */
  .cta-wrap {
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center; padding: 72px 24px 80px;
  }
  .cta-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner {
    position: relative; max-width: 600px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
  }
  .cta-badge {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1); padding: 5px 14px; border-radius: 100px;
  }
  .cta-headline {
    font-family: var(--font-display); font-size: clamp(36px, 8vw, 80px);
    font-weight: 800; letter-spacing: -.04em; line-height: 0.95; color: #fff; margin: 0;
  }
  .cta-headline em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.4); }
  .cta-sub {
    font-family: var(--font-body); font-size: 16px; font-weight: 300;
    color: var(--gray-500); line-height: 1.6; max-width: 400px; margin: 0;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    letter-spacing: .03em; text-transform: uppercase;
    color: #000; background: #fff; border: none;
    padding: 16px 36px; cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .cta-btn:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
  .cta-proof { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
  .cta-avatars { display: flex; }
  .cta-av {
    width: 26px; height: 26px; border-radius: 50%; border: 2px solid #000;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 10px; font-weight: 700; color: #fff;
    margin-left: -6px;
  }
  .cta-av:first-child { margin-left: 0; }
  .cta-proof-text { font-family: var(--font-mono); font-size: 11px; color: var(--gray-700); letter-spacing: .04em; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 28px 40px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: var(--font-display); font-weight: 800; font-size: 18px;
    letter-spacing: -0.02em; color: var(--white);
  }
  .footer-links { display: flex; gap: 32px; list-style: none; }
  .footer-links a {
    font-family: var(--font-mono); font-size: 11px; color: var(--gray-500);
    text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { font-family: var(--font-mono); font-size: 11px; color: var(--gray-700); letter-spacing: 0.06em; }



  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .section { padding: 60px 20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-item:first-child { grid-row: span 1; aspect-ratio: 16/10; }
    .steps-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 16px; }
    .steps-left { position: static; }
    footer { flex-direction: column; gap: 28px; text-align: center; padding: 40px 20px; }
    .hero { padding: 90px 20px 60px; }
    .showcase-inner { padding: 32px 16px; }
  }
  @media (max-width: 640px) {
    nav { padding: 14px 16px; }
    .nav-cta .btn-ghost { display: none; }
    .hero { padding: 70px 16px 28px; min-height: auto; }
    .hero-sub { font-size: 15px; max-width: 100%; }
    .section { padding: 32px 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 28px 20px; }
    .steps-inner { padding: 28px 16px; }
    .step-item { padding: 20px 0; gap: 16px; }
    footer { padding: 24px 16px; flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .marquee-section { display: none; }
    .btn-large { padding: 14px 28px; font-size: 14px; }
    .cta-wrap { padding: 52px 20px 60px; }
    .cta-sub { font-size: 14px; }
    .cta-btn { padding: 14px 28px; font-size: 13px; }
  }
  @media (max-width: 380px) {
    .hero { padding: 72px 12px 40px; }
    .section { padding: 40px 12px; }
    .btn-primary { padding: 8px 16px; font-size: 12px; }
    .feature-card { padding: 24px 16px; }
  }
