* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #1e293b;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- HEADER (same as before, with minor tweaks) ----- */
header {
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #0b3b5c;
}

.logo span {
    color: #2a9d8f;
}

.badge {
    background: linear-gradient(145deg, #fef3c7, #ffe4b5);
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid #ffd9a5;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover {
    color: #2a9d8f;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2a9d8f;
    transition: width 0.2s;
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-trial {
    background: linear-gradient(145deg, #0b3b5c, #0e4a6e);
    color: white !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(11,59,92,0.2);
}

.mobile-menu-icon {
    display: none;
    font-size: 28px;
    color: #0b3b5c;
    cursor: pointer;
}

/* ----- HERO SIMPLER & STRONGER ----- */
.hero-simpler {
    background: linear-gradient(145deg, #f0f9ff, #e6f7f5);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 0 0 40px 40px;
}

.hero-simpler-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-simpler-content {
    flex: 1 1 300px;
}

.hero-simpler-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #0b3b5c;
    margin-bottom: 20px;
}

.hero-simpler-content h1 span {
    color: #2a9d8f;
}

.hero-simpler-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.hero-simpler-qr {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hero-simpler-qr p {
    font-weight: 600;
    color: #0b3b5c;
    margin-bottom: 10px;
}

.qr-placeholder img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
}

/* ----- FEATURES GRID (customised) ----- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid #f0f4f8;
    transition: all 0.25s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(42,157,143,0.08);
    border-color: #c0e0dc;
}

.feature-icon {
    font-size: 44px;
    color: #2a9d8f;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0b3b5c;
}

.feature-card p {
    color: #475569;
    font-size: 15px;
}

/* ----- PROBLEM SECTION (What’s Holding You Back) ----- */
.problem-section {
    background: linear-gradient(145deg, #f8fcff, #f1f7fe);
    border-radius: 48px;
    padding: 60px 50px;
    margin: 80px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.problem-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.problem-icon {
    background: linear-gradient(145deg, #ffe8d9, #ffe0cc);
    border-radius: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #c24d2c;
    flex-shrink: 0;
}

.problem-content h4 {
    font-weight: 700;
    color: #0b3b5c;
    margin-bottom: 8px;
    font-size: 18px;
}

.problem-content p {
    color: #4b5e6b;
    font-size: 14px;
    line-height: 1.6;
}

/* ----- TESTIMONIALS (Swiper Carousel) ----- */
.testimonials {
    margin: 80px 0;
    position: relative;
}

.testimonial-swiper {
    padding: 20px 10px 50px !important;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 18px rgba(0,0,0,0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-badge {
    background: #2a9d8f;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 16px;
}

.testimonial-story {
    margin-bottom: 16px;
}

.success-story {
    font-size: 14px;
    font-weight: 600;
    color: #0b3b5c;
    display: block;
    margin-bottom: 4px;
}

.doctor-conversation {
    font-size: 15px;
    color: #334155;
}

.doctor-conversation span {
    color: #6b7280;
    font-style: italic;
}

.testimonial-text {
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.doctor-info {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #ecf1f5;
    padding-top: 20px;
}

.doctor-img img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2a9d8f;
}

.doctor-details h5 {
    font-weight: 700;
    color: #0b3b5c;
    margin-bottom: 2px;
}

.doctor-details span {
    color: #2a9d8f;
    font-weight: 600;
    font-size: 13px;
}

/* Swiper customisation */
.swiper-pagination-bullet-active {
    background: #2a9d8f !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #2a9d8f !important;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

/* ----- FOOTER (EXACT DESIGN FROM SCREENSHOT) ----- */
footer {
    background: #0b2e4a;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-links-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #2a9d8f;
}

.footer-download {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    margin-bottom: 30px;
}

.footer-download h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-download p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.phone-input-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.country-code {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.phone-input-group input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: white;
    font-size: 14px;
}

.send-link-btn {
    background: #2a9d8f;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.send-link-btn:hover {
    background: #21867a;
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-badges a img {
    border-radius: 8px;
    transition: transform 0.2s;
}

.app-badges a img:hover {
    transform: translateY(-2px);
}

.web-browser {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-left: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    padding-top: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom-links a:hover {
    color: #2a9d8f;
}

/* ----- MOBILE RESPONSIVE ----- */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 0 20px 20px 0;
        padding: 30px 20px;
        transition: left 0.3s ease;
        z-index: 99;
        border-top: 2px solid #2a9d8f;
    }
    .main-nav.active {
        left: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    .mobile-menu-icon {
        display: block;
    }
    .header-actions {
        margin-left: auto;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-simpler-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero-simpler-content h1 {
        font-size: 36px;
    }
    .hero-simpler-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .problem-section {
        padding: 40px 20px;
    }
    .problem-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .phone-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .country-code {
        text-align: center;
    }
}