:root {
    --ep-ink: #14213d;
    --ep-ink-soft: #44516a;
    --ep-line: #dfe5ec;
    --ep-paper: #ffffff;
    --ep-paper-soft: #f5f7fa;
    --ep-mist: #eef6f4;
    --ep-navy: #10375c;
    --ep-emerald: #087f6f;
    --ep-emerald-soft: #dff3ef;
    --ep-coral: #f26f3d;
    --ep-coral-dark: #d95729;
    --ep-gold: #d99a2b;
    --ep-shadow: 0 18px 48px rgba(16, 55, 92, 0.14);
    --ep-shadow-soft: 0 10px 30px rgba(20, 33, 61, 0.09);
    --ep-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ep-landing {
    margin: 0;
    color: var(--ep-ink);
    background: var(--ep-paper);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--ep-ink);
    color: #ffffff;
    font-weight: 800;
    transition: top 0.18s ease;
}

.skip-link:focus {
    top: 14px;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(223, 229, 236, 0.82);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.site-header.is-scrolled {
    border-color: rgba(205, 215, 226, 0.95);
    box-shadow: 0 8px 24px rgba(20, 33, 61, 0.08);
}

.header-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 188px;
}

.brand img {
    width: 188px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    color: #26364e;
    font-size: 14px;
    font-weight: 750;
}

.primary-nav a {
    position: relative;
    white-space: nowrap;
}

.primary-nav a:not(.nav-cta):not(.nav-login)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--ep-emerald);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-login {
    padding: 9px 14px;
    border: 1px solid #cfd8e4;
    border-radius: 6px;
    color: var(--ep-navy);
}

.nav-login:hover,
.nav-login:focus-visible {
    border-color: var(--ep-navy);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--ep-coral);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(242, 111, 61, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--ep-coral-dark);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--ep-line);
    border-radius: 6px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ep-ink);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 92px;
    background: #f7fafc;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 55, 92, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 55, 92, 0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    align-items: center;
    gap: 54px;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ep-emerald);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--ep-coral);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    color: #101a2d;
    font-size: 56px;
    line-height: 1.02;
    letter-spacing: 0;
}

.title-nowrap {
    white-space: nowrap;
}

h2 {
    margin-bottom: 16px;
    color: #111c30;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    color: #18243a;
    font-size: 19px;
    line-height: 1.22;
    letter-spacing: 0;
}

p {
    color: var(--ep-ink-soft);
}

.hero-lede {
    max-width: 600px;
    margin-bottom: 28px;
    font-size: 19px;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 850;
    line-height: 1.1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--ep-coral);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(242, 111, 61, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--ep-coral-dark);
}

.button-secondary {
    background: #ffffff;
    color: var(--ep-navy);
    border-color: #b9c8d8;
    box-shadow: 0 12px 24px rgba(16, 55, 92, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--ep-navy);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0;
}

.hero-metrics div {
    min-height: 98px;
    padding: 17px 18px;
    border: 1px solid var(--ep-line);
    border-radius: var(--ep-radius);
    background: #ffffff;
    box-shadow: var(--ep-shadow-soft);
}

.hero-metrics dt {
    margin-bottom: 5px;
    color: var(--ep-navy);
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.hero-metrics dd {
    margin: 0;
    color: #56657a;
    font-size: 13px;
    line-height: 1.32;
    font-weight: 700;
}

.hero-visual {
    min-width: 0;
}

.product-stage {
    position: relative;
    min-height: 560px;
    padding: 38px 18px 34px;
}

.browser-window {
    position: relative;
    width: min(100%, 660px);
    margin-left: auto;
    border: 1px solid rgba(201, 211, 222, 0.9);
    border-radius: var(--ep-radius);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--ep-shadow);
}

.window-topbar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #f0f4f8;
    border-bottom: 1px solid var(--ep-line);
}

.window-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8d2dc;
}

.window-topbar span:nth-child(1) {
    background: #f26f3d;
}

.window-topbar span:nth-child(2) {
    background: #d99a2b;
}

.window-topbar span:nth-child(3) {
    background: #087f6f;
}

.window-topbar strong {
    margin-left: 10px;
    color: #526074;
    font-size: 12px;
    font-weight: 850;
}

.app-layout {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 390px;
}

.mock-sidebar {
    padding: 22px 16px;
    background: var(--ep-navy);
}

.sidebar-mark {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: var(--ep-coral);
}

.mock-sidebar span {
    display: block;
    width: 100%;
    height: 8px;
    margin-bottom: 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.32);
}

.mock-sidebar span:nth-child(3) {
    width: 75%;
}

.mock-sidebar span:nth-child(5) {
    width: 68%;
}

.mock-dashboard {
    padding: 26px;
    background: #fbfcfe;
}

.mock-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.mock-title-row small {
    display: block;
    margin-bottom: 4px;
    color: #7a8798;
    font-size: 12px;
    font-weight: 800;
}

.mock-title-row strong {
    display: block;
    color: #17233a;
    font-size: 22px;
    line-height: 1.1;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--ep-emerald-soft);
    color: var(--ep-emerald);
    font-size: 12px;
    font-weight: 900;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.stat-tile {
    min-height: 82px;
    padding: 14px;
    border: 1px solid #e1e7ee;
    border-radius: var(--ep-radius);
    background: #ffffff;
}

.stat-tile span {
    display: block;
    margin-bottom: 8px;
    color: #78869a;
    font-size: 12px;
    font-weight: 800;
}

.stat-tile strong {
    display: block;
    color: #15243a;
    font-size: 18px;
    line-height: 1.12;
}

.chart-card {
    height: 118px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e1e7ee;
    border-radius: var(--ep-radius);
    background: #ffffff;
}

.chart-card span {
    flex: 1;
    min-width: 14px;
    border-radius: 5px 5px 0 0;
    background: var(--ep-emerald);
}

.chart-card span:nth-child(even) {
    background: var(--ep-coral);
}

.booking-table {
    overflow: hidden;
    border: 1px solid #e1e7ee;
    border-radius: var(--ep-radius);
    background: #ffffff;
}

.booking-table div {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.9fr;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #edf1f5;
    color: #56657a;
    font-size: 12px;
    font-weight: 760;
}

.booking-table div:first-child {
    background: #f5f8fb;
    color: #8390a2;
    text-transform: uppercase;
}

.booking-table div:last-child {
    border-bottom: 0;
}

.booking-table strong {
    color: var(--ep-emerald);
}

.phone-preview {
    position: absolute;
    right: 0;
    bottom: 36px;
    width: 178px;
    min-height: 330px;
    padding: 14px;
    border: 1px solid #cfd8e4;
    border-radius: var(--ep-radius);
    background: #ffffff;
    box-shadow: var(--ep-shadow);
}

.phone-top {
    width: 44px;
    height: 5px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: #cdd6df;
}

.phone-image {
    height: 108px;
    margin-bottom: 14px;
    border-radius: 6px;
    background: #dcebe8;
    background-image: url("/assets/images/imagecollage.jpg");
    background-size: cover;
    background-position: center;
}

.phone-preview strong,
.phone-preview span {
    display: block;
}

.phone-preview strong {
    color: #17233a;
    font-size: 17px;
    line-height: 1.2;
}

.phone-preview span {
    margin: 6px 0 14px;
    color: #637187;
    font-size: 13px;
    font-weight: 700;
}

.phone-preview button {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 6px;
    background: var(--ep-coral);
    color: #ffffff;
    font-weight: 900;
}

.feature-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid rgba(201, 211, 222, 0.9);
    border-radius: var(--ep-radius);
    background: #ffffff;
    color: #26364e;
    font-size: 13px;
    font-weight: 850;
    box-shadow: var(--ep-shadow-soft);
}

.feature-chip i {
    color: var(--ep-emerald);
}

.chip-builder {
    left: 10px;
    top: 86px;
}

.chip-payments {
    right: 8px;
    top: 142px;
}

.chip-seo {
    left: 70px;
    bottom: 64px;
}

.section-pad {
    padding: 86px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
    margin-bottom: 12px;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
    align-items: end;
    gap: 42px;
    margin-bottom: 36px;
}

.split-heading .eyebrow {
    margin-bottom: 12px;
}

.split-heading p {
    margin-bottom: 8px;
    font-size: 18px;
}

.modules-section {
    background: #ffffff;
}

.module-grid,
.audience-grid {
    display: grid;
    gap: 18px;
}

.module-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}

.module-card,
.audience-card,
.step-card {
    border: 1px solid var(--ep-line);
    border-radius: var(--ep-radius);
    background: #ffffff;
    box-shadow: var(--ep-shadow-soft);
}

.module-card {
    min-height: 268px;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.module-card-featured {
    grid-column: span 3;
    min-height: 320px;
    background: #102f4d;
    color: #ffffff;
}

.module-card:nth-child(2) {
    grid-column: span 3;
}

.module-card span {
    margin-bottom: 12px;
    color: var(--ep-emerald);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.module-card span.module-brand {
    text-transform: none;
}

.module-card-featured span,
.module-card-featured h3,
.module-card-featured p {
    color: #ffffff;
}

.module-card-featured p {
    color: #d7e4f0;
}

.module-icon,
.audience-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: var(--ep-radius);
    background: var(--ep-mist);
    color: var(--ep-emerald);
    font-size: 20px;
}

.module-card-featured .module-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.seo-section {
    background: #0f2f4c;
    color: #ffffff;
}

.seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
    gap: 58px;
    align-items: center;
}

.seo-section h2,
.seo-section p,
.seo-section .eyebrow,
.seo-section strong {
    color: #ffffff;
}

.seo-section .eyebrow::before {
    background: var(--ep-coral);
}

.seo-copy p {
    color: #cbd8e5;
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    color: #e7eef6;
    font-weight: 700;
}

.check-list i {
    color: #64d2bd;
    margin-top: 3px;
}

.seo-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--ep-radius);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.seo-node,
.seo-result {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: var(--ep-radius);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-align: center;
    font-weight: 850;
}

.seo-node.main-node {
    grid-column: span 2;
    background: #ffffff;
    color: var(--ep-navy);
    font-size: 22px;
}

.seo-result {
    grid-column: span 2;
    display: block;
    background: var(--ep-emerald);
}

.seo-result span {
    display: block;
    margin-bottom: 4px;
    color: #d4fff6;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.seo-result strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
}

.workflow-section {
    background: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    position: relative;
    min-height: 258px;
    padding: 32px 26px 28px;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--ep-coral);
    color: #ffffff;
    font-weight: 950;
}

.audience-section {
    background: var(--ep-mist);
}

.audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-card {
    min-height: 246px;
    padding: 24px;
}

.roi-section {
    background: #ffffff;
}

.roi-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.55fr);
    gap: 54px;
    align-items: center;
}

.roi-grid p {
    max-width: 660px;
    font-size: 18px;
}

.roi-list {
    display: grid;
    gap: 12px;
}

.roi-list div {
    min-height: 92px;
    padding: 20px;
    border: 1px solid var(--ep-line);
    border-left: 5px solid var(--ep-emerald);
    border-radius: var(--ep-radius);
    background: #ffffff;
    box-shadow: var(--ep-shadow-soft);
}

.roi-list strong,
.roi-list span {
    display: block;
}

.roi-list strong {
    margin-bottom: 5px;
    color: #17233a;
    font-size: 18px;
}

.roi-list span {
    color: #5a697f;
}

.closing-section {
    padding: 46px 0 88px;
    background: #ffffff;
}

.closing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: var(--ep-radius);
    background: #102f4d;
    box-shadow: var(--ep-shadow);
}

.closing-panel h2,
.closing-panel p,
.closing-panel .eyebrow {
    color: #ffffff;
}

.closing-panel p {
    max-width: 700px;
    margin-bottom: 0;
    color: #d8e3ee;
}

.site-footer {
    padding: 34px 0;
    background: #0b1c2f;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.72fr) minmax(280px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.site-footer img {
    width: 170px;
    margin-bottom: 12px;
}

.footer-brand p {
    max-width: 430px;
    margin: 0;
    color: #b9c7d8;
}

.footer-legal {
    padding-left: 28px;
    border-left: 1px solid rgba(213, 223, 235, 0.18);
}

.footer-copy {
    margin: 0;
}

.footer-legal address {
    display: grid;
    gap: 5px;
    margin: 0 0 12px;
    color: #c9d6e5;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
}

.footer-legal address strong {
    color: #ffffff;
    font-size: 15px;
}

.footer-copy {
    color: #95a8bd;
    font-size: 13px;
    line-height: 1.45;
}

.site-footer nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    color: #d5dfeb;
    font-size: 14px;
    font-weight: 780;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #ffffff;
}

.contact-section {
    min-height: calc(100vh - 76px);
    background: #f7fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(460px, 0.82fr);
    gap: 56px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 116px;
}

.contact-copy .eyebrow {
    margin-bottom: 14px;
}

.contact-copy h1 {
    margin-bottom: 20px;
    font-size: 48px;
}

.contact-copy p {
    max-width: 560px;
    font-size: 19px;
    line-height: 1.65;
}

.contact-context {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.contact-context div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--ep-line);
}

.contact-context strong {
    color: #111c30;
}

.contact-context span {
    color: #5a697f;
    overflow-wrap: anywhere;
}

.contact-panel {
    padding: 30px;
    border: 1px solid var(--ep-line);
    border-radius: var(--ep-radius);
    background: #ffffff;
    box-shadow: var(--ep-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row-full,
.form-actions,
.form-alert {
    grid-column: 1 / -1;
}

.form-row label {
    color: #17233a;
    font-size: 13px;
    font-weight: 850;
}

.form-row input,
.form-row textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid #cfd8e4;
    border-radius: 6px;
    background: #ffffff;
    color: var(--ep-ink);
    font: inherit;
    line-height: 1.4;
}

.form-row textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--ep-emerald);
    outline: 3px solid rgba(8, 127, 111, 0.14);
}

.form-actions {
    margin-top: 4px;
}

.form-actions .button {
    width: 100%;
}

.form-alert {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: var(--ep-radius);
    font-weight: 700;
}

.form-alert span {
    display: block;
    font-weight: 650;
}

.form-alert-success {
    border: 1px solid #bfe5d9;
    background: #ecf9f5;
    color: #086756;
}

.form-alert-error {
    border: 1px solid #f2c7bb;
    background: #fff3ee;
    color: #9d3b1f;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

:focus-visible {
    outline: 3px solid rgba(242, 111, 61, 0.42);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .product-stage {
        min-height: 520px;
        padding-top: 20px;
    }

    .browser-window {
        margin: 0 auto;
    }

    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .module-card,
    .module-card:nth-child(2),
    .module-card-featured {
        grid-column: auto;
    }
}

@media (max-width: 940px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 86px;
        display: none;
        max-height: calc(100vh - 106px);
        overflow: auto;
        padding: 18px;
        border: 1px solid var(--ep-line);
        border-radius: var(--ep-radius);
        background: #ffffff;
        box-shadow: var(--ep-shadow);
    }

    .nav-open .primary-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .primary-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 6px;
    }

    .primary-nav a:not(.nav-cta):not(.nav-login)::after {
        display: none;
    }

    .nav-login,
    .nav-cta {
        justify-content: center;
        margin-top: 4px;
    }

    .split-heading,
    .seo-grid,
    .roi-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .seo-grid,
    .roi-grid,
    .contact-grid {
        gap: 34px;
    }

    .contact-copy {
        position: static;
    }

    .steps,
    .module-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        align-items: start;
    }

    .footer-legal {
        padding-left: 0;
        padding-top: 20px;
        border-left: 0;
        border-top: 1px solid rgba(213, 223, 235, 0.18);
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .header-shell {
        min-height: 66px;
    }

    .brand {
        min-width: 154px;
    }

    .brand img {
        width: 154px;
    }

    .primary-nav {
        top: 76px;
        left: 14px;
        right: 14px;
    }

    .hero-section {
        padding: 44px 0 40px;
    }

    h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    h1 .title-nowrap {
        display: block;
    }

    h2 {
        font-size: 30px;
        line-height: 1.15;
    }

    .contact-copy h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .hero-lede,
    .split-heading p,
    .seo-copy p,
    .roi-grid p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .button {
        width: 100%;
    }

    .hero-metrics,
    .stat-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-metrics div {
        min-height: 84px;
        padding: 12px 10px;
    }

    .hero-metrics dt {
        font-size: 23px;
    }

    .hero-metrics dd {
        font-size: 11px;
    }

    .product-stage {
        min-height: auto;
        padding: 0;
    }

    .hero-visual {
        display: none;
    }

    .browser-window {
        width: 100%;
    }

    .app-layout {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        display: none;
    }

    .mock-dashboard {
        padding: 18px;
    }

    .chart-card {
        gap: 7px;
    }

    .booking-table div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .phone-preview,
    .feature-chip {
        position: static;
    }

    .phone-preview {
        width: 100%;
        min-height: auto;
        margin-top: 16px;
    }

    .feature-chip {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }

    .section-pad {
        padding: 62px 0;
    }

    .contact-panel {
        padding: 22px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-context div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .section-heading .eyebrow {
        justify-content: flex-start;
    }

    .module-card,
    .audience-card,
    .step-card {
        min-height: auto;
        padding: 22px;
    }

    .seo-board {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .seo-node.main-node,
    .seo-result {
        grid-column: auto;
    }

    .closing-section {
        padding: 18px 0 64px;
    }

    .closing-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .site-footer nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 27px;
    }

    .window-topbar strong {
        display: none;
    }

    .mock-title-row {
        display: grid;
    }

    .site-footer nav {
        grid-template-columns: 1fr;
    }
}
