:root {
    --bg: #f4efe6;
    --bg-strong: #efe5d5;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --surface-dark: #10251b;
    --surface-dark-2: #153425;
    --text: #112016;
    --muted: #5c6b63;
    --line: rgba(17, 32, 22, 0.08);
    --brand: #f08b2c;
    --brand-2: #1fbd83;
    --brand-3: #0d5b41;
    --success: #198754;
    --warning: #b77018;
    --shadow-xl: 0 28px 70px rgba(17, 32, 22, 0.12);
    --shadow-lg: 0 18px 45px rgba(17, 32, 22, 0.1);
    --shadow-sm: 0 10px 24px rgba(17, 32, 22, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(240, 139, 44, 0.14), transparent 32%),
        radial-gradient(circle at top right, rgba(31, 189, 131, 0.14), transparent 28%),
        linear-gradient(180deg, #faf6ee 0%, #f4efe6 35%, #efe6d8 100%);
}

body.modal-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 32, 22, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 32, 22, 0.022) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 70%);
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-alt {
    position: relative;
}

.section-alt::before {
    content: "";
    position: absolute;
    inset: 18px 0;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(17, 32, 22, 0.05);
}

.section-alt > .container {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 32, 22, 0.08);
    color: var(--brand-3);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow .dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 0 0 5px rgba(31, 189, 131, 0.1);
}

.display,
h1,
h2,
h3 {
    font-family: "Fraunces", serif;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin: 0;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.3rem);
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
}

h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

p {
    line-height: 1.7;
    margin: 0;
}

.muted {
    color: var(--muted);
}

.section-copy {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-copy p {
    margin-top: 14px;
    font-size: 1.05rem;
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 14px 0;
    backdrop-filter: blur(18px);
    background: rgba(250, 246, 238, 0.72);
    border-bottom: 1px solid rgba(17, 32, 22, 0.06);
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
    font-size: 1.05rem;
}

.brand__mark {
    width: 52px;
    height: 52px;
    padding: 8px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(240, 139, 44, 0.18), rgba(31, 189, 131, 0.18));
    border: 1px solid rgba(17, 32, 22, 0.08);
    box-shadow: var(--shadow-sm);
}

.brand__copy small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(17, 32, 22, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__links a {
    padding: 11px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 700;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
    background: rgba(17, 32, 22, 0.05);
    color: var(--text);
}

.site-nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
    background: linear-gradient(135deg, var(--brand), #ffba6a);
    color: #2b1704;
    box-shadow: 0 18px 36px rgba(240, 139, 44, 0.26);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    border-color: rgba(17, 32, 22, 0.1);
}

.button--dark {
    background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2));
    color: #eff8f1;
    box-shadow: 0 18px 36px rgba(16, 37, 27, 0.18);
}

.hero {
    padding: 42px 0 82px;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    padding: 54px;
    background:
        radial-gradient(circle at 12% 15%, rgba(240, 139, 44, 0.2), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(31, 189, 131, 0.18), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 229, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-xl);
}

.hero-shell::after {
    content: "";
    position: absolute;
    inset: auto auto -120px -90px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(240, 139, 44, 0.18), transparent 62%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.hero-copy p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.12rem;
}

.hero-highlight {
    display: inline;
    background: linear-gradient(120deg, var(--brand-3), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.trust-pill {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(17, 32, 22, 0.05);
    border: 1px solid rgba(17, 32, 22, 0.06);
    font-weight: 800;
    color: var(--brand-3);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 32, 22, 0.06);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-proof i,
.list-check i,
.step-card__meta i {
    color: var(--brand);
}

.dashboard-shell {
    position: relative;
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(170deg, #0f241b, #153929);
    color: #eef7f0;
    box-shadow: 0 24px 50px rgba(16, 37, 27, 0.28);
}

.dashboard-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(240, 139, 44, 0.22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(31, 189, 131, 0.18), transparent 34%);
    pointer-events: none;
}

.dashboard-window {
    position: relative;
    display: grid;
    gap: 16px;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.dashboard-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 0.9rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
}

.dashboard-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-card h3 {
    font-size: 1.28rem;
}

.dashboard-card p {
    color: rgba(239, 247, 240, 0.78);
    margin-top: 10px;
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.kpi {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.kpi strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
}

.kpi span {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(239, 247, 240, 0.72);
}

.chat-stack {
    display: grid;
    gap: 10px;
}

.chat-bubble {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 0.96rem;
    line-height: 1.5;
}

.chat-bubble--in {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(239, 247, 240, 0.88);
}

.chat-bubble--out {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(240, 139, 44, 0.96), rgba(255, 186, 106, 0.94));
    color: #2b1704;
    font-weight: 800;
}

.stats-grid,
.cards-3,
.cards-2,
.steps-grid,
.faq-grid,
.resource-grid,
.keyword-grid,
.footer-grid {
    display: grid;
    gap: 18px;
}

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

.cards-3,
.resource-grid,
.keyword-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.metric-card,
.feature-card,
.step-card,
.faq-card,
.keyword-card,
.resource-card,
.cta-band,
.comparison-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.metric-card,
.feature-card,
.step-card,
.faq-card,
.keyword-card,
.resource-card,
.comparison-card {
    padding: 26px;
}

.metric-card strong {
    display: block;
    font-size: 2.3rem;
    font-family: "Fraunces", serif;
}

.metric-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(240, 139, 44, 0.16), rgba(31, 189, 131, 0.18));
    color: var(--brand-3);
    box-shadow: inset 0 0 0 1px rgba(17, 32, 22, 0.05);
    margin-bottom: 16px;
}

.feature-card p,
.keyword-card p,
.resource-card p,
.comparison-card p {
    margin-top: 12px;
    color: var(--muted);
}

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

.list-check li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    line-height: 1.6;
}

.feature-card__link,
.keyword-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--brand-3);
    font-weight: 800;
}

.step-card__number {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2));
    color: #eff8f1;
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
}

.step-card__meta {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.comparison-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(250, 246, 238, 0.92));
}

.comparison-table {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comparison-row span {
    color: var(--muted);
    line-height: 1.6;
}

.comparison-row span.good {
    color: var(--success);
    font-weight: 800;
}

.comparison-row span.warn {
    color: var(--warning);
    font-weight: 800;
}

.faq-card button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text);
    font-weight: 800;
}

.faq-card button span:last-child {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(17, 32, 22, 0.06);
    font-size: 1.1rem;
}

.faq-card p {
    margin-top: 16px;
    color: var(--muted);
    display: none;
}

.faq-card.is-open p {
    display: block;
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(240, 139, 44, 0.18), transparent 32%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 229, 0.92));
}

.cta-band p {
    margin-top: 10px;
    color: var(--muted);
}

.page-hero {
    padding: 34px 0 70px;
}

.page-hero__shell {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    padding: 46px;
    color: #eff8f1;
    background:
        radial-gradient(circle at 18% 20%, rgba(240, 139, 44, 0.24), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(31, 189, 131, 0.22), transparent 28%),
        linear-gradient(160deg, #0f241b, #163829 62%, #10251b);
    box-shadow: 0 28px 65px rgba(16, 37, 27, 0.28);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
}

.page-hero__copy p {
    margin-top: 18px;
    color: rgba(239, 247, 240, 0.82);
    font-size: 1.08rem;
}

.page-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.page-hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    font-weight: 700;
}

.visual-panel {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-panel__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.visual-panel__stack {
    display: grid;
    gap: 12px;
}

.visual-line,
.visual-stat {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.visual-line {
    height: 50px;
}

.visual-line--short {
    width: 72%;
}

.visual-line--accent {
    background: linear-gradient(135deg, rgba(240, 139, 44, 0.32), rgba(31, 189, 131, 0.24));
}

.visual-stat {
    padding: 18px;
}

.visual-stat strong {
    display: block;
    font-size: 1.45rem;
}

.visual-stat span {
    display: block;
    margin-top: 7px;
    color: rgba(239, 247, 240, 0.72);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(239, 247, 240, 0.7);
    font-size: 0.92rem;
}

.breadcrumbs a {
    color: rgba(239, 247, 240, 0.86);
    font-weight: 700;
}

.footer {
    padding: 70px 0 38px;
    background: linear-gradient(180deg, transparent, rgba(16, 37, 27, 0.06) 16%, rgba(16, 37, 27, 0.12) 100%);
}

.footer-grid {
    grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr;
    align-items: start;
}

.footer p,
.footer li,
.footer a {
    color: var(--muted);
}

.footer h3 {
    font-size: 1.12rem;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 32, 22, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.auth-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 80;
}

.auth-modal.is-open {
    display: flex;
}

.auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 12, 0.6);
    backdrop-filter: blur(10px);
}

.auth-modal__dialog {
    position: relative;
    width: min(100%, 960px);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 70px rgba(10, 17, 12, 0.24);
}

.auth-modal__aside {
    padding: 36px;
    color: #eff8f1;
    background:
        radial-gradient(circle at 16% 18%, rgba(240, 139, 44, 0.24), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(31, 189, 131, 0.2), transparent 30%),
        linear-gradient(160deg, #0f241b, #163829 62%, #10251b);
}

.auth-modal__aside p {
    margin-top: 14px;
    color: rgba(239, 247, 240, 0.8);
}

.auth-modal__aside ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.auth-modal__aside li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(239, 247, 240, 0.86);
    line-height: 1.6;
}

.auth-modal__aside li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.auth-modal__content {
    padding: 32px;
}

.auth-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.auth-modal__header p {
    margin-top: 10px;
    color: var(--muted);
}

.auth-close {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(17, 32, 22, 0.08);
    background: rgba(17, 32, 22, 0.04);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--brand-3);
}

.auth-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(17, 32, 22, 0.12);
    background: rgba(250, 246, 238, 0.9);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
    border-color: rgba(31, 189, 131, 0.45);
    box-shadow: 0 0 0 4px rgba(31, 189, 131, 0.12);
}

.auth-message {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
    display: none;
}

.auth-message.is-error {
    display: block;
    background: rgba(173, 61, 47, 0.12);
    color: var(--danger);
    border: 1px solid rgba(173, 61, 47, 0.16);
}

.auth-actions {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.auth-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(17, 32, 22, 0.12);
    color: var(--text);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.auth-google__mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 900;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(17, 32, 22, 0.1);
}

.auth-footnote {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 32, 22, 0.06);
    color: var(--brand-3);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .hero-grid,
    .page-hero__grid,
    .dashboard-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards-3,
    .stats-grid,
    .steps-grid,
    .resource-grid,
    .keyword-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-grid,
    .cards-2 {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(17, 32, 22, 0.08);
        box-shadow: var(--shadow-lg);
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

    .site-nav__links,
    .site-nav__cta {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
    }

    .site-nav__links a,
    .site-nav__cta .button {
        width: 100%;
    }

    .hero-shell,
    .page-hero__shell {
        padding: 28px;
        border-radius: 28px;
    }

    .trust-strip,
    .kpi-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band {
        grid-template-columns: 1fr;
    }

    .auth-modal__dialog {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section,
    .hero,
    .page-hero {
        padding: 60px 0;
    }

    .hero-shell,
    .page-hero__shell {
        padding: 22px;
    }

    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    .stats-grid,
    .cards-3,
    .steps-grid,
    .faq-grid,
    .resource-grid,
    .keyword-grid,
    .trust-strip,
    .kpi-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .brand__copy small {
        display: none;
    }
}
