:root {
    --primary: #05b6e6;
    --primary-dark: #0b8fb4;
    --dark: #152630;
    --ink: #0f172a;
    --muted: #64748b;
    --light: #f5fbfd;
    --border: rgba(148, 163, 184, .24);
    --shadow: 0 28px 80px rgba(15, 23, 42, .16);
    --font-main: "Hauora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: 0; }
.container { width: min(100% - 48px, 1240px); margin-inline: auto; }
.icon { width: 28px; height: 28px; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    padding: 18px 0;
    transition: background .25s ease, padding .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
    padding: 10px 0;
    background: rgba(6, 23, 36, .78);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: 172px; height: auto; }
.site-header .brand-logo { width: 198px; }
.nav { display: flex; align-items: center; gap: 34px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 800; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: #fff; }
.header-actions { display: flex; gap: 12px; align-items: center; }
.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.74);
}
.language-switcher a {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 32px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    touch-action: manipulation;
    transition: background .18s ease, color .18s ease;
}
.language-switcher a:hover,
.language-switcher a.is-active {
    background: #fff;
    color: var(--dark);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 950;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 18px 42px rgba(5, 182, 230, .28); }
.btn-white { background: #fff; color: var(--dark); }
.btn-outline { border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.04); }
.btn-dark { background: var(--dark); color: #fff; }
.btn:hover { transform: translateY(-2px); }
.btn-white:hover { background: var(--primary); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-close { display: none; }
.mobile-panel { display: none; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: 112px 0 36px;
    background:
        radial-gradient(circle at 74% 32%, rgba(5, 182, 230, .28), transparent 36%),
        linear-gradient(135deg, #061724 0%, #152630 48%, #0a3340 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 0 0 26px 26px;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.13) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 86%);
}
.hero-aurora {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: .6;
    animation: drift 9s ease-in-out infinite alternate;
}
.hero-aurora-one { width: 440px; height: 440px; right: 10%; top: 20%; background: rgba(5, 182, 230, .6); }
.hero-aurora-two { width: 360px; height: 360px; left: -6%; top: 18%; background: rgba(103, 232, 249, .34); animation-delay: -3s; }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 36px; align-items: center; min-height: calc(100svh - 148px); }
.badge, .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cffafe;
    border: 1px solid rgba(5, 182, 230, .5);
    background: rgba(5, 182, 230, .1);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
}
.badge svg { width: 16px; height: 16px; }
.hero h1 {
    margin: 28px 0 0;
    max-width: 820px;
    font-size: clamp(38.4px, 3.76vw, 65.6px);
    line-height: .98;
    font-weight: 950;
}
.hero h1 span { color: var(--primary); }
.hero p { max-width: 720px; margin: 28px 0 0; color: rgba(203,213,225,.72); font-size: 20px; line-height: 1.5; }
.hero-live {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 760px;
    margin-top: 28px;
    color: rgba(203,213,225,.72);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 800;
}
.hero-live i {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: #68db7c;
    box-shadow: 0 0 0 8px rgba(104,219,124,.1);
}
.hero-live strong { color: #fff; }

.hero-visual { min-width: 0; }
.hero-orbit {
    position: relative;
    --orbit-size: 470px;
    min-height: 560px;
}
.hero-orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--orbit-size);
    height: var(--orbit-size);
    border: 1px dashed rgba(255,255,255,.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.hero-chatbot-signal {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: min(72%, 360px);
    min-height: 210px;
    padding: 30px 28px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06)),
        radial-gradient(circle at 50% 0%, rgba(5,182,230,.38), transparent 62%);
    box-shadow: 0 36px 90px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.16);
    text-align: center;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(18px);
}
.hero-chatbot-signal::before {
    content: "";
    position: absolute;
    inset: -24px;
    z-index: -1;
    border-radius: 42px;
    background: radial-gradient(circle, rgba(5,182,230,.28), transparent 68%);
    filter: blur(10px);
}
.signal-kicker {
    color: #9beafe;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.signal-title {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: .92;
    font-weight: 950;
}
.signal-subtitle {
    margin-top: 8px;
    color: #67e8f9;
    font-size: clamp(22px, 2.1vw, 32px);
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}
.voice-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 44px;
    margin-top: 20px;
}
.voice-wave span {
    width: 7px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #67e8f9);
    box-shadow: 0 0 22px rgba(103,232,249,.45);
    animation: voice-pulse 1.15s ease-in-out infinite;
}
.voice-wave span:nth-child(2) { animation-delay: -.18s; }
.voice-wave span:nth-child(3) { animation-delay: -.36s; }
.voice-wave span:nth-child(4) { animation-delay: -.54s; }
.voice-wave span:nth-child(5) { animation-delay: -.72s; }
.voice-wave span:nth-child(6) { animation-delay: -.9s; }
.signal-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .08em;
    background: rgba(6,23,36,.72);
    box-shadow: 0 22px 52px rgba(0,0,0,.26);
    backdrop-filter: blur(14px);
    animation: float-soft 5.6s ease-in-out infinite;
}
.signal-chip svg { width: 21px; height: 21px; color: #67e8f9; }
.signal-chip-text { left: 4%; top: 25%; }
.signal-chip-voice { right: 3%; bottom: 22%; animation-delay: -2.4s; }
.integration-strip { padding: 34px 0; background: #f8fafc; border-bottom: 1px solid #e2e8f0; text-align: center; }
.eyebrow { margin: 0 0 20px; color: #64748b; font-size: 12px; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.logo-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.integration-pill {
    display: grid;
    place-items: center;
    gap: 9px;
    min-height: 112px;
    padding: 16px 10px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 18px;
    background: #fff;
    color: #1e293b;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 4px 18px rgba(15,23,42,.05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.integration-pill:hover {
    transform: translateY(-5px);
    border-color: rgba(5,182,230,.34);
    box-shadow: 0 18px 45px rgba(15,23,42,.09);
}
.integration-logo {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: #fff;
    font-weight: 950;
    line-height: 1;
}
.integration-logo svg { width: 25px; height: 25px; }
.integration-logo--woo { width: 68px; background: #7f54b3; font-size: 19px; letter-spacing: -.04em; }
.integration-logo--magento { background: #f26322; font-size: 29px; }
.integration-logo--wordpress { background: #21759b; font-family: Georgia, serif; font-size: 29px; }
.integration-logo--icon { background: linear-gradient(135deg, var(--dark), var(--primary-dark)); }
.integration-logo--csv { background: #16a34a; font-size: 16px; }
.integration-logo--openai {
    overflow: hidden;
    background: #111827;
}
.integration-logo--openai i {
    position: absolute;
    width: 27px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 999px;
    transform-origin: 50% 50%;
}
.integration-logo--openai i:nth-child(1) { rotate: 0deg; }
.integration-logo--openai i:nth-child(2) { rotate: 60deg; }
.integration-logo--openai i:nth-child(3) { rotate: 120deg; }
.integration-pill span:last-child {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.section { padding: 104px 0; }
.section-title { max-width: 820px; margin: 0 auto; text-align: center; }
.section-title .kicker { color: var(--primary-dark); border-color: rgba(5,182,230,.24); background: rgba(5,182,230,.08); }
.section-title h2 { margin: 18px 0 0; font-size: clamp(36px, 4.2vw, 62px); line-height: 1.06; font-weight: 950; color: var(--ink); }
.section-title p { margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.feature-grid, .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 62px; }
.feature-card, .benefit {
    position: relative;
    overflow: hidden;
    min-height: 290px;
    padding: 32px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #f8fbfd);
    box-shadow: 0 18px 60px rgba(15,23,42,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card::after, .benefit::after {
    content: "";
    position: absolute;
    inset: auto -20% -38% -20%;
    height: 120px;
    background: radial-gradient(circle, rgba(5,182,230,.16), transparent 70%);
    opacity: 0;
    transition: opacity .22s ease;
}
.feature-card:hover, .benefit:hover { transform: translateY(-7px); border-color: rgba(5,182,230,.34); box-shadow: var(--shadow); }
.feature-card:hover::after, .benefit:hover::after { opacity: 1; }
.feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: #e8faff;
    color: var(--primary-dark);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3, .benefit h3 { margin: 0; font-size: 23px; line-height: 1.18; font-weight: 950; color: var(--ink); }
.feature-card p, .benefit p { margin: 16px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.product-sections { padding: 36px 0 76px; }
.product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; padding: 62px 0; }
.product-row + .product-row { border-top: 1px solid #e2e8f0; }
.product-row--reverse .product-copy { order: 2; }
.product-row--reverse .product-visual { order: 1; }
.label { display: inline-flex; padding: 9px 18px; border-radius: 999px; background: var(--label); color: #fff; font-size: 15px; font-weight: 950; margin-bottom: 24px; }
.product-copy h2 { max-width: 650px; margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.1; color: var(--ink); font-weight: 950; }
.product-copy p { max-width: 700px; margin: 24px 0 0; color: #334155; font-size: 19px; line-height: 1.8; }
.bullet-list { display: grid; gap: 14px; margin-top: 30px; }
.bullet { display: flex; align-items: center; gap: 12px; color: #475569; font-size: 17px; font-weight: 800; }
.bullet svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--primary); }

.chat-mockup {
    position: relative;
    width: min(100%, 476px);
    margin: 0 auto;
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--accent), #fff 35%), transparent 42%),
        linear-gradient(145deg, #e8faff, #fff 52%, #f1f5f9);
    padding: 30px;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
}
.mockup-glass {
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,.34);
    filter: blur(18px);
}
.chat-window { position: relative; overflow: hidden; border-radius: 28px; background: #fff; box-shadow: 0 28px 70px rgba(15,23,42,.15); }
.chat-header { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid #f1f5f9; }
.chat-logo { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 14px; background: var(--dark); color: var(--primary); }
.chat-logo-icon { width: 20px; height: 20px; }
.chat-brand { color: var(--dark); font-weight: 950; }
.chat-bot { color: #94a3b8; font-size: 12px; font-weight: 800; }
.chat-status { margin-left: auto; width: 10px; height: 10px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,.13); }
.chat-body { display: grid; gap: 16px; padding: 20px; }
.bubble { padding: 12px 16px; border-radius: 18px; font-size: 14px; line-height: 1.55; }
.bubble-user { max-width: 82%; margin-left: auto; color: #fff; border-top-right-radius: 6px; font-weight: 750; background: var(--accent); }
.bubble-bot { max-width: 88%; background: #f1f5f9; color: #334155; border-top-left-radius: 6px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-card { padding: 12px; border: 1px solid #f1f5f9; border-radius: 18px; background: #fff; box-shadow: 0 4px 16px rgba(15,23,42,.06); }
.product-image { display: block; width: 100%; height: 82px; border-radius: 12px; object-fit: cover; object-position: center; background: #f8fafc; }
.product-title { margin-top: 12px; font-size: 12px; font-weight: 950; }
.product-meta { margin-top: 3px; color: #64748b; font-size: 11px; }
.typing { width: max-content; display: flex; gap: 5px; padding: 12px 14px; border-radius: 999px; background: #f1f5f9; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: #94a3b8; animation: typing 1s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }

.stats { padding: 78px 0; }
.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 10%, rgba(5,182,230,.28), transparent 32%),
        linear-gradient(135deg, #061724, #152630);
    color: #fff;
    padding: 62px 70px;
    box-shadow: var(--shadow);
}
.stat { display: flex; gap: 18px; align-items: flex-start; }
.stat svg { flex: 0 0 40px; width: 40px; height: 40px; margin-top: 8px; color: var(--primary); }
.stat-number { font-size: clamp(42px, 4.8vw, 58px); line-height: 1; font-weight: 950; }
.stat p { margin: 12px 0 0; color: rgba(255,255,255,.78); font-size: 19px; line-height: 1.4; font-weight: 800; }

.ecosystem {
    position: relative;
    overflow: hidden;
    background: var(--light);
}
.ecosystem::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(5,182,230,.12) 1px, transparent 0);
    background-size: 26px 26px;
}
.ecosystem .container { position: relative; }
.evolution {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 34px;
    align-items: center;
    margin-bottom: 88px;
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 82% 18%, rgba(5,182,230,.2), transparent 34%),
        linear-gradient(135deg, #061724, #152630);
    color: #fff;
    box-shadow: var(--shadow);
}
.evolution .kicker {
    border-color: rgba(255,255,255,.26);
    background: rgba(255,255,255,.1);
    color: #a5f3fc;
}
.evolution h2 {
    max-width: 720px;
    margin: 20px 0 0;
    font-size: clamp(32px, 3.7vw, 54px);
    line-height: 1.08;
    font-weight: 950;
}
.evolution p {
    max-width: 700px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.74);
    font-size: 18px;
    line-height: 1.72;
}
.evolution-panel {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
}
.release-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(5,182,230,.16);
    color: #cffafe;
    font-size: 13px;
    font-weight: 950;
}
.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.55);
    animation: pulse 1.8s ease-out infinite;
}
.release-list {
    display: grid;
    gap: 12px;
}
.release-list div {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
}
.release-list strong {
    color: #fff;
    font-size: 15px;
    font-weight: 950;
}
.release-list span {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}
.coming-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.coming-chips span {
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 950;
}
.ecosystem-panel { max-width: 980px; margin: 56px auto 0; padding: 28px; border-radius: 30px; background: #061724; box-shadow: var(--shadow); }
.ecosystem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ecosystem-card {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 178px;
    padding: 26px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: #fff;
    color: var(--dark);
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    transition: transform .22s ease, box-shadow .22s ease;
}
.ecosystem-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.ecosystem-card strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.1;
    font-weight: 950;
}
.ecosystem-card span:last-child {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 850;
}

.pricing {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: 72px 0 34px;
    background:
        radial-gradient(circle at 20% 20%, rgba(5, 182, 230, .14), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f5fbfd 100%);
}
.pricing .section-title h2 { font-size: clamp(32px, 3.4vw, 46px); }
.pricing .section-title p { margin-top: 14px; font-size: 16px; line-height: 1.55; }
.pricing-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: .45;
    pointer-events: none;
}
.pricing-orb-one { width: 360px; height: 360px; right: -80px; top: 120px; background: rgba(5, 182, 230, .38); }
.pricing-orb-two { width: 280px; height: 280px; left: -90px; bottom: 140px; background: rgba(21, 38, 48, .18); }
.pricing-shell {
    position: relative;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 34px;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.pricing-control {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 16px;
    align-items: start;
}
.pricing-tabs {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 14px;
    border-radius: 26px;
    background: #061724;
}
.pricing-tabs button {
    min-height: 48px;
    padding: 11px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.72);
    text-align: left;
    font-weight: 950;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.pricing-tabs button:hover,
.pricing-tabs button.is-active {
    background: var(--primary);
    color: #fff;
    transform: translateX(4px);
}
.pricing-estimator {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 0%, rgba(5,182,230,.18), transparent 34%),
        #fff;
    border: 1px solid rgba(226,232,240,.95);
}
.estimator-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}
.estimator-head span {
    display: block;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.estimator-head strong {
    display: block;
    margin-top: 5px;
    color: var(--ink);
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.1;
    font-weight: 950;
}
.estimator-price {
    min-width: 150px;
    padding: 11px 16px;
    border-radius: 20px;
    background: #e8faff;
    color: var(--dark);
    text-align: right;
}
.estimator-price span { display: block; font-size: 30px; line-height: 1; font-weight: 950; }
.estimator-price small { color: var(--muted); font-size: 13px; font-weight: 900; }
.range-field {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 900;
}
.range-field span {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}
.range-field strong { color: var(--primary-dark); }
.range-field input {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}
.range-field.is-hidden { display: none; }
.voice-addon {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 18px;
    background: rgba(248,250,252,.82);
    color: #334155;
    cursor: pointer;
}
.voice-addon input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.voice-addon-switch {
    position: relative;
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background .2s ease;
}
.voice-addon-switch::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(15,23,42,.18);
    transition: transform .2s ease;
}
.voice-addon input:checked + .voice-addon-switch {
    background: var(--primary);
}
.voice-addon input:checked + .voice-addon-switch::after {
    transform: translateX(20px);
}
.voice-addon-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.voice-addon-copy strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.15;
    font-weight: 950;
}
.voice-addon-copy small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}
.estimator-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #061724;
    color: rgba(255,255,255,.78);
    line-height: 1.5;
    font-weight: 850;
}
.estimator-result a {
    display: block;
    color: inherit;
}
.estimator-result strong { color: #fff; }
.estimator-cta {
    flex: 0 0 auto;
    padding: 8px 13px;
    border-radius: 999px;
    background: #fff;
    color: var(--dark) !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    transition: transform .18s ease, background .18s ease;
}
.estimator-cta:hover {
    transform: translateY(-1px);
    background: #e8faff;
}
.estimator-result.is-custom {
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.estimator-result.is-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(5,182,230,.22);
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.pricing-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(226,232,240,.96);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(15,23,42,.06);
    transition: opacity .2s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,182,230,.14), transparent 45%);
    opacity: 0;
    transition: opacity .22s ease;
}
.pricing-card > * { position: relative; }
.pricing-card.is-hidden { display: none; }
.pricing-card.is-featured { border-color: rgba(5,182,230,.38); box-shadow: 0 24px 70px rgba(5, 182, 230, .15); }
.pricing-card.is-active {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 30px 90px rgba(5, 182, 230, .22);
}
.pricing-card.is-active::before { opacity: 1; }
.plan-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.plan-top span,
.plan-top em {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    font-style: normal;
}
.plan-top span { background: #e8faff; color: var(--primary-dark); }
.plan-top em { background: var(--dark); color: #fff; }
.pricing-card h3 { margin: 0; color: var(--ink); font-size: 21px; line-height: 1.15; font-weight: 950; }
.plan-price { color: var(--ink); font-size: 36px; line-height: 1; font-weight: 950; }
.plan-price span { color: var(--muted); font-size: 15px; font-weight: 850; }
.plan-specs {
    display: grid;
    gap: 7px;
}
.plan-specs div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid #eef2f7;
}
.plan-specs span { color: var(--muted); font-size: 13px; font-weight: 900; }
.plan-specs strong { color: #334155; text-align: right; font-size: 14px; font-weight: 950; }
.plan-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 950;
}
.plan-link svg { width: 18px; height: 18px; transition: transform .18s ease; }
.plan-link:hover svg { transform: translateX(4px); }
.custom-offer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 13px 18px;
    border-radius: 22px;
    background: #061724;
    color: rgba(255,255,255,.76);
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}
.custom-offer svg { flex: 0 0 24px; width: 24px; height: 24px; color: var(--primary); }
.custom-offer strong { color: #fff; }
.custom-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(6,23,36,.18);
}

.faq { max-width: 980px; }
.faq-list { margin-top: 48px; border-top: 1px solid #e2e8f0; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 27px 0; background: transparent; color: var(--dark); text-align: left; font-size: 20px; line-height: 1.35; font-weight: 950; }
.faq-item button span { flex: 0 0 auto; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #e8faff; color: var(--primary-dark); font-size: 30px; line-height: 1; transition: transform .2s ease; }
.faq-item.is-open button span { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 0 64px 26px 0; }

.footer {
    background:
        radial-gradient(circle at 82% 8%, rgba(5,182,230,.16), transparent 32%),
        #061724;
    color: #cbd5e1;
    padding: 78px 0 42px;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(150px, .55fr) minmax(300px, 1.05fr) minmax(240px, .85fr);
    gap: 34px;
    align-items: start;
}
.footer .brand-logo { width: 172px; }
.footer p { max-width: 390px; margin: 18px 0 0; color: #94a3b8; font-size: 15px; line-height: 1.7; }
.footer-powered {
    margin-top: 34px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.footer .footer-family {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
    align-items: center;
}
.footer .footer-family-item {
    display: inline-flex;
    align-items: center;
    max-width: max-content;
}
.footer .footer-family-logo {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 72px;
    object-fit: contain;
}
.footer .footer-family-logo--group { max-width: 190px; }
.footer-column {
    padding-top: 8px;
}
.footer-title {
    margin-bottom: 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.footer-links {
    display: grid;
    gap: 10px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 560;
}
.footer-links a,
.footer-offices a {
    color: inherit;
    transition: color .18s ease;
}
.footer-links a:hover,
.footer-offices a:hover {
    color: #67e8f9;
}
.footer-offices {
    display: grid;
    gap: 18px;
}
.footer-offices address {
    display: grid;
    gap: 5px;
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
    font-style: normal;
    line-height: 1.5;
}
.footer-offices address strong {
    color: #fff;
    font-weight: 800;
}
.footer-offices address a {
    width: max-content;
    color: #cbd5e1;
    font-weight: 750;
}
.footer-company {
    display: grid;
    gap: 6px;
    max-width: 310px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}
.footer-company strong {
    color: #cbd5e1;
    font-weight: 650;
}
.footer-company span {
    font-size: 12px;
    font-weight: 550;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}
.footer-bottom a {
    color: #94a3b8;
    font-weight: 650;
    transition: color .18s ease;
}
.footer-bottom a:hover {
    color: #67e8f9;
}

.contact-page {
    min-height: 100svh;
    background: #f5fbfd;
}
.contact-main {
    min-height: 100svh;
}
.privacy-page {
    min-height: 100svh;
    background: #f8fafc;
}
.privacy-main {
    min-height: 100svh;
}
.privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 74px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 20%, rgba(5,182,230,.28), transparent 34%),
        linear-gradient(135deg, #061724, #152630);
}
.privacy-hero h1 {
    max-width: 880px;
    margin: 24px 0 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    font-weight: 950;
}
.privacy-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(203,213,225,.78);
    font-size: 19px;
    line-height: 1.6;
    font-weight: 760;
}
.privacy-section {
    padding: 56px 0 86px;
}
.privacy-article {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(26px, 4vw, 54px);
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(15,23,42,.08);
}
.privacy-article h2 {
    margin: 0 0 28px;
    color: var(--ink);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    font-weight: 950;
}
.legal-content {
    color: #334155;
    font-size: 16px;
    line-height: 1.75;
}
.legal-content h3 {
    margin: 46px 0 16px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
    color: var(--ink);
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.18;
    font-weight: 950;
}
.legal-content h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.legal-content h4 {
    margin: 26px 0 8px;
    color: var(--primary-dark);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
}
.legal-content p {
    margin: 0 0 16px;
}
.legal-content p:last-child {
    margin-bottom: 0;
}
.contact-hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: 150px 0 80px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 24%, rgba(5,182,230,.24), transparent 34%),
        linear-gradient(135deg, #061724 0%, #152630 54%, #0a3340 100%);
}
.contact-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 90%);
}
.contact-layout {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 52px;
    align-items: center;
}
.contact-copy h1 {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    font-weight: 950;
}
.contact-copy p {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 20px;
    line-height: 1.72;
}
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}
.contact-method {
    display: grid;
    gap: 8px;
    min-width: 0;
    min-height: 136px;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    color: #fff;
    backdrop-filter: blur(14px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.contact-method:hover {
    transform: translateY(-2px);
    border-color: rgba(5,182,230,.52);
    background: rgba(255,255,255,.12);
}
.contact-method svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}
.contact-method span {
    color: rgba(255,255,255,.64);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.contact-method strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 950;
    white-space: nowrap;
}
.office-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.office-list address {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    color: rgba(255,255,255,.72);
    font-style: normal;
    font-weight: 760;
    line-height: 1.45;
}
.office-list svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: #99f6e4;
}
.office-list strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 950;
}
.contact-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    color: var(--dark);
    box-shadow: 0 38px 110px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
}
.interest-form {
    display: grid;
    gap: 18px;
}
.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: #061724;
    color: #fff;
}
.form-head span {
    color: #a5f3fc;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.form-head strong {
    text-align: right;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 950;
}
.interest-form label {
    display: grid;
    gap: 8px;
}
.interest-form label > span {
    color: #334155;
    font-size: 13px;
    font-weight: 950;
}
.interest-form input,
.interest-form select,
.interest-form textarea {
    width: 100%;
    border: 1px solid #dbe5ef;
    border-radius: 16px;
    background: #f8fafc;
    color: var(--ink);
    padding: 14px 15px;
    font-weight: 800;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.interest-form textarea {
    resize: vertical;
    min-height: 126px;
    line-height: 1.5;
}
.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(5,182,230,.14);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.interest-form .btn {
    width: 100%;
    margin-top: 4px;
}
.form-disclaimer {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    font-weight: 800;
}
.form-error {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(220, 38, 38, .24);
    border-radius: 16px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 760;
}
.form-error strong {
    color: #7f1d1d;
    font-weight: 950;
}
.form-success {
    display: grid;
    justify-items: start;
    gap: 18px;
    padding: 18px;
}
.form-success > svg {
    width: 56px;
    height: 56px;
    color: #22c55e;
}
.form-success h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 950;
}
.form-success p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 760;
}
.form-success p strong {
    color: var(--dark);
}
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { rotate: 360deg; } }
@keyframes voice-pulse {
    0%, 100% { height: 14px; opacity: .72; }
    50% { height: 38px; opacity: 1; }
}
@keyframes drift { to { transform: translate3d(24px, -18px, 0) scale(1.08); } }
@keyframes float-soft { 50% { translate: 0 -12px; } }
@keyframes float { 50% { margin-top: -10px; } }
@keyframes typing { 50% { transform: translateY(-4px); opacity: .55; } }
@keyframes pulse {
    70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

@media (max-width: 1120px) {
    .hero-layout, .product-row { grid-template-columns: 1fr; }
    .hero-layout { min-height: auto; padding-bottom: 28px; }
    .hero-copy { max-width: 840px; }
    .hero-orbit { max-width: 760px; margin: 0 auto; }
    .contact-layout { grid-template-columns: 1fr; }
    .product-row--reverse .product-copy, .product-row--reverse .product-visual { order: initial; }
    .feature-grid, .benefits-grid, .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .pricing-control { grid-template-columns: 1fr; }
    .evolution { grid-template-columns: 1fr; }
    .logo-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container { width: min(100% - 32px, 1240px); }
    .nav, .header-actions { display: none; }
    .menu-toggle { display: grid; place-items: center; }
    .site-header.is-open .menu-open { display: none; }
    .site-header.is-open .menu-close { display: block; }
    .mobile-panel {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 76px;
        display: grid;
        gap: 6px;
        padding: 18px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 24px;
        background: rgba(6, 23, 36, .94);
        color: #fff;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease;
    }
    .site-header.is-open .mobile-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .mobile-panel a:not(.btn) { padding: 14px 10px; font-weight: 900; }
    .mobile-panel .language-switcher {
        justify-self: center;
        width: max-content;
        margin: 8px auto 10px;
        padding: 5px;
    }
    .mobile-panel .language-switcher a {
        min-width: 46px;
        height: 40px;
        padding: 0 12px;
    }
    .brand-logo { width: 146px; }
    .site-header .brand-logo { width: 168px; }
    .hero { min-height: auto; padding: 112px 0 44px; }
    .pricing { min-height: auto; }
    .contact-hero { padding-top: 124px; }
    .hero h1 { font-size: clamp(28.8px, 8vw, 41.6px); line-height: 1.02; }
    .hero p { margin-top: 20px; font-size: 17px; line-height: 1.55; }
    .hero-live { margin-top: 24px; font-size: 15px; }
    .hero-orbit { min-height: 500px; transform: scale(.82); transform-origin: center top; margin-bottom: -78px; }
    .hero-chatbot-signal { width: min(78%, 360px); }
    .signal-chip-text { left: 8%; top: 22%; }
    .signal-chip-voice { right: 7%; bottom: 20%; }
    .feature-grid, .benefits-grid, .stats-panel, .ecosystem-grid, .footer-grid, .pricing-cards { grid-template-columns: 1fr; }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .logo-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-panel { padding: 40px 28px; border-radius: 26px; }
    .pricing-shell { padding: 16px; border-radius: 26px; }
    .pricing-tabs { grid-template-columns: 1fr 1fr; padding: 10px; border-radius: 22px; }
    .pricing-tabs button { min-height: 50px; text-align: center; padding: 12px; }
    .pricing-tabs button:hover,
    .pricing-tabs button.is-active { transform: translateY(-2px); }
    .estimator-head { display: grid; }
    .estimator-price { width: 100%; text-align: left; }
    .estimator-result { align-items: flex-start; flex-direction: column; }
    .custom-offer { align-items: flex-start; }
    .evolution { padding: 24px; border-radius: 26px; margin-bottom: 64px; }
    .contact-card { padding: 18px; border-radius: 26px; }
    .contact-methods { grid-template-columns: 1fr; }
    .contact-method { min-height: 0; }
    .form-grid { grid-template-columns: 1fr; }
    .form-head { display: grid; }
    .form-head strong { text-align: left; }
    .chat-mockup { padding: 18px; }
    .section { padding: 78px 0; }
    .product-row { padding: 46px 0; gap: 34px; }
    .faq-item button { font-size: 18px; }
}

@media (max-width: 560px) {
    .btn { width: 100%; }
    .hero h1 { font-size: clamp(27.2px, 7.76vw, 36.8px); }
    .hero-orbit { min-height: 430px; transform: scale(.68); margin-inline: -92px; margin-bottom: -118px; }
    .hero-chatbot-signal { width: 380px; min-height: 218px; }
    .signal-chip { min-height: 58px; padding: 13px 18px; }
    .signal-chip-text { left: 8%; top: 18%; }
    .signal-chip-voice { right: 6%; bottom: 18%; }
    .product-grid { grid-template-columns: 1fr; }
    .feature-card, .benefit { min-height: 0; padding: 26px; border-radius: 20px; }
    .ecosystem-panel { padding: 18px; border-radius: 24px; }
    .faq-item.is-open .faq-answer p { padding-right: 0; }
    .contact-copy h1 { font-size: clamp(34px, 10vw, 48px); }
    .contact-copy p { font-size: 17px; line-height: 1.55; }
}
