@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary-blue: #2563EB;
    /* Bright trustworthy blue */
    --primary-dark: #1E3A8A;
    /* Deep blue for headings */
    --accent-green: #10B981;
    /* Success green */
    --whatsapp-green: #25D366;

    /* Text Colors */
    --text-main: #1E293B;
    --text-body: #475569;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-blue-light: #EFF6FF;

    /* Spacing */
    --container-padding: 1.5rem;
    /* Tighter mobile padding */
    --section-spacing: 5rem;
    /* Standardized vertical rhythm */
    --card-padding: 2rem;
    --max-width: 1100px;
    /* Slightly narrower for focus */

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    /* Softer, modern corners */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    /* Smoother shadow */
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    /* Larger touch target */
    font-weight: 600;
    border-radius: 50px;
    /* Pill shape for modern feel */
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--accent-green);
    /* WhatsApp style or success */
    color: var(--text-white);
    border: none;
}

.btn-secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--bg-blue-light);
}

/* Section Spacing */
.section-padding {
    padding: var(--section-spacing) 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    padding: 8rem 0 5rem;
    background: white;
    /* Clean white background */
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #0f172a;
    /* Darker, higher contrast */
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .btn {
    height: 3.5rem;
    /* Enforced same height */
    padding: 0 2rem;
    font-size: 1rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    /* Slight scale for premium feel */
}

.trust-signals {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.trust-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
}

/* Mobile Hero */
@media (max-width: 992px) {
    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
        background: white;
        /* Ensure bg matches */
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        order: 1;
        /* Ensure text is first */
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-image-wrapper {
        order: 2;
        margin: 0 -1rem;
        /* Full width feel on mobile */
        border-radius: 0;
        box-shadow: none;
        width: calc(100% + 2rem);
        position: relative;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        height: 3.5rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-signals {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Pain Points Section */
.pain-point-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
    /* Changed from center for more serious look */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(239, 68, 68, 0.2);
    /* Subtle red alert for pain */
}

.pain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #fecaca;
    /* Soft red */
    opacity: 0.5;
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    background: #fef2f2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ef4444;
    /* Red for pain points */
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    background: white;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.1);
}

.feature-icon-box {
    background: var(--bg-blue-light);
    color: var(--primary-blue);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.feature-text h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-text p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
}

.trust-enhancer {
    text-align: center;
    margin-top: 3.5rem;
    color: var(--text-body);
    font-weight: 500;
    font-size: 1.05rem;
}

.trust-enhancer span {
    color: var(--accent-green);
    font-weight: 700;
}

.soft-cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.soft-cta:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.course-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    z-index: 2;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-header {
    background: white;
    padding: 2rem 2rem 1rem;
    border-bottom: none;
}

.course-header h3 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.course-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.course-body {
    padding: 1rem 2rem 2rem;
    flex-grow: 1;
}

.course-list {
    margin: 1.5rem 0;
}

.course-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-body);
}

.course-list li::before {
    content: "✓";
    color: var(--primary-blue);
    /* Blue checks */
    font-weight: 800;
    flex-shrink: 0;
}

.course-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: none;
    text-align: center;
}

/* Results Section */
.results-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.result-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-green);
}

.result-score {
    font-size: 3.5rem;
    /* Dominant score */
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.result-type {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.student-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Trainers/Mentor Section */
.trainers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trainer-card {
    /* Resetting card styles to be a layout container now */
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    text-align: left;
    display: block;
}

.trainer-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.trainer-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.mentor-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.mentor-role {
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.mentor-bio {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.authority-bullets {
    margin-bottom: 2rem;
}

.authority-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.authority-icon {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.mentor-quote {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-sm);
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.mentor-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.mentor-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* Navigation & Header */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
    line-height: 1;
}

.logo .highlight {
    color: var(--primary-blue);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-icon {
    color: #25D366;
    font-size: 1.2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        /* Below navbar */
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-cta-group {
        display: none;
        /* Hide desktop CTA group on mobile, link moved inside menu or bottom bar */
    }

    /* Inject CTA into mobile menu logic if needed or keep sticky bottom */
}

@media (max-width: 768px) {
    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mentor-content {
        order: 2;
    }

    .trainer-image-wrapper {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.faq-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

details.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.2);
}

details.faq-item summary {
    list-style: none;
    /* Hide default marker */
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.05rem;
    position: relative;
    padding-right: 2rem;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

details.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

details.faq-item[open] {
    background: white;
    /* Or slightly darker if desired */
    box-shadow: var(--shadow-md);
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    text-align: center;
    border-radius: 0;
    /* Full width usually */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.trust-line {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Footer Section */
.footer {
    background: #0f172a;
    /* Slate 900 */
    color: #cbd5e1;
    /* Slate 300 */
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    color: #cbd5e1;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links span {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.85rem;
}

.copyright p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #F59E0B;
    /* Amber 500 */
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: "“";
    font-size: 5rem;
    color: var(--bg-blue-light);
    position: absolute;
    top: -40px;
    left: -15px;
    z-index: -1;
    font-family: serif;
    opacity: 0.5;
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.student-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.student-info strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.result-badge {
    display: inline-block;
    background: #ecfdf5;
    /* Green 50 */
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-top: 0.25rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

/* Connector line for desktop */
@media (min-width: 1024px) {
    .process-steps::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: #e2e8f0;
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    background: white;
    /* To hide line behind if needed, but transparent looks better with layout */
    padding: 0 1rem;
    text-align: center;
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px white;
    /* Clear space around line */
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-body);
}

.process-arrow {
    display: none;
    /* Hidden by default, can use CSS shapes if preferred */
}