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

body {
    background-color: #f5f7fa;
    color: #1e2b3c;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Soft divider */
.divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #d0d9e5 0px, #d0d9e5 4px, transparent 4px, transparent 8px);
    margin: 3rem 0;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.logo-link img {
    height: 100px;
    width: auto;
    display: block;
}

.logo-link span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e4a6d;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
}

.nav-links a {
    color: #4b6f8b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
    color: #1e4a6d;
}

.nav-links a.active {
    color: #1e4a6d;
    border-bottom-color: #1e4a6d;
}

/* Generic hero */
.hero {
    background: linear-gradient(135deg, rgba(30,74,109,0.85), rgba(30,74,109,0.7)), 
                url('couple-pregnancy.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    border-radius: 40px;
    padding: 4rem 3rem;
    color: white;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.hero:hover::before {
    left: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-highlight {
    color: #e0edf5;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    max-width: 500px;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-right {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(224,231,239,0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30,74,109,0.2);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(45, 156, 219);
    margin-bottom: 0.3rem;
    transition: color 0.2s;
}

.stat-card:hover .stat-number {
    color: #1e4a6d;
}

.stat-label {
    color: #6c7e93;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

/* Patient banner */
.patient-banner {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 30px;
    background: linear-gradient(120deg, rgba(30,74,109,0.9), rgba(30,74,109,0.6)),
                url('couple-pregnancy.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: #f7fafc;
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.patient-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.8s;
}

.patient-banner:hover::before {
    left: 100%;
}

.patient-banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.patient-quote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.patient-quote-author {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    color: #e2e8f0;
}

/* Trust row */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e4a6d;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #6c7e93;
    font-size: 0.9rem;
}

/* Section titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 4rem 0 2rem;
    color: #1e2b3c;
    text-align: center;
}

.section-title span {
    color: #1e4a6d;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.step {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid #e0e7ef;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30,74,109,0.15);
}

.step:hover::before {
    left: 100%;
}

.step h3 {
    color: #1e4a6d;
    margin-bottom: 0.5rem;
}

.step p {
    color: #4b6f8b;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e0e7ef;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30,74,109,0.1);
}

.timeline-year {
    font-weight: 700;
    color: #1e4a6d;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: #4b6f8b;
    font-size: 0.9rem;
}

.key-number {
    color: #1e4a6d;
    font-weight: 700;
}

/* Traction grid */
.traction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.traction-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e0e7ef;
    transition: all 0.3s;
}

.traction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30,74,109,0.1);
}

.traction-item h3 {
    color: #1e4a6d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.traction-item p {
    color: #4b6f8b;
    font-size: 0.9rem;
}

/* Team */
.team-container {
    background: transparent;
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid #e0e7ef;
    max-width: 900px;
    margin: 2rem auto;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(30,74,109,0.1);
}

.team-photo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e0edf5;
    filter: drop-shadow(0 10px 20px rgba(30,74,109,0.2));
}

.team-info h3 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #1e4a6d;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-info .title {
    color: #4b6f8b;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.team-info p {
    color: #4b6f8b;
    font-size: 1rem;
    line-height: 1.7;
}

/* LinkedIn icon in team section */
.team-linkedin {
    margin-left: 0.75rem;
    display: inline-flex;
    align-items: center;
    color: #4b6f8b;
    transition: color 0.2s;
    vertical-align: middle;
}

.team-linkedin:hover {
    color: #1e4a6d;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e0e7ef;
    border-radius: 50px;
    padding: 4rem 3rem;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 30px 80px rgba(30,74,109,0.08);
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e2b3c;
}

.cta-section h2 span {
    color: #1e4a6d;
}

.btn-primary {
    display: inline-block;
    background: rgba(30,74,109,0.95);
    color: #ffffff;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(30,74,109,0.3);
}

.btn-primary:hover {
    background: rgba(18,52,77,0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30,74,109,0.4);
}

.contact-info {
    margin-top: 2rem;
    color: #6c7e93;
    font-size: 0.95rem;
}

.contact-info a {
    color: #1e4a6d;
    text-decoration: none;
    font-weight: 500;
}

/* Supported by */
.supported {
    margin: 4rem 0 3rem 0;
    text-align: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid #e0e7ef;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}

.supported p {
    color: #4b6f8b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.supported img {
    height: 55px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s;
    filter: drop-shadow(0 5px 15px rgba(30,74,109,0.15));
    display: inline-block;
    margin: 0 auto;
}

.supported img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    border-top: 1px solid #e0e7ef;
    padding: 2rem 0;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6c7e93;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: #4b6f8b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1e4a6d;
}

/* LinkedIn icon in footer */
.social-link {
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    color: #4b6f8b;
    transition: color 0.2s;
}

.social-link:hover {
    color: #1e4a6d;
}

/* Responsive */
@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .logo-link {
        flex-direction: row;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .hero {
        min-height: 420px;
        padding: 3rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-left {
        margin-bottom: 2rem;
    }

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

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

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

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

    .team-container {
        flex-direction: column;
        text-align: center;
    }

    .trust-row {
        gap: 2rem;
    }

    .patient-banner {
        padding: 2rem 1.5rem;
    }

    .patient-quote {
        font-size: 1.1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-link {
        margin-left: 0;
    }

    .team-info h3 {
        justify-content: center;
    }

    .two-col-section {
        gap: 2rem;
    }

    .two-col-section .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ===== ADDED: Fix line break ===== */
.no-break {
    white-space: nowrap;
    display: inline-block;
}

/* ===== ADDED: Two‑column section alignment (homepage) ===== */
.two-col-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}
.two-col-section > div {
    flex: 1;
    min-width: 250px;
    text-align: left;
}