:root {
    --bg: #e2e8f0; /* More substantial light gray */
    --card: #ffffff; /* Pure white */
    --accent: #7dd3fc; /* Soft sky blue */
    --text: #1e293b; /* Dark blue-gray for text */
    --muted: #64748b; /* Medium gray for muted text */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.form-wrapper {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.form-wrapper > footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 15px;
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.05);
}

header { text-align: center; margin-bottom: 30px; }
header h1 { color: var(--accent); margin: 0; font-size: 2.5rem; letter-spacing: -1px; }
header p { color: var(--muted); margin: 5px 0 0; font-size: 0.9rem; }

.card {
    width: 100%;
    max-width: 420px;
    background: var(--card);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.field { margin-bottom: 18px; }
label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: var(--card);
    color: var(--text);
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 30px;
}

input:focus, textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }

button {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.1s;
}

button:hover { filter: brightness(1.1); }
button:active { transform: scale(0.98); }

.status-box { margin-top: 20px; padding: 12px; border-radius: 6px; text-align: center; font-size: 0.9rem; }
.hidden { display: none; }
.success { background: rgba(34, 197, 94, 0.2); color: #4ade80; border: 1px solid #22c55e; }
.error { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid #ef4444; }

main {
    margin-top: 120px;
}

.form-wrapper footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 15px;
    background: var(--bg);
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Landing Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section {
    background: linear-gradient(135deg, var(--bg) 0%, var(--card) 50%, var(--bg) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.intro-heading {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-heading span {
    color: var(--accent);
    position: relative;
}

.intro-heading span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.intro-subheading {
    font-size: 1.3rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.intro-section .cta-button {
    background: var(--accent);
    color: var(--bg);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
    border: 2px solid var(--accent);
}

.intro-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
    background: var(--bg);
    color: var(--accent);
}

.site-header {
    background: var(--card);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .subtitle {
    color: var(--muted);
    font-size: 0.8em;
    font-weight: normal;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links li {
    margin: 0;
}

.nav-item {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-item:hover {
    color: var(--accent);
}

.nav-item:visited {
    color: var(--text);
}

.cta-link {
    background: var(--accent);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: filter 0.2s;
}

.cta-link:hover {
    filter: brightness(1.1);
}

.cta-link:visited {
    background: var(--accent);
    color: var(--bg);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, filter 0.2s;
}

.intro-section {
    /* Extra top padding (8rem) ensures the fixed header doesn't cover the text */
    padding: 8rem 0 2rem;
    background: var(--bg);
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.promo-tag {
    background: var(--accent);
    color: var(--bg);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: bold;
    margin-right: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
}


.cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.services {
    padding: 4rem 0;
    background: var(--bg);
}

.services h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.service-card h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
}

.pricing {
    padding: 4rem 0;
    background: var(--card);
}

.pricing h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-card h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 1rem;
}

.price .period {
    font-size: 1rem;
    color: var(--muted);
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 0.8rem;
    color: var(--muted);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-button {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: filter 0.2s, transform 0.2s;
    margin-top: 1rem;
}

.pricing-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.pricing-button.featured-btn {
    background: var(--accent);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.about {
    padding: 4rem 0;
    background: var(--card);
}

.about h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text);
}

.about-text ul {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.image-placeholder {
    background: var(--bg);
    border: 2px dashed var(--muted);
    border-radius: 8px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-style: italic;
}

.promise {
    padding: 4rem 0;
    background: var(--bg);
    text-align: center;
}

.promise h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.promise-text {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.logo-placeholder {
    font-size: 1.5rem;
    color: var(--accent);
    font-style: italic;
    margin: 2rem 0;
    padding: 2rem;
    border: 2px dashed var(--accent);
    border-radius: 8px;
    display: inline-block;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--card) 0%, var(--bg) 100%);
    text-align: center;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.website-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.website-link:hover {
    text-decoration: underline;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: bold;
    margin-top: 2rem;
}

footer {
    background: var(--card);
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 0;
}

footer .container {
    text-align: center;
}

footer p {
    color: var(--muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .intro-heading {
        font-size: 2.5rem;
    }

    .promise h3,
    .services h3,
    .pricing h3,
    .cta-section h3 {
        font-size: 2rem;
    }
}

/* Brochureware Page Styles */
.brochure-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg) 0%, var(--card) 100%);
    text-align: center;
}

.brochure-hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.persona-card {
    background: var(--card);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.persona-icon {
    font-size: 3rem;
    background: var(--accent);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.persona-text p {
    margin: 0.5rem 0;
    color: var(--text);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--muted);
    margin-top: 2rem;
    font-style: italic;
}

.comparison-section {
    padding: 4rem 0;
    background: var(--bg);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.growth-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.method-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.goal-section {
    padding: 4rem 0;
    background: var(--card);
    text-align: center;
}

.goal-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.goal-content {
    max-width: 800px;
    margin: 0 auto;
}

.goal-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 2rem;
}

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

.arrow {
    font-size: 3rem;
    margin: 2rem 0;
}

.reactive-proactive {
    padding: 4rem 0;
    background: var(--bg);
}

.reactive-proactive h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.comparison-card li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.proactive li:before {
    content: "✓";
}

.brochure-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    color: white;
}

.brochure-cta h2 {
    color: white;
}

.brochure-cta .cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 1.5rem;
}

.brochure-btn {
    background: white;
    color: var(--accent);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    margin: 2rem 0;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.brochure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-note {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile responsiveness for brochure */
@media (max-width: 768px) {
    .brochure-hero h1 {
        font-size: 2.5rem;
    }

    .persona-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .persona-text p {
        text-align: center;
    }

    .comparison-section h2,
    .reactive-proactive h2,
    .goal-section h2 {
        font-size: 2rem;
    }

    .growth-methods,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

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

/* Alternative Step-by-Step Layout for Non-Technical Users */
.step-section {
    padding: 4rem 0;
    background: var(--bg);
    scroll-margin-top: 140px; /* Offset for fixed header */
}

.step-section:first-of-type {
    padding: 4rem 0 4rem;
}

.step-section:nth-child(even) {
    background: var(--card);
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--text);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin: 0;
}

.step-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Step 1: The Problem */
.story-card {
    background: var(--card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--accent);
    margin: 0 auto;
    max-width: 800px;
}

.story-card h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-scenario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.scenario-problem h4 {
    color: #dc2626;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.scenario-problem ul {
    list-style: none;
    padding: 0;
}

.scenario-problem li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.scenario-problem li:before {
    content: "❌";
    position: absolute;
    left: 0;
    color: #dc2626;
}

.scenario-feeling {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.feeling-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #991b1b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feeling-explain {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Step 2: The Better Way */
.solution-card {
    background: var(--card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid #10b981;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card h3 {
    color: #059669;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.benefit-item h4 {
    color: #059669;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Step 3: How We Help */
.help-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    background: var(--card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--accent);
    min-width: 200px;
    flex: 1;
}

.process-step h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent);
    font-weight: bold;
}

/* Step 4: Take Action */
.cta-step {
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%) !important;
    color: white;
}

.cta-step .step-header h2,
.cta-step .step-number {
    color: white;
}

.final-cta {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h3 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.final-cta .brochure-btn {
    margin: 2rem 0;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.trust-message {
    color: var(--muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Mobile responsiveness for step layout */
@media (max-width: 768px) {
    .step-section {
        padding: 3rem 0;
    }

    .step-header h2 {
        font-size: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .story-scenario {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-benefits {
        grid-template-columns: 1fr;
    }

    .help-process {
        flex-direction: column;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

    .story-card,
    .solution-card,
    .final-cta {
        padding: 1.5rem;
    }
}

/* The Tui Test Section */
.tui-test-section {
    padding: 4rem 0;
    background: var(--card);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.tui-test-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tui-test-content h2 {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tui-test-intro {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.tui-test-scenario {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.tui-test-scenario h3 {
    color: var(--text);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tui-test-scenario p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text);
}

.tui-test-questions {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent);
}

.tui-test-questions h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tui-test-questions ul {
    list-style: none;
    padding: 0;
}

.tui-test-questions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text);
}

.tui-test-questions li:last-child {
    border-bottom: none;
}

.tui-test-reveal {
    text-align: center;
    margin-top: 2rem;
}

.tui-test-reveal-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.tui-test-cta {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    font-style: italic;
}

/* Mobile styles for Tui Test */
@media (max-width: 768px) {
    .tui-test-content h2 {
        font-size: 2rem;
    }

    .tui-test-scenario {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .tui-test-scenario h3 {
        font-size: 1.5rem;
    }

    .tui-test-questions {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}