/* ── HERO ── */
.hero {
    min-height: 58vh;
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-mid) 60%, #0e4d8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212, 168, 58, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212, 168, 58, 0.10) 0%, transparent 70%);
}

.hero-orn {
    color: var(--gold);
    font-size: 0.77rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    animation: fadeUp 0.7s ease both;
    position: relative;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.3rem;
    animation: fadeUp 0.7s 0.1s ease both;
    position: relative;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero>div>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    line-height: 1.85;
    margin: 0 auto 2.5rem;
    animation: fadeUp 0.7s 0.2s ease both;
    position: relative;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
    position: relative;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.dv {
    width: 1px;
    height: 46px;
    background: rgba(212, 168, 58, 0.3);
    align-self: center;
}

/* ── SECTIONS BASE ── */
section {
    padding: 5.5rem 5%;
}

/* ── 10 REASONS ── */
.reasons {
    background: var(--white);
}

.r-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.r-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5px;
    background: var(--border);
}

.r-card {
    background: var(--white);
    padding: 2.3rem 1.9rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.r-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.r-card:hover {
    background: var(--blue-pale);
}

.r-card:hover::after {
    transform: scaleX(1);
}

.r-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--blue-pale);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--blue-light);
    margin-bottom: 1.2rem;
    transition: background 0.3s, color 0.3s;
}

.r-card:hover .r-icon {
    background: var(--blue);
    color: var(--gold);
}

.r-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.65rem;
}

.r-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.85;
}

.r-num {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: rgba(11, 61, 110, 0.06);
    line-height: 1;
}

/* ── COMPARISON ── */
.comparison {
    background: var(--blue);
}

.cmp-wrap {
    margin-top: 3rem;
    border: 1px solid rgba(212, 168, 58, 0.25);
    border-radius: 6px;
    overflow: hidden;
}

.cmp-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: rgba(212, 168, 58, 0.12);
}

.cmp-head div {
    padding: 0.85rem 1.3rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    border-right: 1px solid rgba(212, 168, 58, 0.15);
}

.cmp-head div:last-child {
    border-right: none;
}

.cmp-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.cmp-row:hover {
    background: rgba(212, 168, 58, 0.05);
}

.cc {
    padding: 0.95rem 1.3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.cc:last-child {
    border-right: none;
}

.cc.ft {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.8rem;
}

.cc.hl {
    background: rgba(212, 168, 58, 0.07);
}

.fa-check {
    color: #6FD67A;
}

.fa-times {
    color: #E07070;
}

.fa-minus {
    color: rgba(255, 255, 255, 0.25);
}

/* ── TESTIMONIALS ── */
.testi {
    background: var(--bg);
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}

.t-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.8rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(11, 61, 110, 0.1);
}

.qi {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.stars {
    color: var(--gold);
    font-size: 0.72rem;
    margin-bottom: 0.65rem;
}

.t-card p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 1.3rem;
}

.t-foot {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue-pale);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.t-name {
    font-weight: 600;
    font-size: 0.87rem;
    color: var(--text);
}

.t-loc {
    font-size: 0.73rem;
    color: var(--muted);
}

/* ── AWARDS ── */
.awards {
    background: var(--blue-pale);
    text-align: center;
}

.a-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2.8rem;
}

.a-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.4rem 1.7rem;
    min-width: 165px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.a-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(11, 61, 110, 0.08);
}

.a-card i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.65rem;
    display: block;
}

.a-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.a-card p {
    font-size: 0.73rem;
    color: var(--muted);
}

/* ── PROCESS ── */
.process {
    background: var(--white);
}

.p-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    margin-top: 3.5rem;
    position: relative;
}

.p-steps::before {
    content: '';
    position: absolute;
    top: 33px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.p-step {
    text-align: center;
    padding: 0 1.1rem;
    position: relative;
    z-index: 1;
}

.s-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.1rem;
    color: var(--blue-light);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    position: relative;
    z-index: 1;
}

.p-step:hover .s-circle {
    background: var(--blue);
    color: var(--gold);
    border-color: var(--blue);
}

.p-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.42rem;
}

.p-step p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 58, 0.18) 0%, transparent 70%);
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.9rem;
    position: relative;
}

.cta-band h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-band>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 2.4rem;
    position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .dv {
        display: none;
    }

    .cmp-wrap {
        overflow-x: auto;
    }

    .cmp-head,
    .cmp-row {
        min-width: 500px;
    }

    .p-steps::before {
        display: none;
    }
}
/* ── CTA BAND BUTTONS ── */
.cta-band .btn-gold {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--gold); color: #fff;
    padding: .9rem 2.4rem; font-size: .82rem; font-weight: 700;
    font-family: 'Nunito Sans', sans-serif; letter-spacing: .1em;
    text-transform: uppercase; border: none; border-radius: 3px;
    cursor: pointer; text-decoration: none; position: relative;
    transition: background .25s, transform .2s, box-shadow .25s;
}
.cta-band .btn-gold:hover {
    background: #E8B84B; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,148,31,.4); color: #fff;
}
.cta-band .btn-outline {
    display: inline-flex; align-items: center; gap: .5rem;
    border: 2px solid rgba(255,255,255,.6); color: #fff;
    padding: .9rem 2.4rem; font-size: .82rem; font-weight: 700;
    font-family: 'Nunito Sans', sans-serif; letter-spacing: .1em;
    text-transform: uppercase; border-radius: 3px;
    margin-left: 1rem; cursor: pointer; text-decoration: none;
    background: transparent;
    transition: border-color .25s, background .25s, transform .2s, color .25s;
}
.cta-band .btn-outline:hover {
    border-color: #C8941F; background: rgba(200,148,31,.18);
    color: #fff; transform: translateY(-2px);
}
@media (max-width: 600px) {
    .cta-band .btn-outline { margin-left: 0; margin-top: .8rem; }
}