:root {
    --primary:       #0A55CD;
    --primary-light: #2B6FE0;
    --primary-dark:  #0843A8;
    --secondary:     #6CB34E;
    --accent:        #6CB34E;
    --dark:          #0b1120;
    --text:          #2d3a4a;
    --muted:         #64748b;
    --surface:       #f5f7fc;
}

* { box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: #fff;
    font-size: .935rem;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
}

/* ── Navbar ───────────────────────────────── */
.pub-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #dde4f0;
    padding: 14px 0;
    box-shadow: 0 2px 16px rgba(10, 85, 205, .07);
}

.pub-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: .85rem;
    padding: 6px 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .2px;
}

.pub-nav .nav-link:hover { color: var(--primary); }

.pub-nav .btn-demo {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    font-weight: 600;
    font-size: .845rem;
    font-family: 'Montserrat', sans-serif;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(10, 85, 205, .28);
}

.pub-nav .btn-demo:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(10, 85, 205, .38);
}

/* ── Hero ─────────────────────────────────── */
.hero {
    background: linear-gradient(140deg, #080f2a 0%, #0843A8 52%, #0A55CD 100%);
    color: #fff;
    padding: 108px 0 88px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
}

.hero p.lead {
    font-size: 1.05rem;
    opacity: .88;
    max-width: 560px;
    font-family: 'Montserrat', sans-serif;
}

.hero .btn-primary-hero {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 34px;
    font-weight: 700;
    font-size: .95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 6px 22px rgba(108, 179, 78, .42);
}

.hero .btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 179, 78, .54);
    background: #5da041;
    color: #fff;
}

.hero .btn-outline-hero {
    border: 2px solid rgba(255, 255, 255, .42);
    color: #fff;
    border-radius: 10px;
    padding: 14px 34px;
    font-weight: 600;
    font-size: .95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero .btn-outline-hero:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

/* ── Stats bar ────────────────────────────── */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #dde4f0;
    padding: 32px 0;
    box-shadow: 0 4px 20px rgba(10, 85, 205, .06);
}

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

.stat-item .num {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-item .lbl {
    font-size: .76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 600;
    margin-top: 2px;
}

/* ── Sections ─────────────────────────────── */
section { padding: 84px 0; }

.section-label {
    display: inline-block;
    background: #e6eeff;
    color: var(--primary);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
}

.section-sub {
    color: var(--muted);
    font-size: .95rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Feature cards ────────────────────────── */
.feat-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(10, 85, 205, .08);
    transition: all .3s ease;
    height: 100%;
}

.feat-card:hover {
    box-shadow: 0 16px 52px rgba(10, 85, 205, .17);
    transform: translateY(-6px);
}

.feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.feat-card h5 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-card p {
    font-size: .84rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.65;
}

/* ── Module pills ─────────────────────────── */
.module-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: none;
    border-radius: 100px;
    padding: 9px 20px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text);
    margin: 5px;
    box-shadow: 0 2px 12px rgba(10, 85, 205, .1);
    transition: all .2s;
    font-family: 'Montserrat', sans-serif;
}

.module-pill:hover {
    box-shadow: 0 5px 18px rgba(10, 85, 205, .19);
    transform: translateY(-2px);
    color: var(--primary);
}

.module-pill i { color: var(--primary); }

/* ── Process steps ────────────────────────── */
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(10, 85, 205, .32);
}

/* ── Testimonials ─────────────────────────── */
.testi-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(10, 85, 205, .08);
    transition: all .3s;
}

.testi-card:hover {
    box-shadow: 0 14px 44px rgba(10, 85, 205, .16);
    transform: translateY(-4px);
}

.testi-card .stars { color: var(--secondary); font-size: .9rem; }

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── CTA ──────────────────────────────────── */
.cta-section {
    background: linear-gradient(140deg, #0A55CD 0%, #0843A8 60%, #062a72 100%);
    color: #fff;
    text-align: center;
    border-radius: 28px;
    padding: 76px 52px;
    margin: 0 auto;
    max-width: 920px;
    box-shadow: 0 24px 64px rgba(10, 85, 205, .32);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    position: relative;
}

.btn-cta {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 42px;
    font-weight: 700;
    font-size: .95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all .22s;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(108, 179, 78, .42);
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(108, 179, 78, .54);
    background: #5da041;
    color: #fff;
}

/* ── Footer ───────────────────────────────── */
.pub-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .68);
    padding: 60px 0 28px;
}

.pub-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: .8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pub-footer a {
    color: rgba(255, 255, 255, .56);
    text-decoration: none;
    font-size: .83rem;
    display: block;
    margin-bottom: 10px;
    transition: color .2s;
}

.pub-footer a:hover { color: var(--secondary); }

.pub-footer .divider {
    border-color: rgba(255, 255, 255, .1);
    margin: 36px 0 24px;
}
