:root {
      /* Easa / Stripe-system palette */
      --indigo: #533afd;
      --indigo-deep: #4434d4;
      --indigo-press: #2e2b8c;
      --indigo-soft: #665efd;
      --indigo-subdued: #b9b9f9;
      --indigo-tint: #eef0ff;

      --dark-900: #1c1e54;
      --ink: #0d253d;
      --ink-2: #273951;
      --ink-mute: #64748d;

      --canvas: #ffffff;
      --canvas-soft: #f6f9fc;
      --canvas-cream: #f5e9d4;
      --hairline: #e3e8ee;

      --mint: #6ee7b7;
      --ruby: #ea2261;
      --magenta: #f96bee;

      --shadow-1: 0 1px 3px rgba(0,55,112,.08);
      --shadow-2: 0 8px 24px rgba(0,55,112,.08), 0 2px 6px rgba(0,55,112,.04);
      --shadow-3: 0 18px 50px rgba(28,30,84,.14);
      --radius: 12px;
      --radius-xl: 16px;
      --maxw: 1120px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      font-feature-settings: "ss01" 1, "cv05" 1;
      font-weight: 300;
      color: var(--ink);
      background: var(--canvas);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    @supports (font-variation-settings: normal) { body { font-family: "Inter var", "Inter", system-ui, sans-serif; } }

    a { color: var(--indigo); text-decoration: none; }
    .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

    /* Display type — thin weight is the brand */
    h1, h2, h3 { font-weight: 300; color: var(--ink); margin: 0; }
    h1 { font-size: clamp(2.4rem, 5.4vw, 3.5rem); line-height: 1.05; letter-spacing: -.028em; }
    h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); line-height: 1.1; letter-spacing: -.022em; }
    h3 { font-size: 1.4rem; letter-spacing: -.018em; }

    /* Buttons — pill, one filled CTA per band */
    .btn { display: inline-block; font-weight: 500; font-size: .98rem; line-height: 1; padding: 13px 22px; border-radius: 9999px; border: 1px solid transparent; transition: background .15s ease, transform .15s ease, box-shadow .15s ease, border-color .15s ease; cursor: pointer; }
    .btn.primary { background: var(--indigo); color: #fff; box-shadow: 0 1px 2px rgba(83,58,253,.35); }
    .btn.primary:hover { background: var(--indigo-deep); transform: translateY(-1px); }
    .btn.primary:active { background: var(--indigo-press); transform: none; }
    .btn.secondary { background: #fff; color: var(--indigo); border-color: var(--indigo-subdued); }
    .btn.secondary:hover { background: var(--indigo-tint); border-color: var(--indigo-soft); }
    .btn.ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
    .btn.ghost:hover { background: var(--canvas-soft); }
    .btn:focus-visible, a:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 10px; }
    .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Header */
    header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--hairline); }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 1.16rem; letter-spacing: -.02em; color: var(--ink); }
    .brand .mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--indigo), var(--magenta)); display: grid; place-items: center; color: #fff; }
    .brand .mark svg { width: 20px; height: 20px; }
    .nav-links { display: flex; align-items: center; gap: 18px; }
    .nav-links a.txt { color: var(--ink-2); font-weight: 400; font-size: .95rem; }
    .nav-links a.txt:hover { color: var(--ink); }
    @media (max-width: 560px) { .nav-links a.txt { display: none; } }

    /* Hero with animated gradient-mesh backdrop */
    .hero { position: relative; overflow: hidden; padding: 88px 0 92px; }
    .hero::before {
      content: ""; position: absolute; inset: -30% -15% 0 -15%; z-index: 0; pointer-events: none;
      background:
        radial-gradient(38% 55% at 12% 8%,  rgba(245,233,212,.95) 0%, transparent 60%),
        radial-gradient(38% 55% at 28% 22%, rgba(234,34,97,.45)   0%, transparent 55%),
        radial-gradient(40% 55% at 86% 4%,  rgba(249,107,238,.55) 0%, transparent 55%),
        radial-gradient(42% 55% at 48% -5%, rgba(185,185,249,.85) 0%, transparent 58%),
        radial-gradient(46% 65% at 70% 26%, rgba(83,58,253,.55)   0%, transparent 60%),
        radial-gradient(34% 50% at 6% 40%,  rgba(110,231,183,.40) 0%, transparent 58%);
      filter: blur(10px); animation: meshDrift 16s ease-in-out infinite alternate;
    }
    @keyframes meshDrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-2%,1.5%,0) scale(1.06); } }
    .hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 52px; align-items: center; }
    @media (max-width: 940px) { .hero .wrap { grid-template-columns: 1fr; gap: 40px; } }

    .pill { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 500; letter-spacing: .01em; color: var(--indigo-deep); background: rgba(255,255,255,.7); border: 1px solid var(--indigo-subdued); border-radius: 9999px; padding: 6px 14px; margin-bottom: 22px; backdrop-filter: blur(4px); }
    .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px rgba(110,231,183,.3); }
    .hero h1 { max-width: 15ch; margin-bottom: 20px; }
    .hero .lede { font-size: clamp(1.05rem, 2.1vw, 1.24rem); color: var(--ink-mute); font-weight: 400; margin: 0 0 30px; max-width: 50ch; }
    .trust { display: flex; flex-wrap: wrap; gap: 18px 22px; margin-top: 36px; color: var(--ink-mute); font-size: .9rem; }
    .trust span { display: inline-flex; align-items: center; gap: 8px; }
    .trust svg { width: 18px; height: 18px; color: var(--indigo); }

    /* Entrance */
    .hero-copy > * { opacity: 0; animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
    .hero-copy > *:nth-child(1){ animation-delay: .05s } .hero-copy > *:nth-child(2){ animation-delay: .13s }
    .hero-copy > *:nth-child(3){ animation-delay: .21s } .hero-copy > *:nth-child(4){ animation-delay: .29s }
    .hero-copy > *:nth-child(5){ animation-delay: .37s }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

    /* Animated live-call card */
    .callcard { position: relative; background: rgba(255,255,255,.72); backdrop-filter: blur(16px) saturate(160%); border: 1px solid rgba(255,255,255,.9); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-3); opacity: 0; animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) .35s forwards, floaty 7s ease-in-out 1.2s infinite; width: 100%; max-width: 420px; margin-left: auto; }
    @media (max-width: 940px) { .callcard { margin: 0 auto; } }
    @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

    .cc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
    .cc-live { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ruby); }
    .cc-live .ld { width: 8px; height: 8px; border-radius: 50%; background: var(--ruby); animation: blink 1.4s ease-in-out infinite; }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
    .cc-time { font-size: .85rem; color: var(--ink-mute); font-feature-settings: "tnum" 1; }

    .cc-agent { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
    .avatar { position: relative; width: 64px; height: 64px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--magenta)); display: grid; place-items: center; color: #fff; box-shadow: 0 8px 20px rgba(83,58,253,.4); }
    .avatar svg { width: 28px; height: 28px; }
    .avatar::before, .avatar::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--indigo); opacity: 0; animation: ripple 2.4s ease-out infinite; }
    .avatar::after { animation-delay: 1.2s; }
    @keyframes ripple { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2); opacity: 0; } }
    .cc-name { font-weight: 500; color: var(--ink); font-size: 1.02rem; }
    .cc-sub { font-size: .88rem; color: var(--ink-mute); font-weight: 400; }

    .wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 44px; margin-bottom: 22px; }
    .wave i { display: block; width: 4px; height: 8px; border-radius: 9999px; background: linear-gradient(180deg, var(--indigo), var(--magenta)); animation: wf 1.1s ease-in-out infinite; }
    .wave i:nth-child(10n+1){ animation-delay: -1.00s } .wave i:nth-child(10n+2){ animation-delay: -0.80s }
    .wave i:nth-child(10n+3){ animation-delay: -0.60s } .wave i:nth-child(10n+4){ animation-delay: -0.40s }
    .wave i:nth-child(10n+5){ animation-delay: -0.20s } .wave i:nth-child(10n+6){ animation-delay: -1.00s }
    .wave i:nth-child(10n+7){ animation-delay: -0.80s } .wave i:nth-child(10n+8){ animation-delay: -0.60s }
    .wave i:nth-child(10n+9){ animation-delay: -0.40s } .wave i:nth-child(10n){   animation-delay: -0.20s }
    @keyframes wf { 0%,100% { height: 8px; opacity: .5; } 50% { height: 32px; opacity: 1; } }

    .cc-foot { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--ink-mute); border-top: 1px solid var(--hairline); padding-top: 16px; margin-top: auto; }
    .cc-foot svg { width: 16px; height: 16px; color: var(--mint); flex: 0 0 auto; }
    .cc-foot strong { color: var(--ink-2); font-weight: 500; }

    /* Multi-scene showcase (PBX → Queue → Dialer → Fax) */
    .cc-stage { position: relative; min-height: 246px; }
    .scene { position: absolute; inset: 0; display: flex; flex-direction: column; opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; pointer-events: none; }
    .scene.active { opacity: 1; transform: translateY(0); }
    .sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
    .sc-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
    .sc-tag .ld { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: blink 1.4s ease-in-out infinite; }
    .sc-meta { font-size: .8rem; color: var(--ink-mute); font-feature-settings: "tnum" 1; }
    .t-live { color: var(--ruby); } .t-queue { color: var(--indigo); } .t-dial { color: #0ea5a0; } .t-fax { color: var(--magenta); }

    .cc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }
    .stat { background: rgba(255,255,255,.55); border: 1px solid var(--hairline); border-radius: 11px; padding: 11px 13px; }
    .stat .k { font-size: .72rem; color: var(--ink-mute); margin-bottom: 2px; }
    .stat .v { font-size: 1.3rem; font-weight: 500; color: var(--ink); line-height: 1.1; font-feature-settings: "tnum" 1; }
    .stat .v small { font-size: .82rem; color: var(--ink-mute); font-weight: 400; }

    .bar { height: 8px; border-radius: 9999px; background: var(--hairline); overflow: hidden; margin: 14px 0 2px; }
    .bar > span { display: block; height: 100%; border-radius: 9999px; background: linear-gradient(90deg, var(--indigo), var(--magenta)); }

    .file { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.55); border: 1px solid var(--hairline); border-radius: 13px; padding: 15px; }
    .file .fic { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 11px; background: color-mix(in srgb, var(--magenta) 14%, transparent); color: var(--magenta); display: grid; place-items: center; }
    .file .fic svg { width: 22px; height: 22px; }

    /* Sections */
    .section { padding: 84px 0; }
    .section-head { text-align: center; max-width: 56ch; margin: 0 auto 52px; }
    .section-head h2 { margin-bottom: 14px; }
    .section-head p { color: var(--ink-mute); margin: 0; font-size: 1.1rem; font-weight: 400; }

    /* Pricing grid */
    .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
    @media (max-width: 980px) { .grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
    /* keep the 5 visible rows a uniform height so toggles & buttons line up */
    .card > .feats { min-height: 160px; align-content: start; }

    .card { position: relative; display: flex; flex-direction: column; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-1); transition: transform .16s ease, box-shadow .16s ease; }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
    .card.featured { background: var(--dark-900); border-color: transparent; box-shadow: var(--shadow-3); color: #eaf0ff; }
    .card.featured h3 { color: #fff; }

    .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--indigo-tint); color: var(--indigo); display: grid; place-items: center; margin-bottom: 18px; }
    .ic svg { width: 24px; height: 24px; }
    .featured .ic { background: rgba(255,255,255,.1); color: #c9c6ff; }

    .card h3 { margin-bottom: 6px; }
    .desc { margin: 0 0 22px; color: var(--ink-mute); font-size: .96rem; font-weight: 400; min-height: 2.9em; }
    .featured .desc { color: #aeb9e0; }

    .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--indigo), var(--magenta)); padding: 6px 15px; border-radius: 9999px; box-shadow: var(--shadow-2); }

    .price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 2px; }
    .price .from { font-size: .82rem; font-weight: 400; color: var(--ink-mute); margin-right: 3px; }
    .featured .price .from { color: #aeb9e0; }
    .price .amt { font-size: 2.4rem; font-weight: 300; letter-spacing: -.03em; color: var(--ink); font-feature-settings: "tnum" 1, "ss01" 1; }
    .featured .price .amt { color: #fff; }
    .price .per { font-size: .9rem; color: var(--ink-mute); font-weight: 400; }
    .featured .price .per { color: #aeb9e0; }
    .price-sub { font-size: .82rem; color: var(--ink-mute); margin: 0 0 22px; font-weight: 400; }
    .featured .price-sub { color: #9aa6d4; }

    .feat-head { font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mute); margin: 6px 0 14px; }
    .featured .feat-head { color: #9aa6d4; }
    .feats { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 11px; }
    .feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; font-weight: 400; line-height: 1.45; color: var(--ink-2); }
    .featured .feats li { color: #d4ddf5; }
    .feats svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; color: var(--indigo); }
    .featured .feats svg { color: var(--mint); }

    /* Expandable extra features */
    .more { margin: 0 0 24px; }
    .more > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; font-weight: 500; color: var(--indigo); width: max-content; }
    .more > summary::-webkit-details-marker { display: none; }
    .more > summary:hover { color: var(--indigo-deep); }
    .more > summary svg { width: 14px; height: 14px; transition: transform .2s ease; }
    .more[open] > summary svg { transform: rotate(180deg); }
    .more .more-hide { display: none; }
    .more[open] .more-show { display: none; }
    .more[open] .more-hide { display: inline; }
    .more .feats { margin: 14px 0 0; }
    .featured .more > summary { color: #c9c6ff; }
    .featured .more > summary:hover { color: #fff; }
    .go { margin-top: auto; }
    .go .btn { display: block; text-align: center; }

    .incl { margin: 44px auto 0; max-width: 820px; text-align: center; background: var(--canvas-soft); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px 28px; color: var(--ink-mute); font-size: .96rem; font-weight: 400; }
    .incl strong { color: var(--ink); font-weight: 500; }

    /* Contact */
    .contact { background: var(--dark-900); color: #eaf0ff; position: relative; overflow: hidden; }
    .contact::before { content: ""; position: absolute; inset: -25% -10% auto -10%; height: 150%; pointer-events: none; background:
        radial-gradient(38% 60% at 10% 4%, rgba(245,233,212,.20) 0%, transparent 60%),
        radial-gradient(46% 60% at 90% 2%, rgba(249,107,238,.42) 0%, transparent 58%),
        radial-gradient(58% 75% at 72% 32%, rgba(83,58,253,.58) 0%, transparent 60%),
        radial-gradient(42% 60% at 2% 96%, rgba(110,231,183,.20) 0%, transparent 58%); }
    .contact .wrap { position: relative; padding: 88px 24px; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }
    .contact-info h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
    .contact-info p { color: #aeb9e0; font-weight: 400; font-size: 1.06rem; margin: 0 0 24px; max-width: 40ch; }
    .reassure { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
    .reassure li { display: flex; align-items: center; gap: 11px; color: #e7edff; font-size: 1rem; }
    .reassure svg { width: 20px; height: 20px; color: var(--mint); flex: 0 0 auto; }
    .contact-methods { list-style: none; padding: 22px 0 0; margin: 0; display: grid; gap: 13px; border-top: 1px solid rgba(255,255,255,.12); }
    .contact-methods li { display: flex; align-items: center; gap: 12px; color: #aeb9e0; font-size: .95rem; }
    .contact-methods svg { width: 19px; height: 19px; color: var(--indigo-soft); flex: 0 0 auto; }
    .contact-methods a { color: #aeb9e0; }
    .contact-methods a:hover { color: #fff; }

    .contact-form { position: relative; overflow: hidden; background: var(--canvas); border-radius: 20px; padding: 30px 28px 24px; box-shadow: var(--shadow-3); display: grid; gap: 15px; }
    .contact-form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--indigo), var(--magenta)); }
    .form-head h3 { font-size: 1.22rem; margin: 4px 0 3px; }
    .form-head p { font-size: .9rem; color: var(--ink-mute); margin: 0; font-weight: 400; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
    .field { display: grid; gap: 6px; }
    .field label { font-size: .8rem; font-weight: 500; color: var(--ink-2); }
    .field label .req { color: var(--ruby); margin-left: 1px; font-weight: 600; }
    .field input, .field select, .field textarea { font: inherit; font-size: .95rem; font-weight: 400; color: var(--ink); background: var(--canvas-soft); border: 1px solid var(--hairline); border-radius: 10px; padding: 12px 13px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
    .field textarea { min-height: 104px; resize: vertical; }
    .field input::placeholder, .field textarea::placeholder { color: #9aa6b8; }
    .field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--indigo); box-shadow: 0 0 0 3px color-mix(in srgb, var(--indigo) 16%, transparent); }
    .contact-form .btn { width: 100%; margin-top: 4px; background: linear-gradient(135deg, var(--indigo), var(--magenta)); box-shadow: 0 8px 22px rgba(83,58,253,.34); }
    .contact-form .btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
    .contact-form .btn[disabled] { opacity: .6; cursor: default; filter: none; transform: none; }
    .hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
    .form-status { font-size: .9rem; text-align: center; margin: 0; min-height: 1.1em; }
    .form-status.ok { color: #0e9f6e; }
    .form-status.err { color: var(--ruby); }
    .form-note { font-size: .8rem; color: var(--ink-mute); text-align: center; margin: -2px 0 0; }

    /* Success panel (replaces the form after a successful send) */
    .form-success { display: none; position: relative; overflow: hidden; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--canvas); border-radius: 20px; padding: 48px 32px; box-shadow: var(--shadow-3); min-height: 340px; }
    .form-success::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #10b981, var(--indigo)); }
    .form-success.show { display: flex; }
    .success-icon { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, #10b981, #0ea5a0); display: grid; place-items: center; margin-bottom: 22px; box-shadow: 0 12px 30px rgba(16,185,129,.42); animation: pop .55s cubic-bezier(.2,.9,.3,1.4) both; }
    .success-icon svg { width: 44px; height: 44px; color: #fff; }
    .success-icon svg path { stroke-dasharray: 26; stroke-dashoffset: 26; animation: draw .45s ease .28s forwards; }
    .form-success h3 { font-size: 1.5rem; margin: 0 0 8px; animation: riseIn .5s ease .15s both; }
    .form-success p { color: var(--ink-mute); font-weight: 400; margin: 0 0 22px; max-width: 32ch; animation: riseIn .5s ease .25s both; }
    .form-success .btn { animation: riseIn .5s ease .35s both; }
    @keyframes pop { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
    @keyframes draw { to { stroke-dashoffset: 0; } }
    @keyframes riseIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* Footer */
    footer { padding: 48px 0 30px; color: var(--ink-mute); font-size: .92rem; font-weight: 400; background: var(--canvas-soft); border-top: 1px solid var(--hairline); }
    .foot-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
    .foot-brand { max-width: 40ch; }
    .foot-brand .brand { margin-bottom: 10px; }
    .foot-note { margin: 0; color: var(--ink-mute); }
    .foot-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
    .foot-links a { color: var(--ink-2); font-weight: 500; }
    .foot-links a:hover { color: var(--indigo); }
    .foot-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--hairline); font-size: .86rem; }
    .foot-legal a { color: var(--ink-2); }
    .foot-legal a:hover { color: var(--indigo); }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .card:hover, .btn:hover { transform: none; }
      .hero-copy > *, .callcard { opacity: 1 !important; }
      .wave i { height: 18px !important; }
      .success-icon svg path { stroke-dashoffset: 0 !important; }
    }

/* ---- Product (package) pages ---- */
.hero-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin: 4px 0 26px; }
.hero-price .amt { font-size: 1.8rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); font-feature-settings: "tnum" 1; }
.hero-price .per { font-size: .96rem; color: var(--ink-mute); }
.hero-price .cc { font-size: .8rem; color: var(--ink-mute); }
.crumb { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--ink-mute); margin-bottom: 18px; }
.crumb a { color: var(--ink-mute); } .crumb a:hover { color: var(--indigo); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 36px; max-width: 900px; margin: 0 auto; list-style: none; padding: 0; }
@media (max-width: 680px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-grid li { display: flex; align-items: flex-start; gap: 11px; font-size: 1rem; color: var(--ink-2); line-height: 1.5; }
.feature-grid svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; color: var(--indigo); }
.feat-intro { text-align: center; color: var(--ink-mute); font-size: 1rem; margin: -28px auto 30px; }
.for-band { background: var(--canvas-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.for-band .wrap { padding: 44px 24px; text-align: center; }
.for-band h2 { margin-bottom: 10px; }
.for-band p { font-size: 1.1rem; color: var(--ink-2); max-width: 62ch; margin: 0 auto; font-weight: 400; }

.learn { display: block; text-align: center; margin-top: 11px; font-size: .88rem; font-weight: 500; color: var(--indigo); }
.learn:hover { color: var(--indigo-deep); }
.featured .learn { color: #c9c6ff; }
.featured .learn:hover { color: #fff; }

/* ---- Feature explainers (alternating left/right) ---- */
.explainers { padding: 30px 0 10px; }
.xrow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1000px; margin: 0 auto; padding: 52px 0; }
.xrow + .xrow { border-top: 1px solid var(--hairline); }
@media (max-width: 820px) { .xrow { grid-template-columns: 1fr; gap: 26px; padding: 38px 0; } .xrow .xtext { order: 1; } .xrow .xvisual { order: 2; } }
@media (min-width: 821px) { .xrow.flip .xtext { order: 2; } .xrow.flip .xvisual { order: 1; } }
.xtag { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--indigo); margin-bottom: 10px; }
.xtag svg { width: 16px; height: 16px; }
.xtext h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -.02em; margin: 0 0 12px; }
.xtext p { color: var(--ink-mute); font-size: 1.06rem; line-height: 1.7; margin: 0 0 14px; }
.xtext .mini { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.xtext .mini li { display: flex; gap: 9px; align-items: flex-start; font-size: .96rem; color: var(--ink-2); }
.xtext .mini svg { width: 18px; height: 18px; color: var(--indigo); flex: 0 0 auto; margin-top: 2px; }

/* generic visual card used inside explainers */
.vcard { position: relative; background: var(--canvas); border: 1px solid var(--hairline); border-radius: 16px; box-shadow: var(--shadow-2); padding: 22px; }
.vcard .vc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-size: .8rem; color: var(--ink-mute); font-weight: 500; }
.vrow { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--hairline); border-radius: 11px; background: var(--canvas-soft); margin-bottom: 9px; font-size: .95rem; color: var(--ink); }
.vrow:last-child { margin-bottom: 0; }
.vrow .key { width: 27px; height: 27px; border-radius: 7px; background: var(--indigo); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: .85rem; flex: 0 0 auto; }
.vrow .vico { color: var(--indigo); width: 20px; height: 20px; flex: 0 0 auto; }
.vrow .grow { flex: 1; }
.vrow small { color: var(--ink-mute); font-size: .82rem; }
.vbadge { display: inline-block; font-size: .72rem; font-weight: 600; color: var(--indigo); background: var(--indigo-tint); padding: 3px 10px; border-radius: 999px; }
.vbadge.green { color: #0e9f6e; background: color-mix(in srgb, #10b981 14%, transparent); }
.vnum { font-size: 1.05rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.vplay { width: 38px; height: 38px; border-radius: 50%; background: var(--indigo); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.vplay svg { width: 16px; height: 16px; }
.vtoggle { width: 40px; height: 23px; border-radius: 999px; background: #10b981; position: relative; flex: 0 0 auto; }
.vtoggle::after { content: ""; position: absolute; top: 3px; right: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; }
.vtoggle.off { background: var(--hairline); }
.vtoggle.off::after { right: auto; left: 3px; }

/* mid-page CTA */
.xcta { text-align: center; padding: 28px 0 6px; }
.xcta p { color: var(--ink-mute); margin: 0 0 14px; font-size: 1.05rem; }

/* ---- On-site chat widget (relays to Telegram) ---- */
.chat-fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer; background: linear-gradient(135deg, var(--indigo), var(--magenta)); color: #fff; box-shadow: 0 10px 26px rgba(83,58,253,.45); display: grid; place-items: center; transition: transform .15s ease; }
.chat-fab:hover { transform: translateY(-2px) scale(1.04); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab .chat-x { display: none; }
.chat-fab.open .chat-bubble-ico { display: none; }
.chat-fab.open .chat-x { display: block; }
.chat-fab .badge-dot { position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--ruby); color: #fff; font-size: .72rem; font-weight: 700; display: none; place-items: center; box-shadow: 0 0 0 2px #fff; }
.chat-fab.has-unread .badge-dot { display: grid; }

.chat-panel { position: fixed; right: 22px; bottom: 92px; z-index: 60; width: 360px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 130px); background: var(--canvas); border: 1px solid var(--hairline); border-radius: 18px; box-shadow: var(--shadow-3); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(12px) scale(.98); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 480px) { .chat-panel { right: 12px; left: 12px; width: auto; bottom: 86px; height: calc(100vh - 108px); } }
.chat-head { background: var(--dark-900); color: #fff; padding: 16px 18px; }
.chat-head .ch-title { font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; gap: 8px; }
.chat-head .ch-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px rgba(110,231,183,.3); }
.chat-head .ch-sub { font-size: .82rem; color: #aeb9e0; margin-top: 3px; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; background: var(--canvas-soft); display: flex; flex-direction: column; gap: 9px; }
.cmsg { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: .92rem; line-height: 1.45; white-space: pre-wrap; overflow-wrap: anywhere; }
.cmsg.agent { align-self: flex-start; background: #fff; border: 1px solid var(--hairline); color: var(--ink); border-bottom-left-radius: 5px; }
.cmsg.visitor { align-self: flex-end; background: var(--indigo); color: #fff; border-bottom-right-radius: 5px; }
.chat-foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--hairline); background: var(--canvas); }
.chat-foot input { flex: 1; font: inherit; font-size: .95rem; border: 1px solid var(--hairline); border-radius: 10px; padding: 10px 12px; color: var(--ink); }
.chat-foot input:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px color-mix(in srgb, var(--indigo) 16%, transparent); }
.chat-send { flex: 0 0 auto; width: 42px; border: none; border-radius: 10px; background: var(--indigo); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat-send:hover { background: var(--indigo-deep); }
.chat-send svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: reduce) { .chat-panel, .chat-fab { transition: none; } }

.chat-intro { padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--canvas-soft); flex: 1; }
.chat-intro p { margin: 0 0 4px; font-size: .95rem; color: var(--ink-2); }
.chat-intro input { font: inherit; font-size: .95rem; border: 1px solid var(--hairline); border-radius: 10px; padding: 11px 12px; color: var(--ink); }
.chat-intro input:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px color-mix(in srgb, var(--indigo) 16%, transparent); }
.chat-intro .btn { width: 100%; }
.ci-err { color: var(--ruby); font-size: .82rem; min-height: 1em; }
.contact-methods .open-chat { cursor: pointer; }
.chat-foot[hidden] { display: none; }

/* Make the two non-featured package cards more visible on the white section */
.card:not(.featured) { background: var(--canvas-soft); border-color: color-mix(in srgb, var(--indigo) 13%, var(--hairline)); }

/* Product pages: soft section bg so the white visual cards stand out */
.explainers { background: var(--canvas-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 40px 0 30px; }
.vcard { border-color: color-mix(in srgb, var(--indigo) 13%, var(--hairline)); }
