* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #fafafa;
    --surface: #ffffff;
    --surface-alt: #f2f2f2;
    --primary: #E53935;
    --primary-dark: #C62828;
    --primary-light: rgba(229, 57, 53, 0.06);
    --text: #111111;
    --text-muted: #666666;
    --border: #e0e0e0;
    --border-light: #eeeeee;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --radius: 6px;
    font-family: 'Inter', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    text-decoration: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ─── Header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header--scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 72px;
}

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

.brand-icon {
    width: 36px;
    height: 36px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.02;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.brand-subname {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: none;
}

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

.site-nav a {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.site-nav a:hover {
    color: var(--text);
}

.site-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--radius);
    padding: 13px 28px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn:focus-visible {
    outline: 3px solid rgba(229, 57, 53, 0.3);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.35);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.2);
}

.btn-secondary {
    background: rgba(229, 57, 53, 0.06);
    color: var(--primary);
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.btn-secondary:hover {
    background: rgba(229, 57, 53, 0.12);
    border-color: rgba(229, 57, 53, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.btn-ghost:hover {
    background: rgba(229, 57, 53, 0.06);
}

.btn-link {
    background: transparent;
    padding: 8px 12px;
    color: var(--primary);
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* ─── Sections ─── */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--surface);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 56px auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ─── Hero ─── */
.hero {
    padding: 130px 0 110px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Geometric decorations */
.hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -100px;
    width: 600px;
    height: 600px;
    border: 2.5px solid var(--primary);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-15deg);
    border-radius: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 120px;
    right: -20px;
    width: 380px;
    height: 380px;
    border: 2.5px solid var(--primary);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    transform: rotate(25deg);
    border-radius: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.6rem;
    line-height: 1.06;
    margin-bottom: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.hero-text h1 span.accent {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px 6px 14px;
    border-radius: var(--radius);
    background: var(--primary-light);
    border-left: 3px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-hero {
    padding: 20px 52px;
    font-size: 0.95rem;
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 240px;
    box-shadow: 0 8px 28px rgba(229, 57, 53, 0.3);
}

.btn-hero:hover {
    box-shadow: 0 12px 36px rgba(229, 57, 53, 0.4);
}

.btn-hero .btn-subtext {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-transform: none;
    letter-spacing: 0;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.hero-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.hero-aside {
    display: grid;
    gap: 16px;
}

.stat-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(229, 57, 53, 0.3));
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-value {
    font-size: clamp(1.85rem, 3.6vw, 2.8rem);
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-caption {
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
}

/* ─── Impact Strip ─── */
.impact-strip {
    background: var(--text);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.impact-strip::before {
    content: '';
    position: absolute;
    left: -20%;
    top: -50%;
    width: 200px;
    height: 200%;
    background: rgba(229, 57, 53, 0.1);
    transform: rotate(15deg);
    pointer-events: none;
}

.impact-strip::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -50%;
    width: 150px;
    height: 200%;
    background: rgba(229, 57, 53, 0.08);
    transform: rotate(-10deg);
    pointer-events: none;
}

.impact-inner {
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.impact-text {
    max-width: 680px;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* ─── Audience ─── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.audience-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 30px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.audience-problem {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.audience-solution {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ─── Process Steps ─── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    background: transparent;
    border-radius: 0;
    padding: 28px 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.step:last-child {
    border-bottom: none;
}

.step:hover {
    padding-left: 8px;
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2);
    flex-shrink: 0;
}

.step-body h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.step-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── Results / Deliverables ─── */
.results {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 40px;
    align-items: start;
}

.results-intro h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.results-intro p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.results-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.highlight {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.highlight strong {
    font-size: 1rem;
    font-weight: 700;
}

.highlight span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.results-card {
    background: var(--text);
    border-radius: var(--radius);
    border: none;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: rgba(229, 57, 53, 0.12);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.results-caption {
    display: block;
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.results-card ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.results-card li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #ffffff;
    align-items: baseline;
}

.results-card li span {
    color: rgba(255, 255, 255, 0.55);
    max-width: 55%;
    font-size: 0.9rem;
}

.results-card li strong {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
}

/* ─── Trust ─── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-badge {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 40px 24px;
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.trust-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust-badge:hover::after {
    transform: scaleX(1);
}

.trust-title {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.trust-caption {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ─── Deployment ─── */
.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.deployment-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deployment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.deployment-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.deployment-card:hover::before {
    transform: scaleX(1);
}

.deployment-card h3 {
    margin-bottom: 16px;
    font-size: 1.15rem;
    font-weight: 700;
}

.deployment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.93rem;
}

.deployment-card li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.deployment-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--primary);
}

/* ─── FAQ ─── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ─── CTA Section ─── */
.cta-section {
    background: var(--text);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(229, 57, 53, 0.12);
    border-radius: 0;
    transform: rotate(30deg);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    background: transparent;
    border-radius: 0;
    padding: 56px 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.cta-actions .btn-primary {
    box-shadow: 0 6px 24px rgba(229, 57, 53, 0.35);
    padding: 16px 40px;
    font-size: 0.88rem;
}

.cta-contact {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.cta-contact:hover {
    color: var(--primary);
}

/* ─── Footer ─── */
.footer {
    padding: 40px 0 48px;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ─── Modal ─── */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 100;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--surface);
    border-radius: 8px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    border: 1px solid var(--border-light);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.modal-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.modal-close {
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.modal-close:hover {
    color: var(--text);
    background: var(--surface-alt);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.95rem;
    background: var(--bg);
    color: var(--text);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
    background: var(--surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(17, 17, 17, 0.3);
}

.submit-btn {
    width: 100%;
    margin-top: 4px;
    padding: 14px 28px;
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ─── Notifications ─── */
.notification-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 120;
    pointer-events: none;
}

.notification {
    min-width: 260px;
    max-width: 320px;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
    font-size: 0.9rem;
}

.notification-show {
    opacity: 1;
    transform: translateY(0);
}

.notification-success {
    background: #1b8a3f;
}

.notification-error {
    background: var(--primary);
}

.notification-info {
    background: #222222;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-content,
    .results {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-card {
        padding: 22px;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .results-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .step {
        grid-template-columns: 56px minmax(0, 1fr);
    }
}

@media (max-width: 880px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 12px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cta-actions {
        width: 100%;
        align-items: stretch;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .results-intro h2 {
        font-size: 2.1rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .trust-title {
        font-size: 2.2rem;
    }

    .hero-aside {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

@media (max-width: 768px) {
    .hero::after,
    .hero::before {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 96px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 72px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .results-intro h2 {
        font-size: 1.75rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 28px 22px;
    }

    .audience-card,
    .results-card,
    .trust-badge,
    .deployment-card,
    .faq-item {
        padding: 24px;
    }

    .step {
        grid-template-columns: 1fr;
    }

    .hero-pills {
        gap: 8px;
    }

    .trust-title {
        font-size: 2rem;
    }

    .results-highlights {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .header-actions .btn,
    .header-actions .btn-link {
        width: 100%;
        justify-content: center;
    }

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