:root {
    --ink: #222222;
    --ink-2: #373737;
    --muted: #6f7379;
    --line: #dedfe4;
    --paper: #ffffff;
    --soft: #f5f6fa;
    --soft-blue: #eef1f7;
    --orange: #f39922;
    --orange-2: #ffad33;
    --orange-soft: #fff3e2;
    --dark: #1f1f1f;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow: 0 28px 80px rgba(31, 35, 45, .12);
    --content: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
    position: fixed; left: 16px; top: -100px; z-index: 9999;
    padding: 10px 14px; background: #000; color: #fff; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.content-wrap {
    width: min(calc(100% - 64px), var(--content));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
    border-color: #e7e7ea;
    box-shadow: 0 10px 30px rgba(30, 32, 38, .05);
}
.nav-shell {
    width: 100%;
    min-height: 88px;
    display: grid;
    grid-template-columns: 230px 1fr 230px;
    align-items: center;
    gap: 26px;
    padding: 0 34px;
}
.brand { display: inline-flex; align-items: center; width: 176px; }
.brand img { width: 100%; height: auto; }
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.5vw, 44px);
}
.main-nav > a, .nav-text-link {
    font-size: 14px;
    font-weight: 650;
    color: #353535;
    transition: color .18s ease;
}
.main-nav > a:hover, .nav-text-link:hover { color: var(--orange); }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.nav-toggle { display: none; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    font-weight: 760;
    font-size: 15px;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    background: var(--orange);
    color: #1e1e1e;
    box-shadow: 0 12px 24px rgba(243, 153, 34, .2);
}
.button-primary:hover { background: var(--orange-2); box-shadow: 0 15px 28px rgba(243, 153, 34, .27); }
.button-outline {
    background: #fff;
    border-color: #242424;
    color: #222;
    gap: 16px;
    box-shadow: none;
}
.button-outline:hover { background: #f7f7f8; }
.button-nav { min-height: 45px; padding-inline: 19px; border-radius: 9px; }
.button-block { width: 100%; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background:
        radial-gradient(circle at 77% 35%, rgba(243,153,34,.10), transparent 27%),
        linear-gradient(135deg, #f4f6fb 0%, #f8f8fb 56%, #fff8ee 100%);
    border-bottom: 1px solid #e4e5e9;
}
.hero-bg-shape { position: absolute; pointer-events: none; border-radius: 50%; opacity: .75; }
.hero-bg-one { width: 480px; height: 480px; right: -220px; top: -180px; border: 1px solid rgba(243,153,34,.3); }
.hero-bg-two { width: 680px; height: 680px; right: -330px; top: -80px; border: 1px solid rgba(80,80,90,.08); }
.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
    gap: 44px;
    align-items: center;
    padding: 70px 0 82px;
}
.hero-copy { max-width: 690px; padding-top: 10px; }
.eyebrow, .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #53565d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow span { width: 20px; height: 3px; border-radius: 10px; background: var(--orange); }
.hero h1, .section-heading h2, .showcase-copy h2, .audience-intro h2, .pricing-copy h2, .faq-intro h2, .contact-copy h2 {
    margin: 0;
    font-size: clamp(48px, 5vw, 74px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 790;
}
.hero h1 em, .showcase-copy h2 em, .pricing-copy h2 em { color: var(--orange); font-style: normal; }
.hero-lead {
    max-width: 635px;
    margin: 28px 0 0;
    color: #5d626a;
    font-size: 18px;
    line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    color: #53565d;
}
.price-pill { display: flex; align-items: baseline; gap: 9px; }
.price-pill strong { color: #202020; font-size: 30px; letter-spacing: -.045em; }
.price-pill span { font-size: 13px; font-weight: 650; }
.meta-separator { width: 1px; height: 40px; background: #cfd2d8; }
.hero-meta p { margin: 0; font-size: 12px; line-height: 1.45; font-weight: 650; }
.hero-meta small { color: #90949b; }

.hero-visual { min-width: 0; }
.screens-composition {
    position: relative;
    height: 520px;
    perspective: 1400px;
}
.screen-card {
    position: absolute;
    border-radius: 18px;
    background: #262626;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(35, 37, 45, .2);
}
.screen-bezel {
    overflow: hidden;
    width: 100%; height: 100%;
    border-radius: 11px;
    background: #101010;
}
.screen-card-left { width: 330px; height: 205px; left: 6px; top: 155px; transform: rotateY(6deg) rotateZ(-2.5deg); z-index: 1; }
.screen-card-main { width: 390px; height: 244px; left: 190px; top: 90px; z-index: 3; transform: rotateZ(.8deg); }
.screen-card-right { width: 290px; height: 182px; right: -5px; top: 200px; z-index: 2; transform: rotateY(-7deg) rotateZ(3.5deg); }
.screen-content { width: 100%; height: 100%; }
.menu-board { padding: 18px 22px; }
.board-light { background: #f6f1e7; color: #1f1f1f; }
.board-dark { background: #151515; color: #fff; }
.board-logo { font-size: 9px; font-weight: 900; letter-spacing: .18em; color: var(--orange); }
.board-logo b { color: inherit; }
.board-heading { margin: 21px 0 14px; font-size: 18px; font-weight: 900; letter-spacing: .04em; border-bottom: 3px solid var(--orange); padding-bottom: 7px; }
.board-line { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-size: 10px; border-bottom: 1px solid rgba(127,127,127,.15); }
.board-line b { color: var(--orange); font-size: 11px; }
.promo-board {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 24px;
    background: radial-gradient(circle at 80% 30%, rgba(243,153,34,.25), transparent 30%), #171717;
    color: #fff;
}
.promo-label { color: var(--orange); font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.promo-board > strong { margin-top: 8px; font-size: 29px; line-height: .87; letter-spacing: -.035em; }
.promo-board small { margin-top: 8px; color: #bbb; }
.promo-board > b { margin-top: 14px; color: var(--orange); font-size: 19px; }
.float-status {
    position: absolute;
    z-index: 5;
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px 11px 11px;
    border: 1px solid #e3e4e8;
    border-radius: 13px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 16px 40px rgba(30,31,38,.12);
}
.float-status-one { left: 76px; top: 373px; }
.float-status-two { right: 50px; top: 112px; }
.status-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: #eaf7e9; color: #208c32; font-size: 13px; font-weight: 900; }
.status-icon-orange { background: var(--orange-soft); color: #cf7510; }
.float-status small { display: block; color: #999da3; font-size: 8px; }
.float-status strong { display: block; margin-top: 2px; font-size: 11px; }

.sector-strip {
    overflow: hidden;
    border-bottom: 1px solid #e7e7ea;
    background: #fff;
}
.sector-track {
    min-height: 76px;
    width: min(calc(100% - 64px), 1500px);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    color: #9a9da2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}
.sector-track i { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex: 0 0 auto; }

.section { padding: 120px 0; }
.section-heading { max-width: 900px; margin-bottom: 56px; }
.section-heading-wide { max-width: 1000px; }
.section-heading h2 { font-size: clamp(42px, 5vw, 66px); }
.section-heading p, .audience-intro > p, .pricing-copy > p, .faq-intro > p {
    margin: 24px 0 0;
    max-width: 730px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}
.section-label { color: #7f8389; }
.section-label::before { content: ""; width: 18px; height: 3px; border-radius: 10px; background: var(--orange); }
.centered { text-align: center; margin-inline: auto; }
.centered .section-label { justify-content: center; }
.centered p { margin-inline: auto; }

.product-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border: 1px solid #e1e2e6;
    border-radius: 22px;
    background: #f8f9fb;
    transition: transform .22s ease, box-shadow .22s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(31,35,45,.07); }
.feature-card-orange { background: var(--orange-soft); border-color: #f4d3a6; }
.feature-icon {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dadce1;
    font-weight: 900;
    font-size: 19px;
}
.feature-card h3 { margin: 60px 0 12px; font-size: 24px; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.feature-link { margin-top: auto; padding-top: 28px; color: #373737; font-size: 13px; font-weight: 800; }
.feature-link b { color: var(--orange); margin-left: 6px; }

.showcase-section {
    overflow: hidden;
    padding: 112px 0;
    background: #202020;
    color: #fff;
}
.showcase-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.section-label-light { color: #adadb1; }
.showcase-copy h2 { font-size: clamp(46px, 5vw, 70px); }
.showcase-copy p { max-width: 570px; margin: 26px 0 0; color: #b6b7ba; font-size: 17px; line-height: 1.7; }
.tick-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 15px; color: #e5e5e6; }
.tick-list li { display: flex; align-items: center; gap: 12px; }
.tick-list span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; background: var(--orange); color: #1f1f1f; font-size: 12px; font-weight: 900; }
.dashboard-shell {
    position: relative;
    border: 1px solid #4b4b4b;
    border-radius: 22px;
    background: #f8f9fb;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
    overflow: visible;
}
.browser-top { height: 48px; display: flex; align-items: center; gap: 18px; padding: 0 18px; background: #eeeeef; border-radius: 21px 21px 0 0; border-bottom: 1px solid #dedee0; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #cacacd; }
.browser-top > span { width: 260px; padding: 7px 12px; border-radius: 7px; background: #fff; color: #a0a1a5; font-size: 9px; text-align: center; }
.dashboard-body { display: grid; grid-template-columns: 92px 1fr; min-height: 435px; }
.dashboard-side { padding: 22px 18px; background: #272727; border-radius: 0 0 0 21px; }
.mini-brand { width: 44px; height: 44px; display: grid; place-items: center; margin: 0 auto 38px; border-radius: 11px; background: #fff; overflow: hidden; }
.mini-brand img { width: 38px; height: 38px; object-fit: contain; }
.dash-nav-line { display: block; width: 50px; height: 8px; margin: 0 auto 18px; border-radius: 99px; background: #464646; }
.dash-nav-line.active { background: var(--orange); }
.dash-nav-line.short { width: 34px; }
.dashboard-main { padding: 34px; color: #252525; }
.dash-title-row { display: flex; justify-content: space-between; align-items: end; }
.dash-title-row small { display: block; color: #9b9ca1; font-size: 8px; letter-spacing: .15em; }
.dash-title-row strong { display: block; margin-top: 5px; font-size: 25px; letter-spacing: -.035em; }
.dash-title-row button { border: 0; border-radius: 8px; padding: 10px 15px; background: var(--orange); color: #1f1f1f; font-weight: 800; font-size: 10px; }
.dash-tabs { display: flex; gap: 26px; margin-top: 27px; padding-bottom: 14px; border-bottom: 1px solid #e1e2e5; font-size: 10px; color: #96979c; }
.dash-tabs b { color: #252525; position: relative; }
.dash-tabs b::after { content: ""; position: absolute; left: 0; right: 0; bottom: -15px; height: 2px; background: var(--orange); }
.dash-product { display: grid; grid-template-columns: 12px 1fr auto 22px; align-items: center; gap: 13px; padding: 18px 0; border-bottom: 1px solid #ececef; }
.product-dot { width: 9px; height: 9px; border-radius: 50%; background: #252525; }
.product-dot.orange { background: var(--orange); }
.product-dot.yellow { background: #f6c34e; }
.dash-product strong { display: block; font-size: 12px; }
.dash-product small { display: block; margin-top: 3px; color: #a4a5a9; font-size: 8px; }
.dash-product > b { font-size: 12px; }
.dash-product > i { color: #b4b5b9; font-style: normal; letter-spacing: 1px; }
.dashboard-float {
    position: absolute;
    right: -30px;
    bottom: 30px;
    display: flex; align-items: center; gap: 9px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #232323;
    background: #fff;
    box-shadow: 0 16px 45px rgba(0,0,0,.22);
    font-size: 10px;
    font-weight: 750;
}
.dashboard-float span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; background: var(--orange); font-size: 11px; }

.how-section { background: #f7f8fb; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    position: relative;
    min-height: 430px;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid #dfe1e6;
    background: #fff;
}
.step-number {
    position: absolute; top: 25px; right: 28px;
    color: #c8cacf;
    font-size: 38px; font-weight: 800; letter-spacing: -.05em;
}
.step-art {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 32px;
    border-radius: 16px;
    background: #f3f4f7;
    overflow: hidden;
}
.step-card h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.025em; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.step-art-menu { position: relative; }
.art-sidebar { width: 46px; height: 116px; border-radius: 10px 0 0 10px; background: #252525; }
.art-lines { width: 150px; height: 116px; padding: 25px; border-radius: 0 10px 10px 0; background: #fff; border: 1px solid #dadce1; border-left: 0; }
.art-lines i { display: block; height: 7px; margin-bottom: 13px; border-radius: 5px; background: #d8d9de; }
.art-lines i:nth-child(2) { width: 75%; background: var(--orange); }
.art-lines i:nth-child(3) { width: 88%; }
.step-art-screens { gap: 8px; }
.step-art-screens i { width: 72px; height: 48px; border: 5px solid #292929; border-radius: 6px; background: #fff4e5; }
.step-art-screens i:nth-child(2) { transform: translateY(-16px); border-color: var(--orange); }
.step-art-code { flex-direction: column; }
.step-art-code strong { font-size: 35px; letter-spacing: .13em; }
.step-art-code span { margin-top: 8px; color: #989aa0; font-size: 8px; font-weight: 800; letter-spacing: .17em; }

.audience-section { background: #fff; }
.audience-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: end; margin-bottom: 50px; }
.audience-intro h2 { font-size: clamp(42px, 4.6vw, 65px); max-width: 820px; }
.audience-intro > p { margin: 0 0 5px; }
.audience-grid { display: grid; grid-template-columns: 1.25fr .9fr .9fr; gap: 20px; }
.audience-card {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    padding: 34px;
    border-radius: 22px;
    border: 1px solid #e0e1e5;
    background: #f6f7fa;
}
.audience-card-large { background: var(--orange-soft); border-color: #f3d5af; }
.audience-card-dark { background: #252525; color: #fff; border-color: #252525; }
.audience-chip { display: inline-flex; padding: 7px 10px; border-radius: 7px; background: #fff; color: #4d4f54; border: 1px solid #e0e1e4; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.audience-card-dark .audience-chip { background: #343434; color: #c6c6c8; border-color: #4a4a4a; }
.audience-card h3 { position: relative; z-index: 2; margin: 95px 0 12px; font-size: 29px; line-height: 1.08; letter-spacing: -.035em; }
.audience-card p { position: relative; z-index: 2; margin: 0; max-width: 430px; color: #6d7075; line-height: 1.6; }
.audience-card-dark p { color: #b9b9bb; }
.audience-mini-board { position: absolute; left: 34px; right: 34px; bottom: 30px; padding: 15px 18px; border-radius: 13px; background: #202020; color: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.audience-mini-board span { display: flex; justify-content: space-between; padding: 5px 0; font-size: 9px; border-bottom: 1px solid #363636; }
.audience-mini-board span:last-child { border-bottom: 0; }
.audience-mini-board b { color: var(--orange); }
.orange-orb { position: absolute; width: 230px; height: 230px; right: -95px; bottom: -95px; border-radius: 50%; background: var(--orange); opacity: .95; }
.takeaway-lines { position: absolute; left: 34px; right: 34px; bottom: 34px; }
.takeaway-lines i { display: block; height: 12px; margin-top: 10px; border-radius: 99px; background: #d8dade; }
.takeaway-lines i:nth-child(1) { width: 70%; background: var(--orange); }
.takeaway-lines i:nth-child(2) { width: 90%; }
.takeaway-lines i:nth-child(3) { width: 55%; }

.pricing-section { background: linear-gradient(180deg, #f6f7fa 0%, #f9fafc 100%); }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.pricing-copy h2 { font-size: clamp(42px, 4.5vw, 64px); }
.pricing-note { display: flex; gap: 10px; align-items: flex-start; max-width: 560px; margin-top: 28px; color: #8a8d93; font-size: 12px; line-height: 1.55; }
.pricing-note span { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; border: 1px solid #c7c9ce; font-weight: 850; }
.pricing-card {
    max-width: 610px;
    justify-self: end;
    width: 100%;
    padding: 38px;
    border: 1px solid #d9dbe0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(35,38,45,.08);
}
.pricing-topline { display: flex; justify-content: space-between; align-items: center; }
.pricing-topline > span { font-size: 16px; font-weight: 800; }
.pricing-topline b { padding: 7px 9px; border-radius: 6px; background: var(--orange-soft); color: #c56d0b; font-size: 8px; letter-spacing: .08em; }
.pricing-price { display: flex; align-items: end; gap: 14px; margin-top: 28px; }
.pricing-price strong { font-size: 64px; line-height: .9; letter-spacing: -.055em; }
.pricing-price span { padding-bottom: 4px; color: #777a80; font-size: 11px; line-height: 1.35; }
.pricing-sub { margin: 20px 0 0; padding-bottom: 25px; border-bottom: 1px solid #ececef; color: #686b71; line-height: 1.55; }
.pricing-list { list-style: none; padding: 22px 0 8px; margin: 0; display: grid; gap: 14px; }
.pricing-list li { display: flex; gap: 11px; align-items: center; color: #43464b; font-size: 14px; }
.pricing-list span { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 6px; background: var(--orange-soft); color: #c66c0d; font-size: 10px; font-weight: 900; }
.setup-deal { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 21px; padding: 18px 0 4px; border-top: 1px solid #ececef; color: #62656a; font-size: 12px; }
.setup-deal div { display: flex; align-items: baseline; gap: 7px; }
.setup-deal del { color: #aaa; }
.setup-deal strong { color: #222; font-size: 21px; }
.setup-deal small { color: #ce7612; font-size: 9px; font-weight: 750; }
.extra-screen { display: flex; justify-content: space-between; padding-top: 12px; color: #898b90; font-size: 11px; }
.extra-screen b { color: #4e5054; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { font-size: clamp(42px, 4vw, 58px); }
.faq-list { border-top: 1px solid #dadce1; }
.faq-item { border-bottom: 1px solid #dadce1; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; background: transparent; color: #252525; text-align: left; cursor: pointer; font-size: 17px; font-weight: 750; }
.faq-item button i { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #f3f4f6; font-style: normal; font-size: 20px; transition: transform .2s ease, background .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 60px 25px 0; color: #72757b; line-height: 1.7; }
.faq-item.is-open .faq-answer { max-height: 260px; }
.faq-item.is-open button i { transform: rotate(45deg); background: var(--orange-soft); }

.contact-section { padding: 40px 0 95px; background: #fff; }
.contact-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    padding: 66px;
    border-radius: 30px;
    background: #232323;
    color: #fff;
}
.contact-copy h2 { font-size: clamp(42px, 4.6vw, 64px); }
.contact-copy p { max-width: 520px; margin: 24px 0 0; color: #b9b9bc; line-height: 1.7; }
.contact-price { display: flex; gap: 12px; align-items: baseline; margin-top: 32px; }
.contact-price strong { color: var(--orange); font-size: 37px; letter-spacing: -.04em; }
.contact-price span { color: #b9b9bc; font-size: 12px; }
.contact-form { padding: 28px; border-radius: 20px; background: #fff; color: #272727; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; color: #64676d; font-size: 11px; font-weight: 750; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; border: 1px solid #dfe1e5; border-radius: 9px; background: #f8f9fa; color: #242424; outline: none; padding: 12px 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(243,153,34,.14); }
.button-submit { width: 100%; border: 0; margin-top: 3px; }
.button-submit span { margin-left: 14px; }
.honeypot { position: absolute !important; left: -99999px !important; }
.form-notice { margin-bottom: 16px; padding: 11px 13px; border-radius: 9px; background: #fff0ed; color: #9d3d2d; font-size: 12px; }
.form-notice.success { background: #edf8ec; color: #307a36; }

.site-footer { border-top: 1px solid #e6e7ea; background: #f8f9fb; }
.footer-main { width: min(calc(100% - 64px), var(--content)); margin-inline: auto; display: grid; grid-template-columns: 240px 1fr auto; gap: 45px; align-items: center; padding: 52px 0; }
.footer-brand { display: block; width: 190px; }
.footer-main p { margin: 0; color: #73767c; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 28px; }
.footer-links a { color: #5f6268; font-size: 12px; font-weight: 650; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { min-height: 54px; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid #e6e7ea; color: #9a9ca1; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@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; }
}

@media (max-width: 1180px) {
    .nav-shell { grid-template-columns: 190px 1fr 200px; padding-inline: 26px; }
    .brand { width: 150px; }
    .main-nav { gap: 20px; }
    .nav-text-link { display: none; }
    .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 15px; }
    .screen-card-left { left: -10px; }
    .screen-card-main { left: 150px; }
    .screen-card-right { right: -20px; }
    .showcase-grid { gap: 45px; }
    .pricing-grid { gap: 50px; }
}

@media (max-width: 980px) {
    .content-wrap { width: min(calc(100% - 40px), var(--content)); }
    .nav-shell { min-height: 76px; grid-template-columns: 1fr auto; padding: 0 20px; }
    .brand { width: 145px; }
    .nav-toggle { display: grid; width: 44px; height: 44px; place-items: center; align-content: center; gap: 5px; border: 1px solid #dcdde1; border-radius: 9px; background: #fff; cursor: pointer; }
    .nav-toggle span { width: 20px; height: 2px; background: #222; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background: #fff;
        border-bottom: 1px solid #e4e5e8;
        opacity: 0;
        pointer-events: none;
        transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
    }
    .main-nav.is-open { max-height: 430px; opacity: 1; pointer-events: auto; padding-top: 15px; padding-bottom: 22px; }
    .main-nav > a { padding: 15px 4px; border-bottom: 1px solid #ececef; font-size: 16px; }
    .nav-actions { display: none; }

    .hero { min-height: auto; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 85px 0 65px; }
    .hero-copy { max-width: 760px; }
    .hero h1 { font-size: clamp(48px, 8vw, 72px); }
    .hero-visual { margin-top: 20px; }
    .screens-composition { width: min(760px, 100%); margin-inline: auto; }
    .screen-card-left { left: 3%; }
    .screen-card-main { left: 30%; }
    .screen-card-right { right: 2%; }

    .feature-grid, .steps-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 260px; }
    .feature-card h3 { margin-top: 40px; }
    .showcase-grid, .pricing-grid, .faq-grid, .contact-card, .audience-intro { grid-template-columns: 1fr; }
    .showcase-copy { max-width: 720px; }
    .dashboard-shell { margin-top: 20px; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .audience-card-large { grid-column: 1 / -1; }
    .audience-intro { gap: 20px; }
    .pricing-card { justify-self: stretch; max-width: 680px; }
    .faq-intro { position: static; }
    .faq-grid { gap: 42px; }
    .contact-card { gap: 40px; padding: 45px; }
    .footer-main { width: min(calc(100% - 40px), var(--content)); grid-template-columns: 1fr; gap: 22px; }
    .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
    .content-wrap { width: min(calc(100% - 28px), var(--content)); }
    .section { padding: 86px 0; }
    .hero-grid { padding-top: 60px; }
    .eyebrow, .section-label { margin-bottom: 18px; }
    .hero h1 { font-size: clamp(43px, 12.6vw, 61px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .hero-meta { align-items: flex-start; gap: 13px; }
    .price-pill { flex-direction: column; gap: 1px; }
    .price-pill strong { font-size: 27px; }
    .meta-separator { height: 48px; }
    .screens-composition { height: 350px; margin-top: 5px; transform: scale(.92); transform-origin: top center; }
    .screen-card-left { width: 220px; height: 139px; left: -5%; top: 125px; }
    .screen-card-main { width: 260px; height: 165px; left: 24%; top: 65px; }
    .screen-card-right { width: 190px; height: 120px; right: -6%; top: 155px; }
    .menu-board { padding: 10px 13px; }
    .board-heading { margin: 10px 0 6px; padding-bottom: 4px; font-size: 11px; border-bottom-width: 2px; }
    .board-line { padding: 3px 0; font-size: 7px; }
    .board-line b { font-size: 7px; }
    .board-logo { font-size: 6px; }
    .promo-board { padding: 13px; }
    .promo-board > strong { font-size: 19px; }
    .promo-board > b { font-size: 13px; margin-top: 8px; }
    .promo-board small, .promo-label { font-size: 6px; }
    .float-status { padding: 8px 10px 8px 8px; }
    .float-status-one { left: 3%; top: 272px; }
    .float-status-two { right: 1%; top: 45px; }
    .status-icon { width: 24px; height: 24px; }
    .float-status small { font-size: 6px; }
    .float-status strong { font-size: 8px; }
    .sector-track { width: max-content; min-height: 64px; padding-inline: 18px; gap: 18px; animation: sectorMove 20s linear infinite; }
    @keyframes sectorMove { from { transform: translateX(0); } to { transform: translateX(-28%); } }

    .section-heading h2, .showcase-copy h2, .audience-intro h2, .pricing-copy h2, .faq-intro h2, .contact-copy h2 { font-size: 42px; }
    .feature-card, .step-card, .audience-card { padding: 26px; }
    .showcase-section { padding: 86px 0; }
    .showcase-grid { gap: 40px; }
    .dashboard-shell { border-radius: 16px; }
    .browser-top { border-radius: 15px 15px 0 0; }
    .browser-top > span { width: 170px; }
    .dashboard-body { grid-template-columns: 62px 1fr; min-height: 340px; }
    .dashboard-side { padding: 17px 10px; }
    .mini-brand { width: 36px; height: 36px; }
    .mini-brand img { width: 31px; height: 31px; }
    .dash-nav-line { width: 34px; }
    .dashboard-main { padding: 22px 17px; }
    .dash-title-row strong { font-size: 18px; }
    .dash-title-row button { padding: 8px 9px; }
    .dash-product { grid-template-columns: 9px 1fr auto; }
    .dash-product > i { display: none; }
    .dashboard-float { right: 10px; bottom: -17px; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card-large { grid-column: auto; }
    .audience-card { min-height: 360px; }
    .pricing-card { padding: 27px; }
    .pricing-price strong { font-size: 53px; }
    .setup-deal { align-items: flex-start; flex-direction: column; }
    .setup-deal div { flex-wrap: wrap; }
    .faq-answer p { padding-right: 15px; }
    .contact-section { padding-top: 10px; }
    .contact-card { width: calc(100% - 20px); padding: 30px 20px; border-radius: 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 20px; }
    .footer-main { width: calc(100% - 28px); }
    .footer-bottom { padding: 16px 14px; flex-direction: column; justify-content: center; text-align: center; }
}
