:root {
    --blue: #006fe6;
    --blue-dark: #083a73;
    --ink: #172033;
    --muted: #607089;
    --line: #dbe5f2;
    --soft: #f5f8fc;
    --white: #ffffff;
    --green: #19a56b;
    --shadow: 0 18px 50px rgba(18, 47, 84, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.section {
    padding: 84px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.header-inner {
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--white);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.08rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.8rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-weight: 700;
}

.main-nav a,
.site-footer a {
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--blue);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.hero {
    padding: 96px 0 84px;
    background:
        linear-gradient(135deg, rgba(0, 111, 230, 0.1), rgba(25, 165, 107, 0.08)),
        var(--soft);
}

.hero-grid,
.two-column,
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 58px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 6vw, 4.6rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.08;
}

h3 {
    font-size: 1.22rem;
    line-height: 1.25;
}

.hero-lead,
.section-heading p,
.solution-card p,
.two-column p,
.final-cta p,
.thanks-card p {
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 111, 230, 0.22);
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-note {
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 700;
}

.hero-panel,
.solution-card,
.offer-card,
.info-card,
.thanks-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 34px;
}

.profile-panel {
    display: grid;
    gap: 20px;
}

.profile-photo {
    width: 100%;
    max-height: 360px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center top;
}

.contact-panel {
    display: grid;
    gap: 18px;
}

.contact-line {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.contact-line i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: rgba(0, 111, 230, 0.1);
    color: var(--blue);
}

.contact-line strong {
    margin: 0 0 2px;
    font-size: 1rem;
}

.contact-line p {
    margin: 0;
    color: var(--muted);
}

.contact-line a {
    color: var(--blue);
    text-decoration: none;
}

.legal-layout {
    display: grid;
    gap: 18px;
}

.legal-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 30px;
}

.legal-card h2 {
    font-size: 1.55rem;
}

.legal-card p:last-child,
.legal-card .check-list:last-child,
.legal-card .legal-list:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.legal-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.legal-list div {
    display: grid;
    grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.legal-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-list dt {
    color: var(--muted);
    font-weight: 800;
}

.legal-list dd {
    margin: 0;
}

.legal-pills {
    margin: 18px 0;
    justify-content: flex-start;
}

.hero-panel strong {
    display: block;
    margin-top: 8px;
    font-size: 1.55rem;
    line-height: 1.2;
}

.panel-label,
.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(0, 111, 230, 0.1);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 10px;
}

.check-list,
.issue-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li,
.issue-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

.issue-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
}

.compact {
    margin-top: 22px;
}

.problem-section,
.format-section,
.audience-section,
.faq-section {
    background: var(--white);
}

.solution-section,
.process-section,
.topics-section {
    background: var(--soft);
}

.solution-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: center;
    padding: 38px;
}

.pill-grid,
.audience-grid,
.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-grid span,
.audience-grid span,
.topics-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
}

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

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

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

.offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.offer-card.featured {
    border-color: rgba(0, 111, 230, 0.45);
}

.offer-card .tag {
    position: absolute;
    top: 18px;
    right: 18px;
}

.offer-price {
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 1.85rem;
    font-weight: 900;
}

.offer-card ul {
    flex: 1;
    padding-left: 20px;
    margin: 8px 0 26px;
    color: var(--muted);
}

.offer-card li {
    margin-bottom: 9px;
}

.offer-card .btn {
    width: 100%;
}

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

.info-card {
    padding: 30px;
}

.info-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: rgba(0, 111, 230, 0.1);
    color: var(--blue);
    font-size: 1.35rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.steps li {
    min-height: 160px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 800;
}

.steps span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
}

.process-note {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    text-align: center;
}

.summary-section {
    background: var(--blue-dark);
    color: var(--white);
}

.summary-section .eyebrow,
.summary-section .check-list li::before {
    color: #87d9ff;
}

.summary-section p,
.summary-section .check-list {
    color: rgba(255, 255, 255, 0.82);
}

.audience-grid,
.topics-list {
    justify-content: center;
}

.topics-list {
    justify-content: flex-start;
}

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

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

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 900;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.final-cta {
    background: var(--ink);
    color: var(--white);
}

.final-cta-inner {
    max-width: 900px;
    text-align: center;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.78);
}

.final-cta .hero-actions {
    justify-content: center;
}

.site-footer {
    padding: 32px 0;
    background: #0d1422;
    color: var(--white);
}

.site-footer p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.thanks-page {
    min-height: 100vh;
    background: var(--soft);
}

.thanks-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.thanks-card {
    width: min(760px, 100%);
    padding: 42px;
}

.thanks-brand {
    margin-bottom: 36px;
}

.thanks-card h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

@media (max-width: 1040px) {
    .offers-grid,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .section {
        padding: 62px 0;
    }

    .header-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .main-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
        gap: 16px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 64px;
    }

    .hero-grid,
    .two-column,
    .faq-grid,
    .solution-card,
    .format-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .steps li {
        min-height: auto;
    }

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

    .btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-panel,
    .solution-card,
    .offer-card,
    .info-card,
    .legal-card,
    .thanks-card {
        padding: 24px;
    }

    .legal-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
