﻿@import url('https://fonts.googleapis.com/css2?family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --red: #D0021B;
    --red-dark: #9B0014;
    --red-light: #fff0f1;
    --navy: #0D1B2A;
    --navy-mid: #1A2E45;
    --slate: #4A5568;
    --muted: #718096;
    --border: #E2E8F0;
    --bg: #FAFAF9;
    --white: #ffffff;
    --green: #1D9E75;
    --amber: #D97706;
    --blue: #1A3A8F;
    --font-display: "Winky Sans", sans-serif;
    --font-body: "Winky Sans", sans-serif;
    --radius: 10px;
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--navy);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

/* NAV — identical to homepage */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px
}

    .nav-logo span {
        color: var(--red)
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--slate);
        text-decoration: none;
        transition: color .2s
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--red)
        }

.nav-cta {
    background: var(--red);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s,transform .15s
}

    .nav-cta:hover {
        background: var(--red-dark);
        transform: translateY(-1px)
    }

.nav-phone {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    margin-right: 16px
}

/* BREADCRUMB */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 5%;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px
}

    .breadcrumb a {
        color: var(--muted);
        text-decoration: none
    }

        .breadcrumb a:hover {
            color: var(--red)
        }

    .breadcrumb span {
        color: var(--border)
    }

/* HERO */
.hero {
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 72px 5% 72px;
    background: linear-gradient(135deg,#fff 0%,#fff8f8 60%,#fff0ee 100%);
    position: relative;
    overflow: hidden
}

    .hero::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(208,2,27,.06) 0%,transparent 70%);
        border-radius: 50%
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-light);
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px,4vw,54px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 18px
}

    .hero h1 em {
        color: var(--red);
        font-style: normal
    }

.hero-sub {
    font-size: 16px;
    color: var(--slate);
    max-width: 500px;
    margin-bottom: 28px;
    line-height: 1.7
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.btn-primary {
    background: var(--red);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(208,2,27,.3)
}

    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(208,2,27,.35)
    }

.btn-outline {
    background: transparent;
    color: var(--navy);
    padding: 13px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

    .btn-outline:hover {
        border-color: var(--navy);
        background: var(--navy);
        color: #fff
    }

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted)
}

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px
}

/* HERO VISUAL */
.hero-visual {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
    animation: floatIn .8s ease both
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .2s,box-shadow .2s
}

    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg)
    }

.stat-num {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500
}

.module-preview {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 20px 24px;
    color: #fff
}

.mp-title {
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    margin-bottom: 12px
}

.mp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.mp-tag {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.1);
    transition: background .2s;
    cursor: default
}

    .mp-tag:hover {
        background: rgba(208,2,27,.5)
    }

    .mp-tag.highlight {
        background: var(--red);
        color: #fff;
        border-color: var(--red)
    }

/* SECTIONS */
section {
    padding: 80px 5%
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px,3vw,40px);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px
}

.section-sub {
    font-size: 16px;
    color: var(--slate);
    max-width: 560px;
    line-height: 1.7
}

/* MODULES TABS */
.tabs-wrap {
    margin-top: 48px
}

.tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0
}

.tab-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
    border-radius: var(--radius) var(--radius) 0 0
}

    .tab-btn:hover {
        color: var(--navy)
    }

    .tab-btn.active {
        color: var(--red);
        border-bottom-color: var(--red);
        font-weight: 600
    }

.tab-panel {
    display: none
}

    .tab-panel.active {
        display: grid;
        grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
        gap: 14px;
        animation: fadeUp .3s ease
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: all .2s;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

    .mod-card:hover {
        border-color: var(--red);
        box-shadow: var(--shadow);
        transform: translateY(-2px)
    }

.mod-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.mod-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px
}

.mod-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

.mod-link {
    font-size: 12px;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px
}

    .mod-link:hover {
        text-decoration: underline
    }

/* MODULE COUNT BADGE */
.count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-light);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-left: 12px;
    vertical-align: middle
}

/* COMPARISON TABLE */
.compare-wrap {
    margin-top: 48px;
    overflow-x: auto
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

thead tr {
    background: var(--navy);
    color: #fff
}

th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .03em
}

    th:first-child {
        border-radius: var(--radius) 0 0 0
    }

    th:last-child {
        border-radius: 0 var(--radius) 0 0
    }

td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--slate);
    font-size: 14px
}

tr:hover td {
    background: #fafafa
}

.check {
    color: var(--green);
    font-size: 16px;
    font-weight: 700
}

.cross {
    color: #E53E3E;
    font-size: 16px
}

.highlight-col {
    background: var(--red-light) !important;
    font-weight: 600;
    color: var(--navy)
}

.highlight-head {
    background: var(--red) !important
}

/* PROCESS STEPS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 0;
    margin-top: 48px;
    position: relative
}

    .process-grid::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 0;
        right: 0;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--red) 0,var(--red) 20px,transparent 20px,transparent 32px);
        z-index: 0
    }

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(208,2,27,.3)
}

.step h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px
}

.step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
}

/* WHY GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 16px;
    margin-top: 48px
}

.why-item {
    padding: 24px;
    border-left: 3px solid var(--red);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: box-shadow .2s
}

    .why-item:hover {
        box-shadow: var(--shadow)
    }

.why-icon {
    font-size: 24px;
    margin-bottom: 10px
}

.why-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px
}

.why-item p {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.6
}

/* FAQ */
.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s;
    user-select: none
}

    .faq-q:hover {
        background: #fafafa
    }

    .faq-q .arrow {
        font-size: 18px;
        color: var(--red);
        transition: transform .25s;
        flex-shrink: 0
    }

.faq-a {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease,padding .35s ease
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 22px 18px
}

.faq-item.open .arrow {
    transform: rotate(45deg)
}

/* TESTIMONIALS */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
    margin-top: 48px
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative
}

    .testi-card::before {
        content: '\201C';
        font-family: var(--font-display);
        font-size: 64px;
        color: var(--red-light);
        position: absolute;
        top: 12px;
        left: 18px;
        line-height: 1
    }

.testi-text {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 16px;
    margin-top: 24px
}

.testi-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy)
}

.testi-role {
    font-size: 12px;
    color: var(--muted)
}

.stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 8px
}

/* DEMO CTA SECTION */
.demo-section {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    margin: 0 5%;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden
}

    .demo-section::before {
        content: '';
        position: absolute;
        right: -100px;
        top: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,rgba(208,2,27,.25) 0%,transparent 70%);
        border-radius: 50%
    }

    .demo-section h2 {
        font-family: var(--font-display);
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 16px
    }

        .demo-section h2 em {
            color: #ff6b6b;
            font-style: normal
        }

    .demo-section p {
        color: rgba(255,255,255,.7);
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.7
    }

.demo-form {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 28px
}

.form-group {
    margin-bottom: 14px
}

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: rgba(255,255,255,.6);
        margin-bottom: 5px;
        letter-spacing: .04em;
        text-transform: uppercase
    }

    .form-group input, .form-group select {
        width: 100%;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        border-radius: var(--radius);
        padding: 10px 14px;
        color: #fff;
        font-size: 14px;
        font-family: var(--font-body);
        outline: none;
        transition: border .2s
    }

        .form-group input::placeholder {
            color: rgba(255,255,255,.3)
        }

        .form-group input:focus, .form-group select:focus {
            border-color: rgba(208,2,27,.6)
        }

        .form-group select option {
            background: var(--navy);
            color: #fff
        }

.btn-white {
    background: #fff;
    color: var(--red);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: var(--font-body)
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.25)
    }

/* CTA SECTION */
.cta-section {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 80px 5%
}

    .cta-section h2 {
        font-family: var(--font-display);
        font-size: clamp(26px,3.5vw,44px);
        margin-bottom: 16px;
        line-height: 1.15
    }

    .cta-section p {
        font-size: 17px;
        color: rgba(255,255,255,.85);
        margin-bottom: 36px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto
    }

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.5);
    transition: all .2s
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.15);
        border-color: #fff
    }

/* FOOTER — identical to homepage */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.6);
    padding: 60px 5% 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px
}

    .footer-logo span {
        color: #ff6b6b
    }

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    max-width: 280px;
    margin-bottom: 20px
}

.footer-contact a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 6px
}

    .footer-contact a:hover {
        color: #fff
    }

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none
}

.footer-col li {
    margin-bottom: 8px
}

.footer-col a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s
}

    .footer-col a:hover {
        color: #fff
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px
}

.social-links {
    display: flex;
    gap: 12px
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 13px;
    transition: background .2s,color .2s
}

    .social-link:hover {
        background: var(--red);
        color: #fff
    }

/* RESPONSIVE */
@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 48px 5%
    }

    .hero-visual {
        order: -1
    }

    .demo-section {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        margin: 0 4%
    }

    .process-grid::before {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    nav .nav-links {
        display: none
    }
}

@media(max-width:600px) {
    .stat-cards {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    section {
        padding: 56px 5%
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    th, td {
        padding: 10px 12px;
        font-size: 13px
    }
}
