@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=open_in_new');

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

:root {
    --primary: #0E2C3E;
    --accent: #F07F09;
    --accent-glow: rgba(240, 127, 9, 0.25);
    --text-light: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.7);
    --border: rgba(240, 127, 9, 0.25);
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-focus: rgba(240, 127, 9, 0.15);
}

body {
    font-family: 'Source Serif 4', serif;
    background: var(--primary);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Animated background gradient */
.bg-gradient {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(240, 127, 9, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(240, 127, 9, 0.08) 0%, transparent 50%),
        var(--primary);
    animation: gradientPulse 20s ease infinite;
    z-index: 0;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    max-width: 735px;
    margin: 0 auto;
    padding: 80px 32px;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Google Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 48px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.back-link:hover {
    color: var(--accent);
    transform: translateX(-4px);
}

.back-arrow {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.back-link:hover .back-arrow {
    transform: translateX(-4px);
}

/* Header section */
.header {
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-light) 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.subtitle-secondary {
    margin-bottom: 16px;
}

/* Content sections */
.section {
    margin-bottom: 64px;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.section h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--text-light);
}

.section p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Offer/highlight boxes */
.offer-box {
    background: rgba(240, 127, 9, 0.08);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    border-radius: 4px;
}

.offer-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.offer-details {
    display: grid;
    gap: 12px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.offer-item::before {
    content: "→";
    color: var(--accent);
    margin-right: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Callout text */
.callout {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    font-style: italic;
    margin: 32px 0;
    padding: 24px;
    background: rgba(240, 127, 9, 0.12);
    border-radius: 4px;
    text-align: center;
}
.callout-inline {
    margin: 24px 0;
}

.callout-accent {
    color: var(--accent);
}

.highlight-accent {
    color: var(--accent);
    font-weight: 700;
}

.experience-intro {
    margin-top: 24px;
}


/* Engagement cards */
.engagement-grid {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.engagement-card {
    background: rgba(240, 127, 9, 0.08);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 28px;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    background: rgba(240, 127, 9, 0.12);
    transform: translateX(4px);
}

.engagement-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    font-family: 'Google Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.engagement-card .duration {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

/* Lists */
ul {
    list-style: none;
    margin: 16px 0;
}

li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.7;
}

li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Form section */
.form-section {
    margin-top: 80px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.form-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

form {
    display: grid;
    gap: 32px;
}

.form-group {
    display: grid;
    gap: 12px;
}

label {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-leader {
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 1.5em;
}
.link {
    color: var(--accent);
}

.required {
    color: var(--accent);
    font-size: 1.125rem;
}

.label-hint {
    font-family: 'Source Serif 4', serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
    display: block;
    margin-top: 4px;
}

input,
textarea,
select {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    color: var(--text-light);
    background: var(--input-bg);
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: 2px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    background: var(--input-focus);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 127, 9, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23F07F09' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

/* Submit button */
.submit-section {
    margin-top: 16px;
}

.submit-btn {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--accent);
    border: none;
    padding: 20px 48px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    width: 100%;
    border-radius: 2px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: #ff8c1a;
    box-shadow: 0 12px 40px var(--accent-glow);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: rgba(240, 127, 9, 0.3);
    cursor: not-allowed;
    transform: none;
}

/* Privacy note */
.privacy-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 24px;
    line-height: 1.5;
}

/* Success message */
.success-message {
    display: none;
    background: rgba(240, 127, 9, 0.15);
    border: 2px solid var(--accent);
    padding: 40px;
    text-align: center;
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 4px;
}

.success-message.show {
    display: block;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.success-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.success-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .container {
        padding: 48px 24px;
    }

    .offer-box,
    .engagement-card {
        padding: 24px;
    }

    .submit-btn {
        padding: 18px 32px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.material-symbols-outlined {
    font-size: 1em;
}

.problem-statement {
    margin-top: 24px;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.125rem;
}

.section-heading {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.section-subheading {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

.subsection-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--text-light);
}

.situation-box {
    margin-top: 32px;
    border-radius: 4px;
}

.situation-title,
.situation-subtitle {
    margin-top: 0;
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
}

.situation-subtitle {
    margin-top: 32px;
}

.solution-emphasis {
    margin-top: 24px;
    font-weight: 600;
    color: var(--text-light);
}


select {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    color: var(--text-light);
    background: var(--input-bg);
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: 2px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23F07F09' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}
select option {
    color: black;
}

select:focus {
    outline: none;
    background: var(--input-focus);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 127, 9, 0.1);
}


/*********************************************/

.hero {
    padding: 100px 0 56px;
    animation: fadeInUp 0.8s ease-out;
}

.eyebrow {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    line-height: 1.05;
    margin-bottom: 28px;
}

.hero-sub {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 580px;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 56px 0;
}

.tension-block {
    background: rgba(240, 127, 9, 0.06);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 36px 32px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.tension-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.tension-block p:last-child { margin-bottom: 0; }
.tension-block strong { color: var(--accent); }

.dimensions {
    list-style: none;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}

.dimensions li {
    padding-left: 0;
    margin-bottom: 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 16px;
}

.dimensions li::before { content: none; }

.dim-num {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(240, 127, 9, 0.1);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 2px;
    flex-shrink: 0;
}

.outcome-list {
    margin: 0;
    display: grid;
    gap: 14px;
}

.outcome-list li {
    font-size: 1rem;
    color: var(--text-light);
    padding-left: 28px;
}

.avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Google Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: rgba(240, 127, 9, 0.06);
    margin-bottom: 0;
}

.avail-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.format-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.format-pill {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.format-pill .icon { color: var(--accent); }

/* Form extras */
.form-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 48px;
    font-style: italic;
}

.form-group-label {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 48px 0 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.radio-group {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--input-bg);
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.9875rem;
    color: var(--text-muted);
}

.radio-option:hover {
    border-color: var(--accent);
    background: rgba(240, 127, 9, 0.08);
    color: var(--text-light);
}

.radio-option input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    flex-shrink: 0;
}

.radio-option input:focus {
    box-shadow: none;
    border: none;
}

.conditional-field {
    display: none;
    margin-top: 10px;
}

.conditional-field.visible { display: block; }

@media (max-width: 640px) {
    .hero { padding: 64px 0 36px; }
    .tension-block { padding: 24px 20px; }
}

.eyebrow {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.hero {
    padding-top: 16px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 4.2rem);
    margin-bottom: 28px;
}

.warning-bar {
    background: rgba(240, 127, 9, 0.08);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 24px 28px;
    margin-top: 40px;
    border-radius: 4px;
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.warning-bar strong {
    color: var(--accent);
    font-style: italic;
}

.page-section {
    padding: 56px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeIn 1s ease-out both;
}

.section-label {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.page-section h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.018em;
    line-height: 1.2;
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
    margin-bottom: 20px;
}

.page-section p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}
.page-section p:last-child { margin-bottom: 0; }

/* Audience card list — override global li layout */
.audience-list {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}
.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    transition: background 0.25s ease, border-color 0.25s ease;
    position: static;
    padding-left: 22px;
}
.audience-list li::before { display: none; }
.audience-list li:hover {
    background: rgba(240, 127, 9, 0.08);
    border-color: var(--border);
}
.audience-list .arr {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.7;
}

/* Numbered dimensions */
.dimensions {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}
.dim-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(240, 127, 9, 0.08);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    transition: transform 0.25s ease, background 0.25s ease;
}
.dim-item:hover {
    transform: translateX(6px);
    background: rgba(240, 127, 9, 0.13);
}
.dim-num {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.45;
    line-height: 1.35;
    min-width: 28px;
}
.dim-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.5;
    padding-top: 2px;
}

/* Pull-quote — extends .offer-box pattern */
.pull-quote {
    margin-top: 48px;
    padding: 32px 36px;
    background: rgba(240, 127, 9, 0.09);
    border-radius: 4px;
    border-left: 4px solid var(--accent);
}
.pull-quote p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-style: italic;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0 !important;
}
.pull-quote .accent-line { color: var(--accent); }

/* Format stat cards */
.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.format-card {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    text-align: center;
}
.format-card .f-value {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}
.format-card .f-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* In-form section divider */
.form-block-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 40px 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-block-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.form-block-title:first-child { margin-top: 0; }

/* Form section heading (inherits .page-section h2 look) */
.form-section-heading {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.018em;
    color: var(--text-light);
    margin-bottom: 16px;
}

@media (max-width: 640px) {
    .format-grid { grid-template-columns: 1fr; }
    .pull-quote { padding: 22px 22px; }
}