:root {
    --blue: #0b3f88;
    --blue-2: #1976df;
    --blue-3: #eaf3ff;
    --green: #36b84a;
    --green-2: #25a640;
    --green-3: #e9f9ed;
    --ink: #0d1b2a;
    --text: #24364a;
    --muted: #66768a;
    --line: #dce5ee;
    --soft: #f6f9fc;
    --white: #ffffff;
    --dark: #07182e;
    --shadow: 0 24px 70px rgba(9, 42, 84, .12);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
p { margin: 0; }
h1, h2, h3 { color: var(--ink); margin: 0; line-height: 1.12; }

.page-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: .16;
    background-image: linear-gradient(rgba(11,63,136,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11,63,136,.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 42%);
}
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 108px 0; }

.site-header {
    height: 82px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(220,229,238,.78);
    backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.btn) { color: #44566a; font-weight: 700; font-size: .9rem; transition: .2s ease; }
.main-nav > a:not(.btn):hover { color: var(--blue-2); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 25px; height: 2px; background: var(--ink); display: block; margin: 5px 0; border-radius: 99px; }

.btn {
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 850;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue-2), var(--green)); box-shadow: 0 12px 26px rgba(25,118,223,.22); }
.btn-primary:hover { box-shadow: 0 18px 34px rgba(25,118,223,.28); }
.btn-secondary { background: #fff; color: var(--blue); border-color: #cbd9e8; box-shadow: 0 8px 22px rgba(9,42,84,.06); }
.btn-small { min-height: 42px; padding: 11px 17px; font-size: .84rem; }
.btn-large { min-height: 54px; padding: 16px 24px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-2);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    font-size: .72rem;
}
.eyebrow > span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(54,184,74,.12); }
.eyebrow.light { color: #86c6ff; }

.hero { min-height: calc(100vh - 82px); display: flex; align-items: center; padding: 92px 0 100px; overflow: hidden; background: radial-gradient(circle at 12% 12%, rgba(25,118,223,.08), transparent 33%), radial-gradient(circle at 80% 22%, rgba(54,184,74,.08), transparent 31%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-orb-one { width: 350px; height: 350px; right: -180px; top: 35px; background: rgba(54,184,74,.08); }
.hero-orb-two { width: 280px; height: 280px; left: -160px; bottom: 0; background: rgba(25,118,223,.07); }
.hero-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.hero-copy h1 { margin: 20px 0 24px; font-size: clamp(3.15rem, 5.7vw, 5.45rem); letter-spacing: -.065em; max-width: 730px; }
.hero-copy h1 em { font-style: normal; background: linear-gradient(105deg, var(--blue-2), var(--green)); -webkit-background-clip: text; color: transparent; }
.hero-text { font-size: 1.14rem; max-width: 640px; color: #5b6b7e; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 27px; color: #536578; font-size: .82rem; font-weight: 760; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points i { font-style: normal; color: var(--green-2); }

.hero-visual { position: relative; padding: 38px 0 48px 22px; }
.dashboard-window { position: relative; z-index: 2; background: #fff; border: 1px solid #cfdae7; border-radius: 23px; box-shadow: 0 42px 100px rgba(11,63,136,.18); overflow: hidden; transform: perspective(1400px) rotateY(-4deg) rotateX(1deg); }
.dashboard-topbar { height: 52px; padding: 0 16px; border-bottom: 1px solid #e1e8f0; display: flex; align-items: center; justify-content: space-between; background: #fbfdff; color: #40536a; font-size: .72rem; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d6e1eb; }
.window-dots i:nth-child(1) { background: #ff716b; }
.window-dots i:nth-child(2) { background: #ffc85c; }
.window-dots i:nth-child(3) { background: #62cd74; }
.user-chip { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--blue-2), var(--green)); border-radius: 9px; font-weight: 900; }
.dashboard-layout { display: grid; grid-template-columns: 60px 1fr; min-height: 420px; }
.dashboard-sidebar { background: #092b5c; padding: 16px 0; display: flex; align-items: center; flex-direction: column; gap: 22px; }
.dashboard-sidebar img { width: 32px; height: 32px; object-fit: contain; margin-bottom: 10px; }
.dashboard-sidebar span { width: 22px; height: 22px; border-radius: 6px; border: 2px solid rgba(255,255,255,.35); }
.dashboard-sidebar span.active { background: rgba(54,184,74,.28); border-color: #58d36a; }
.dashboard-main { padding: 23px; min-width: 0; background: #f7faff; }
.dashboard-heading { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.dashboard-heading small { color: #7c8b9c; }
.dashboard-heading h3 { font-size: 1.05rem; margin-top: 3px; }
.dashboard-heading button { color: #fff; border: 0; padding: 9px 12px; border-radius: 8px; background: var(--blue-2); font-size: .66rem; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 20px 0 12px; }
.metric-grid article { padding: 13px; border: 1px solid #e3eaf1; border-radius: 12px; background: #fff; }
.metric-grid span, .metric-grid small { display: block; font-size: .58rem; color: #7b8998; }
.metric-grid strong { display: block; margin: 5px 0 2px; color: #12243b; font-size: 1.05rem; }
.metric-grid small { color: var(--green-2); font-weight: 800; }
.chart-panel { height: 170px; padding: 14px; border: 1px solid #e3eaf1; border-radius: 12px; background: #fff; }
.panel-title { display: flex; justify-content: space-between; font-size: .64rem; color: #778797; }
.panel-title strong { color: #293b50; }
.bar-chart { height: 112px; padding-top: 17px; display: flex; align-items: flex-end; gap: 10px; }
.bar-chart i { flex: 1; height: var(--bar); min-width: 10px; border-radius: 5px 5px 2px 2px; background: linear-gradient(to top, var(--blue-2), #67c97c); opacity: .9; }
.campaign-line { margin-top: 12px; padding: 11px; border: 1px solid #e3eaf1; border-radius: 12px; display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; background: #fff; }
.campaign-icon { width: 31px; height: 31px; border-radius: 9px; display: grid; place-items: center; background: var(--green-3); color: var(--green-2); font-weight: 900; }
.campaign-line strong, .campaign-line small { display: block; }
.campaign-line strong { font-size: .66rem; color: #23364c; }
.campaign-line small { color: #83909d; font-size: .55rem; }
.campaign-line b { color: var(--green-2); background: var(--green-3); border-radius: 99px; padding: 5px 8px; font-size: .55rem; }
.float-card { position: absolute; z-index: 4; border: 1px solid #d5e1eb; background: rgba(255,255,255,.95); box-shadow: 0 18px 45px rgba(9,42,84,.16); backdrop-filter: blur(10px); border-radius: 14px; }
.float-inbox { left: -12px; bottom: 5px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.float-inbox > span { color: var(--green); }
.float-inbox strong, .float-inbox small { display: block; }
.float-inbox strong { color: var(--ink); font-size: .76rem; }
.float-inbox small { color: var(--muted); font-size: .61rem; }
.float-automation { right: -18px; top: 92px; padding: 12px 15px; }
.float-automation small, .float-automation strong { display: block; }
.float-automation small { color: var(--muted); font-size: .62rem; }
.float-automation strong { color: var(--blue); font-size: 1.15rem; }

.capability-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfdff; }
.capability-row { min-height: 74px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; text-align: center; }
.capability-row span { color: #526579; font-size: .78rem; font-weight: 850; }
.capability-row span + span { border-left: 1px solid var(--line); }

.section-heading { max-width: 700px; }
.section-heading.centered { margin: 0 auto 55px; text-align: center; }
.section-heading h2, .solutions-copy h2, .standards-copy h2, .pricing-copy h2 { font-size: clamp(2.3rem, 4.2vw, 4.05rem); letter-spacing: -.055em; margin: 17px 0 20px; }
.section-heading p, .solutions-copy > p, .standards-copy > p, .pricing-copy > p { color: var(--muted); font-size: 1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c4d5e6; }
.feature-card.feature-highlight { background: linear-gradient(145deg, #082b5e, #0d4b96); border-color: transparent; }
.feature-card.feature-highlight h3, .feature-card.feature-highlight p { color: #fff; }
.feature-card.feature-highlight p { opacity: .76; }
.feature-card.feature-highlight > span { display: inline-block; margin-top: 18px; color: #72dd82; font-size: .75rem; font-weight: 850; }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 24px; color: var(--blue-2); background: linear-gradient(135deg, var(--blue-3), var(--green-3)); font-weight: 900; font-size: 1.05rem; }
.feature-highlight .feature-icon { color: #fff; background: rgba(255,255,255,.13); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: .9rem; }

.workflow-section { background: #f6f9fc; }
.workflow-section .section-heading { margin-bottom: 45px; }
.workflow-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.workflow-card { padding: 32px; min-height: 270px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: 0 15px 40px rgba(9,42,84,.06); }
.workflow-card > span { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--blue-2), var(--green)); font-weight: 900; }
.workflow-card h3 { margin: 26px 0 12px; font-size: 1.3rem; }
.workflow-card p { color: var(--muted); font-size: .91rem; }

.solutions-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.solution-tabs { display: flex; gap: 8px; margin: 32px 0 22px; border-bottom: 1px solid var(--line); }
.tab-btn { position: relative; border: 0; background: transparent; color: #718196; padding: 10px 5px 14px; margin-right: 20px; cursor: pointer; font-weight: 850; }
.tab-btn:after { content: ""; position: absolute; left: 0; bottom: -1px; height: 3px; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--blue-2), var(--green)); transition: .2s ease; }
.tab-btn.active { color: var(--blue); }
.tab-btn.active:after { width: 100%; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 1.3rem; margin-bottom: 9px; }
.tab-panel p { color: var(--muted); }
.tab-panel ul { list-style: none; padding: 0; margin: 18px 0 0; }
.tab-panel li { margin: 8px 0; color: #40536a; font-size: .9rem; }
.tab-panel li:before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px; }
.conversation-mockup { position: relative; border: 1px solid #d2deea; border-radius: 25px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.conversation-top { min-height: 70px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.conversation-top span { color: var(--green-2); background: var(--green-3); border-radius: 99px; padding: 5px 10px; font-size: .7rem; font-weight: 850; }
.conversation-body { min-height: 390px; padding: 28px 22px; background: linear-gradient(145deg, #f5f9fd, #f7fcf8); }
.chat-row { display: grid; grid-template-columns: 38px 1fr; gap: 11px; margin-bottom: 22px; }
.chat-row > span { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: var(--blue-2); font-size: .65rem; font-weight: 900; }
.chat-row.bot > span { background: var(--green); }
.chat-row.agent > span { background: var(--blue); }
.chat-row div { max-width: 84%; }
.chat-row small { color: #718196; font-size: .66rem; }
.chat-row p { margin-top: 4px; padding: 11px 13px; border: 1px solid #dee7ee; border-radius: 4px 14px 14px; color: #40536a; background: #fff; font-size: .82rem; }
.chat-row.agent { grid-template-columns: 1fr 38px; }
.chat-row.agent > span { grid-column: 2; }
.chat-row.agent div { grid-column: 1; grid-row: 1; justify-self: end; text-align: right; }
.chat-row.agent p { border-radius: 14px 4px 14px 14px; color: #fff; background: var(--blue); border-color: var(--blue); text-align: left; }
.conversation-footer { min-height: 70px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); }
.conversation-footer span { flex: 1; color: #9aa6b2; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: .78rem; }
.conversation-footer button { border: 0; color: #fff; background: var(--blue-2); border-radius: 9px; padding: 10px 15px; font-size: .75rem; font-weight: 800; }

.pricing-section { background: linear-gradient(145deg, #07182e, #0b3264); color: #fff; overflow: hidden; }
.pricing-section:after { content: ""; position: absolute; right: -220px; bottom: -290px; width: 590px; height: 590px; border-radius: 50%; background: rgba(54,184,74,.10); }
.pricing-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 90px; }
.pricing-copy h2 { color: #fff; }
.pricing-copy > p { color: #b4c2d1; max-width: 600px; margin-bottom: 30px; }
.pricing-card { background: #fff; color: var(--text); padding: 36px; border-radius: 25px; box-shadow: 0 40px 90px rgba(0,0,0,.22); }
.pricing-badge { display: inline-block; color: var(--green-2); background: var(--green-3); border-radius: 99px; padding: 7px 10px; font-size: .67rem; letter-spacing: .09em; font-weight: 900; }
.pricing-card h3 { margin: 18px 0 22px; font-size: 1.55rem; }
.pricing-card ul { list-style: none; margin: 0; padding: 0; }
.pricing-card li { padding: 11px 0; border-bottom: 1px solid #e7edf3; color: #516378; font-size: .88rem; }
.pricing-card li:before { content: "✓"; margin-right: 10px; color: var(--green-2); font-weight: 900; }
.price-note { margin-top: 22px; padding: 13px 14px; border-radius: 10px; color: #536578; background: #f3f7fb; font-size: .76rem; }
.price-note strong { color: var(--blue); }

.standards-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 85px; align-items: center; }
.standards-list { display: grid; gap: 13px; }
.standards-list article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.standards-list article > span { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--green-2); background: var(--green-3); font-weight: 900; }
.standards-list h3 { font-size: 1rem; margin-bottom: 4px; }
.standards-list p { color: var(--muted); font-size: .82rem; }

.faq-section { background: #f6f9fc; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.1fr; gap: 85px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-item button { width: 100%; min-height: 68px; padding: 17px 20px; border: 0; background: #fff; display: flex; justify-content: space-between; gap: 18px; text-align: left; color: var(--ink); cursor: pointer; font-weight: 850; }
.faq-item button b { color: var(--blue-2); font-size: 1.25rem; }
.faq-answer { display: none; padding: 0 20px 19px; }
.faq-item.active .faq-answer { display: block; }
.faq-answer p { color: var(--muted); font-size: .88rem; }

.quote-section { background: linear-gradient(140deg, #06172c, #0b3f88); color: #fff; overflow: hidden; }
.quote-section:before { content: ""; position: absolute; left: -230px; top: -280px; width: 580px; height: 580px; border-radius: 50%; background: rgba(54,184,74,.09); }
.quote-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.quote-copy h2 { color: #fff; font-size: clamp(2.7rem, 4.6vw, 4.7rem); letter-spacing: -.06em; margin: 18px 0 22px; }
.quote-copy > p { color: #b6c8dc; max-width: 570px; }
.quote-details { display: grid; gap: 16px; margin: 34px 0; }
.quote-details article { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; }
.quote-details article > span { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.24); font-size: .72rem; font-weight: 900; }
.quote-details strong, .quote-details small { display: block; }
.quote-details strong { color: #fff; }
.quote-details small { color: #a9bdd2; }
.support-card { padding: 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); }
.support-card small, .support-card a, .support-card span { display: block; }
.support-card small { color: #89a9c9; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; font-size: .65rem; }
.support-card a { color: #fff; font-weight: 850; margin: 5px 0 2px; }
.support-card span { color: #a9bdd2; font-size: .76rem; }
.quote-form-card { padding: 34px; border-radius: 26px; color: var(--text); background: #fff; box-shadow: 0 45px 95px rgba(0,0,0,.25); }
.form-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.form-heading small { display: block; color: var(--green-2); letter-spacing: .11em; font-weight: 900; font-size: .66rem; }
.form-heading h3 { font-size: 1.5rem; margin-top: 5px; }
.form-heading > span { color: #8795a4; font-size: .65rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; color: #31465c; font-size: .76rem; font-weight: 850; margin-bottom: 6px; }
.form-group input, .form-group select, .verification-row input {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: #25394f;
    border: 1px solid #d3dfe9;
    border-radius: 10px;
    background: #fbfdff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus, .verification-row input:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(25,118,223,.10); background: #fff; }
.phone-field { display: grid; grid-template-columns: minmax(150px, .9fr) 1.2fr; gap: 9px; }
.phone-field select { font-size: .78rem; }
.same-number, .consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; cursor: pointer; }
.same-number { margin: -2px 0 15px; color: #54687d; font-size: .75rem; }
.same-number input, .consent input { width: 16px; height: 16px; margin: 3px 0 0; accent-color: var(--blue-2); }
.whatsapp-group.is-hidden { display: none; }
.verification-row { display: grid; grid-template-columns: 1fr 105px; align-items: center; gap: 14px; margin: 8px 0 17px; padding: 13px 14px; border: 1px solid #dbe5ed; border-radius: 12px; background: #f7fafe; }
.verification-copy strong, .verification-copy span { display: block; }
.verification-copy strong { color: #35495f; font-size: .75rem; }
.verification-copy span { color: #708196; font-size: .71rem; }
.verification-row input { min-height: 42px; background: #fff; }
.consent { color: #63758a; font-size: .7rem; }
.consent a { color: var(--blue-2); font-weight: 850; text-decoration: underline; text-underline-offset: 2px; }
.form-submit { width: 100%; margin-top: 20px; border: 0; }
.form-submit.loading { opacity: .68; pointer-events: none; }
.form-note { margin-top: 10px; text-align: center; color: #8b98a6; font-size: .64rem; }
.form-alert { margin-bottom: 17px; padding: 13px 15px; border-radius: 10px; font-size: .78rem; font-weight: 750; }
.form-alert.success { color: #166a2e; background: #e8f8ec; border: 1px solid #bde9c7; }
.form-alert.error { color: #9d2c2c; background: #fff0f0; border: 1px solid #f0c6c6; }
.field-error { border-color: #d64d4d !important; box-shadow: 0 0 0 4px rgba(214,77,77,.08) !important; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { color: #9eb0c4; background: #04101f; }
.footer-main { padding: 70px 0 50px; display: grid; grid-template-columns: 1.35fr repeat(3, .65fr); gap: 50px; }
.footer-brand img { width: 185px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 350px; margin-top: 18px; color: #8ea2b7; font-size: .84rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column strong { color: #fff; margin-bottom: 8px; }
.footer-column a, .footer-column span { color: #8ea2b7; font-size: .79rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { min-height: 78px; padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.09); font-size: .67rem; }
.footer-bottom p:last-child { max-width: 610px; text-align: right; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 44px; height: 44px; border: 0; border-radius: 12px; color: #fff; background: var(--blue-2); box-shadow: 0 12px 26px rgba(9,42,84,.25); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.delay-1 { transition-delay: .13s; }
.reveal.in-view { opacity: 1; transform: none; }

/* Legal pages */
.legal-page { background: #f6f9fc; }
.legal-page .site-header { position: sticky; }
.legal-header-actions { display: flex; align-items: center; gap: 12px; }
.legal-main { padding: 72px 0 95px; }
.legal-shell { max-width: 920px; padding: 52px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: 0 25px 70px rgba(9,42,84,.08); }
.legal-shell h1 { margin: 15px 0 7px; font-size: clamp(2.7rem, 5vw, 4.6rem); letter-spacing: -.055em; }
.legal-date { color: #8090a1; margin-bottom: 40px; }
.legal-notice { margin-bottom: 34px; padding: 15px 17px; border-left: 4px solid var(--blue-2); border-radius: 7px; color: #526579; background: #f2f7fc; font-size: .82rem; }
.legal-shell section { padding: 25px 0; border-top: 1px solid #e4ebf2; }
.legal-shell section h2 { font-size: 1.25rem; margin-bottom: 9px; }
.legal-shell section p, .legal-shell section li { color: #5d6e81; font-size: .9rem; }
.legal-shell section ul { margin: 10px 0 0; padding-left: 20px; }
.legal-shell a:not(.btn) { color: var(--blue-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-back { display: inline-flex; margin-top: 28px; font-weight: 850; }

@media (max-width: 1080px) {
    .main-nav { gap: 18px; }
    .hero-grid { gap: 35px; }
    .hero-copy h1 { font-size: clamp(3rem, 6vw, 4.6rem); }
    .solutions-grid, .pricing-wrap, .standards-grid, .quote-grid { gap: 50px; }
    .footer-main { grid-template-columns: 1.1fr repeat(3,.7fr); gap: 30px; }
}

@media (max-width: 900px) {
    .section { padding: 86px 0; }
    .nav-toggle { display: block; position: relative; z-index: 102; }
    .main-nav { position: fixed; inset: 82px 0 auto; padding: 28px 20px 34px; display: flex; flex-direction: column; align-items: stretch; gap: 9px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 22px 45px rgba(9,42,84,.12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .22s ease; }
    .nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
    .main-nav > a { padding: 10px; text-align: center; }
    .hero { min-height: auto; }
    .hero-grid, .solutions-grid, .pricing-wrap, .standards-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero-text { margin: 0 auto; }
    .hero-actions, .hero-points { justify-content: center; }
    .hero-visual { max-width: 680px; margin: 0 auto; padding-left: 0; }
    .dashboard-window { transform: none; }
    .capability-row { grid-template-columns: repeat(3,1fr); padding: 12px 0; gap: 0; }
    .capability-row span { padding: 10px 4px; }
    .capability-row span + span { border-left: 0; }
    .feature-grid { grid-template-columns: repeat(2,1fr); }
    .workflow-grid { grid-template-columns: 1fr; }
    .workflow-card { min-height: auto; }
    .solutions-copy, .standards-copy, .quote-copy { max-width: 740px; }
    .quote-grid { align-items: start; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, var(--container)); }
    .site-header { height: 72px; }
    .main-nav { inset: 72px 0 auto; }
    .brand img { width: 160px; }
    .section { padding: 72px 0; }
    .hero { padding: 68px 0 78px; }
    .hero-copy h1 { font-size: clamp(2.65rem, 13.3vw, 3.7rem); }
    .hero-text { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-points { display: grid; justify-content: start; width: fit-content; margin-left: auto; margin-right: auto; text-align: left; }
    .hero-visual { padding-top: 25px; }
    .dashboard-layout { grid-template-columns: 44px 1fr; min-height: 340px; }
    .dashboard-sidebar { gap: 16px; }
    .dashboard-sidebar img { width: 27px; height: 27px; }
    .dashboard-sidebar span { width: 17px; height: 17px; }
    .dashboard-main { padding: 13px; }
    .dashboard-heading button { display: none; }
    .metric-grid { gap: 5px; }
    .metric-grid article { padding: 9px 7px; }
    .metric-grid strong { font-size: .76rem; }
    .metric-grid span, .metric-grid small { font-size: .48rem; }
    .chart-panel { height: 135px; }
    .bar-chart { height: 84px; gap: 5px; }
    .campaign-line { grid-template-columns: 28px 1fr; }
    .campaign-line b { display: none; }
    .float-automation { right: -4px; top: 70px; }
    .float-inbox { left: -4px; bottom: 2px; }
    .capability-row { grid-template-columns: 1fr 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 0; }
    .section-heading h2, .solutions-copy h2, .standards-copy h2, .pricing-copy h2 { font-size: 2.45rem; }
    .solution-tabs { overflow-x: auto; }
    .conversation-body { min-height: 350px; padding: 23px 14px; }
    .chat-row div { max-width: 94%; }
    .pricing-card, .quote-form-card { padding: 24px 20px; border-radius: 20px; }
    .form-row, .phone-field { grid-template-columns: 1fr; }
    .form-heading { align-items: start; }
    .form-heading > span { display: none; }
    .verification-row { grid-template-columns: 1fr 80px; }
    .footer-main { grid-template-columns: 1fr; padding: 55px 0 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; padding: 24px 0; }
    .footer-bottom p:last-child { text-align: left; }
    .legal-header-actions .btn { padding: 10px 12px; font-size: .72rem; }
    .legal-main { padding: 45px 0 70px; }
    .legal-shell { padding: 30px 20px; }
    .legal-shell h1 { font-size: 2.7rem; }
}

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