/* ============================================================================
   Skoled — School Management System  •  css/style.css
   Enhanced Edition v3 — Features & Modules merged into one unified section
   ========================================================================== */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
    /* Brand Colors */
    --coral:       #f8553f;
    --coral-dark:  #e0432f;
    --coral-light: #fde8e5;
    --amber:       #ffb340;
    --amber-light: #fff3e0;
    --navy:        #16183a;
    --navy-2:      #1d2049;
    --navy-3:      #262a5e;
    --navy-light:  #3a3d6b;

    /* Neutrals */
    --ink:         #1a1c2e;
    --body:        #3d405b;
    --muted:       #6b6e85;
    --light-muted: #9a9daf;
    --line:        #e8e9f0;
    --bg:          #ffffff;
    --bg-soft:     #f5f6fc;
    --bg-cream:    #fbf8f4;

    /* Gradients */
    --grad-warm:   linear-gradient(135deg, var(--coral), #f86a3f, var(--amber));
    --grad-navy:   linear-gradient(160deg, var(--navy-2), var(--navy));

    /* Typography */
    --font-display: 'Bricolage Grotesque', 'DM Sans', sans-serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* Spacing & shape */
    --radius:      16px;
    --radius-sm:   10px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --container:   1200px;
    --section-y:   100px;

    /* Effects */
    --shadow-sm:   0 2px 12px rgba(22,24,58,.06);
    --shadow:      0 8px 40px rgba(22,24,58,.10);
    --shadow-lg:   0 20px 60px rgba(22,24,58,.14);
    --shadow-xl:   0 30px 80px rgba(22,24,58,.18);
    --ring:        0 0 0 4px rgba(248,85,63,.15);
    --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ── 2. RESET / BASE ──────────────────────────────────────────────────────── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--body);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s var(--ease);
}
a:hover { color: var(--coral); }

ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Text gradient utility */
.text-grad {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ── 3. LAYOUT ────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.section {
    padding-block: var(--section-y);
    position: relative;
}
.section:first-of-type { padding-top: 0; }

.bg-soft  { background: var(--bg-soft); }
.bg-cream { background: var(--bg-cream); }
.bg-white { background: var(--bg); }
.section-dark { background: var(--grad-navy); }

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
    background: var(--coral-light);
    padding: 6px 16px;
    border-radius: 50px;
}
.eyebrow-amber {
    color: var(--navy);
    background: rgba(255,179,64,.2);
}

.section-title {
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 800;
    line-height: 1.08;
}
.section-lead {
    margin-top: 16px;
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-dark .section-lead { color: rgba(255,255,255,.7); }

/* ── 4. BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 14px 30px;
    border-radius: 60px;
    transition: all .3s var(--ease);
    white-space: nowrap;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn i { transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn:active { transform: scale(.96); }

.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-lg  { padding: 18px 40px; font-size: 16px; }
.btn-xl  { padding: 20px 48px; font-size: 18px; }

.btn-brand {
    background: var(--grad-warm);
    color: #fff;
    box-shadow: 0 8px 24px rgba(248,85,63,.35);
}
.btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(248,85,63,.45);
    color: #fff;
}

.btn-primary {
    background: var(--grad-warm);
    color: #fff;
    box-shadow: 0 8px 24px rgba(248,85,63,.35);
    border: none;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(248,85,63,.45);
    color: #fff;
    background: var(--grad-warm);
}

.btn-outline-brand {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
}
.btn-outline-brand:hover {
    background: var(--coral);
    color: #fff;
    transform: translateY(-3px);
}

.btn-light {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
    color: var(--navy);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 8px 24px rgba(22,24,58,.3);
}
.btn-dark:hover {
    background: var(--navy-2);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 14px 34px rgba(22,24,58,.4);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(22,24,58,.2);
}
.btn-ghost-dark:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}

/* ── 5. HEADER / NAVBAR ───────────────────────────────────────────────────── */
#mainNavbar {
    background: transparent;
    padding-block: 16px;
    transition: all .4s var(--ease);
}
#mainNavbar.scrolled {
    background: rgba(22,24,58,.97) !important;
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
    padding-block: 10px;
}

.navbar-brand .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border-bottom-right-radius: 4px;
    display: grid;
    place-items: center;
    background: var(--grad-warm);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(248,85,63,.4);
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}
.navbar-brand:hover .brand-mark { transform: rotate(-5deg) scale(1.05); }

.brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    letter-spacing: -.03em;
}
.brand-text span { color: var(--amber); }

#mainNavbar .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-weight: 500;
    font-size: 14.5px;
    position: relative;
    padding: 6px 12px !important;
    border-radius: 8px;
    transition: all .25s var(--ease);
}
#mainNavbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2.5px;
    width: 0;
    background: var(--grad-warm);
    border-radius: 2px;
    transition: all .3s var(--ease);
    transform: translateX(-50%);
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,.08);
}
#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after { width: 60%; }

.navbar-toggler {
    padding: 8px 10px;
    border-radius: 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(248,85,63,.3); }

/* ── 6. HERO ──────────────────────────────────────────────────────────────── */
.hero {
    background: var(--grad-navy);
    padding: 150px 0 80px;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: .6;
}
.orb-1 {
    top: -150px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(248,85,63,.3), transparent 70%);
    animation: orbFloat 20s ease-in-out infinite alternate;
}
.orb-2 {
    bottom: -200px; left: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,179,64,.2), transparent 70%);
    animation: orbFloat 25s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 70%);
    mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.hero-subtitle {
    color: rgba(255,255,255,.75);
    max-width: 520px;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--amber);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hero-checks {
    padding: 0;
    margin-top: 24px;
    margin-bottom: 28px;
}
.hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
}
.hero-checks li i {
    color: var(--amber);
    font-size: 16px;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.hero-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(22,24,58,.2));
    pointer-events: none;
}
.hero-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 10s ease;
}
.hero-image-wrapper:hover img { transform: scale(1.05); }

.float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.95);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    animation: bob 5s ease-in-out infinite;
    backdrop-filter: blur(8px);
}
.float-card small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.float-card strong {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--ink);
}
.float-card .ic {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--grad-warm);
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
}
.float-card .ic-amber {
    background: var(--amber);
    color: var(--navy);
}
.float-card-tl { top: -16px; left: -20px; animation-delay: 0s; }
.float-card-br { bottom: -16px; right: -14px; animation-delay: 1.5s; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.stats-strip {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    padding: 24px 0;
    margin-top: 60px;
}
.stats-strip .stat-ic {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(248,85,63,.15);
    color: var(--amber);
    font-size: 20px;
    margin-bottom: 6px;
}
.stats-strip .stat-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stats-strip .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
    font-weight: 500;
}
.stats-strip [class*="col"]:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.08);
}

/* ── 7. ABOUT ─────────────────────────────────────────────────────────────── */
.about-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248,85,63,.05), transparent 50%);
    pointer-events: none;
}
.about-img {
    width: 100%;
    height: auto;
    display: block;
}
.about-text {
    color: var(--body);
    font-size: 15.5px;
    line-height: 1.75;
}
.point-ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,179,64,.15);
    color: var(--coral);
    font-size: 20px;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}
.point-ic:hover {
    background: var(--grad-warm);
    color: #fff;
    transform: scale(1.05);
}

/* ── 8. MODULES (unified) ─────────────────────────────────────────────────── */
.module-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
    cursor: default;
    display: flex;
    flex-direction: column;
}
.module-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--grad-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.module-card:hover::before { transform: scaleX(1); }

.module-ic {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(248,85,63,.1);
    color: var(--coral);
    font-size: 24px;
    transition: all .4s var(--ease);
    flex-shrink: 0;
}
.module-card:hover .module-ic {
    background: var(--grad-warm);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}
.module-card h3 {
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
}
.module-card p {
    flex: 1;
}
.module-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--coral);
    margin-top: auto;
}
.module-link i { transition: transform .3s var(--ease); }
.module-link:hover { color: var(--coral-dark); }
.module-link:hover i { transform: translateX(6px); }

/* ── 9. WHY CHOOSE US ────────────────────────────────────────────────────── */
.why-card {
    display: flex;
    gap: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    backdrop-filter: blur(6px);
    transition: all .4s var(--ease);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
}
.why-ic {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--grad-warm);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(248,85,63,.3);
}
.why-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}
.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin: 0;
    line-height: 1.6;
}

/* ── 10. PRODUCT PREVIEW ──────────────────────────────────────────────────── */
.preview-shot {
    background: var(--grad-navy);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-xl);
}
.ps-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px 16px;
}
.ps-dots {
    display: flex;
    gap: 6px;
}
.ps-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    background: rgba(255,255,255,.25);
}
.ps-dots i:nth-child(1) { background: #ff5f57; }
.ps-dots i:nth-child(2) { background: #febc2e; }
.ps-dots i:nth-child(3) { background: #28c840; }
.ps-top span {
    margin-left: auto;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    letter-spacing: .04em;
}
.ps-body {
    background: rgba(255,255,255,.05);
    border-radius: var(--radius);
    padding: 32px 24px;
}
.ps-ic {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--grad-warm);
    color: #fff;
    font-size: 30px;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(248,85,63,.3);
}
.ps-stat {
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}
.ps-stat small {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
}
.ps-stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    font-weight: 800;
}
.ps-stat em {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.45);
    font-style: normal;
    margin-top: 2px;
}

.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: all .3s var(--ease);
    border: none;
}
.slider-btn:hover {
    background: var(--coral);
    color: #fff;
    transform: scale(1.1);
}
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    opacity: 1;
    transition: all .3s var(--ease);
    margin: 0 5px;
}
.carousel-indicators .active {
    width: 32px;
    border-radius: 6px;
    background: var(--coral);
}

/* ── 11. TESTIMONIALS ────────────────────────────────────────────────────── */
.testi-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    position: relative;
    transition: all .3s var(--ease);
}
.testi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testi-quote {
    position: absolute;
    top: 32px;
    right: 36px;
    font-size: 52px;
    color: rgba(248,85,63,.08);
}
.testi-stars {
    color: var(--amber);
    margin-bottom: 16px;
    font-size: 15px;
    letter-spacing: 3px;
}
.testi-card blockquote {
    font-size: 18px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}
.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border-bottom-right-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--grad-warm);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

/* ── 12. PRICING ──────────────────────────────────────────────────────────── */
.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 40px 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all .4s var(--ease);
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.price-card-popular {
    background: var(--grad-navy) !important;
    border-color: transparent !important;
    box-shadow: var(--shadow-xl) !important;
    transform: translateY(-10px);
    color: #fff;
}
.price-card-popular:hover { transform: translateY(-16px); }

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-warm);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(248,85,63,.4);
    white-space: nowrap;
}

.price-amount {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--line);
}
.price-card-popular .price-amount { border-color: rgba(255,255,255,.12); }
.price-amount .cur {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 8px;
}
.price-amount .num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.price-card-popular .price-amount .num { color: #fff; }
.price-amount .per {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.price-card-popular .price-amount .per { color: rgba(255,255,255,.6); }

.price-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--body);
}
.price-card-popular .price-features li { color: rgba(255,255,255,.85); }

.price-features li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    background: rgba(248,85,63,.12);
    color: var(--coral);
    flex-shrink: 0;
}
.price-card-popular .price-features li i {
    background: rgba(255,179,64,.2);
    color: var(--amber);
}

.price-features li.off {
    color: var(--light-muted);
    opacity: .7;
}
.price-features li.off i {
    background: var(--line);
    color: var(--light-muted);
}
.price-card-popular .price-features li.off {
    color: rgba(255,255,255,.4);
}
.price-card-popular .price-features li.off i {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.4);
}

.price-limits {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
}
.price-card-popular .price-limits {
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.05);
}

.addons-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 40px 44px;
    box-shadow: var(--shadow);
}
.addon {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}
.addon:hover {
    background: var(--coral-light);
    transform: translateX(4px);
}
.addon-ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--grad-warm);
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.addon b {
    display: block;
    color: var(--ink);
    font-size: 15px;
}
.addon span {
    font-size: 13px;
    color: var(--muted);
}

/* ── 13. FAQ ──────────────────────────────────────────────────────────────── */
.accordion-item {
    background: #fff;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    margin-bottom: 12px;
}
.accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink) !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 22px 26px;
    transition: all .3s var(--ease);
}
.accordion-button:hover {
    background: var(--bg-soft) !important;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8553f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: none;
    transition: transform .3s var(--ease);
}
.accordion-button:not(.collapsed) {
    color: var(--coral) !important;
    background: var(--coral-light) !important;
}
.accordion-body {
    padding: 0 26px 26px;
    color: var(--body);
    font-size: 15px;
    line-height: 1.75;
}

.faq-contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all .3s var(--ease);
}
.faq-contact-link:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.ci-ic {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 14px;
    border-bottom-right-radius: 4px;
    display: grid;
    place-items: center;
    background: var(--grad-warm);
    color: #fff;
    font-size: 20px;
}
.faq-contact-link small {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}
.faq-contact-link b {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 16px;
}

/* ── 14. CONTACT / DEMO FORM ──────────────────────────────────────────────── */
.ci-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all .3s var(--ease);
}
.ci-item:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-sm);
}
.ci-item b {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
    margin-bottom: 2px;
}
.ci-item p {
    font-size: 15px;
    color: var(--body);
    margin: 0;
}
.ci-item a { color: var(--body); }
.ci-item a:hover { color: var(--coral); }

.map-placeholder {
    border: 2px dashed var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--muted);
    text-align: center;
}
.map-placeholder i {
    font-size: 36px;
    color: var(--coral);
}
.map-placeholder span {
    font-weight: 700;
    color: var(--ink);
}
.map-placeholder small {
    font-size: 12px;
    color: var(--light-muted);
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    padding: 12px 16px;
    transition: all .3s var(--ease);
    background: #fff;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--coral);
    box-shadow: var(--ring);
    outline: none;
}
.contact-form-wrap .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220,53,69,.15);
}
.contact-form-wrap .form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 4px rgba(25,135,84,.15);
}
.contact-form-wrap .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 6px;
}

/* ── 15. FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
}

.footer-cta {
    background: var(--amber);
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: all .3s var(--ease);
    font-size: 16px;
}
.social-link:hover {
    background: var(--coral);
    transform: translateY(-4px);
    color: #fff;
}

.footer-h {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    transition: all .25s var(--ease);
}
.footer-links a:hover {
    color: var(--amber);
    padding-left: 6px;
}

.news-input {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all .3s var(--ease);
}
.news-input::placeholder { color: rgba(255,255,255,.4); }
.news-input:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255,255,255,.1);
}
.news-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
}
.news-msg {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--amber);
    min-height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
}
.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    margin: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: color .25s;
}
.footer-bottom a:hover { color: var(--amber); }
.footer-bottom ul {
    display: flex;
    gap: 24px;
    margin: 0;
}

/* ── 16. PAGE LOADER ──────────────────────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: grid;
    place-items: center;
    transition: opacity .6s, visibility .6s;
}
body.loaded #page-loader { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    text-align: center;
}
.loader-logo span { color: var(--coral); }

.loader-bar {
    width: 240px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,.12);
    margin: 20px auto 0;
    overflow: hidden;
}
.loader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--grad-warm);
    animation: load 1.2s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }

/* ── 17. SCROLL REVEAL ────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s var(--ease);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ── 18. BACK TO TOP ──────────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-warm);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 12px 32px rgba(248,85,63,.4);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all .4s var(--ease);
    display: grid;
    place-items: center;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(248,85,63,.5);
}

/* ── 19. ACCESSIBILITY ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ── 20. RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
    :root { --section-y: 80px; }
    .hero { padding: 140px 0 70px; }
}

@media (max-width: 860px) {
    .stats-strip [class*="col"]:nth-child(3) { border-right: none; }
    .why-card { flex-direction: column; gap: 16px; }
    .price-card-popular { transform: none; }
    .price-card-popular:hover { transform: translateY(-8px); }
    .float-card-tl { top: -10px; left: -8px; transform: scale(.85); }
    .float-card-br { bottom: -10px; right: -6px; transform: scale(.85); }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(32px, 8vw, 44px); }
    .hero-subtitle { font-size: 16px; }
    .testi-card { padding: 28px 24px; }
    .testi-card blockquote { font-size: 16px; }
    .price-card { padding: 30px 24px; }
    .addons-box { padding: 24px !important; }
    .contact-form-wrap { padding: 24px !important; }
    .section-head { margin-bottom: 40px; }
}

@media (max-width: 620px) {
    :root { --section-y: 60px; --radius: 14px; --radius-lg: 20px; }
    .container { padding-inline: 16px; }
    .stats-strip [class*="col"] { border-right: none !important; }
    .stats-strip .stat-ic { width: 40px; height: 40px; font-size: 16px; }
    .stats-strip .stat-num { font-size: 24px; }
    .hero-checks li { font-size: 14px; }
    .float-card { display: none; }
    .testi-quote { display: none; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
    .hero-title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .btn-lg { padding: 14px 28px; font-size: 14px; }
    .btn-xl { padding: 16px 32px; font-size: 15px; }
}