
/**
 * styles.css
 *
 * Main stylesheet for Insuredge – frontend and admin.
 * Follows the design tokens defined in the system.
 * @version 1.0
 */

/* -------------------- Imports -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* -------------------- Root Variables -------------------- */
:root {
  --primary-color: #1e40af;
  --secondary-color: #0891b2;
  --success-color: #10b981;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
}

/* -------------------- Reset -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 76px;
}

/* -------------------- Header & Navigation -------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s;
  padding: 0.5rem 1rem !important;
}

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

/* Add this to your navigation section */
/* .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
} */

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* -------------------- Hero Section -------------------- */
.hero-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-outline-light {
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
}

.hero-image {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* -------------------- Services Section -------------------- */
.services-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.service-card {
  padding: 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.service-card i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-color); /* fallback for browsers without clipping */
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* -------------------- Value Propositions -------------------- */
.value-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-card i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* -------------------- Calculator Preview -------------------- */
.calculator-preview {
  padding: 80px 0;
  background: white;
}

.calculator-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.calculator-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.calculator-card i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* -------------------- Blog Section -------------------- */
.blog-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card .badge {
  background: var(--primary-color);
  padding: 0.4rem 0.8rem;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0;
}

/* -------------------- Footer -------------------- */
footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* -------------------- Calculator Page -------------------- */
.calculator-page {
  padding: 60px 0;
  background: var(--bg-light);
}

.calculator-section {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.calculator-section h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.form-range {
  height: 8px;
}

.form-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
}

.calculator-results {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
}

.result-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-card.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

/* -------------------- Contact Page -------------------- */
.contact-page {
  padding: 60px 0;
  background: var(--bg-light);
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
}

/* -------------------- Blog Page -------------------- */
.blog-page {
  padding: 60px 0;
  background: var(--bg-light);
}

.category-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* -------------------- Admin Panel -------------------- */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  padding-top: 0;
}

.admin-sidebar {
  width: 250px;
  background: var(--text-dark);
  color: white;
  padding: 2rem 0;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
}

.sidebar-header {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-menu a:hover,
.sidebar-menu li.active a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-menu i {
  margin-right: 0.75rem;
  width: 20px;
}

.admin-content {
  margin-left: 250px;
  padding: 2rem;
  width: calc(100% - 250px);
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.stat-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* -------------------- Page Content Toggling -------------------- */
.page-content {
  display: none;
}

.page-content.active {
  display: block;
}



/* -------------------- Responsive Design -------------------- */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
  }

  .admin-sidebar {
    width: 100%;
    position: relative;
    height: auto;
  }

  .admin-content {
    margin-left: 0;
    width: 100%;
  }
}



.disclaimer {
  background: #fef3c7;
  border-left: 4px solid var(--accent-color);
  padding: 1rem;
  border-radius: 4px;
}

.error-page {
  padding: 100px 20px;
  text-align: center;
}


.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.error-code {
    font-size: 72px;
    font-weight: 800;
    color: #4F46E5;
    margin: 0;
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.error-description {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
}

.error-debug {
    margin-top: 40px;
    padding: 15px;
    background: #FEE2E2;
    color: #991B1B;
    border-radius: 6px;
    font-size: 12px;
    text-align: left;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card--highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}


.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

/* This replaces the inline styles in your error.php */
.error-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}











.main-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            border-bottom: 1px solid rgba(226, 232, 240, .7);
            transition: box-shadow .3s, background .3s;
        }

        .main-nav.scrolled {
            background: rgba(255, 255, 255, .98);
            box-shadow: 0 4px 24px rgba(15, 23, 42, .08);
        }

        .main-nav .navbar {
            padding: 0;
            min-height: 68px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: .55rem;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .82rem;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-logo-text {
            font-size: 1.2rem;
            font-weight: 800;
            letter-spacing: -.03em;
            color: var(--ink);
        }

        .nav-logo-text span {
            color: var(--blue);
        }

        .main-nav .nav-link {
            font-size: .875rem;
            font-weight: 600;
            color: var(--ink-500) !important;
            padding: .45rem .8rem !important;
            border-radius: var(--r-sm);
            transition: color var(--t-fast), background var(--t-fast);
            letter-spacing: -.01em;
        }

        .main-nav .nav-link:hover,
        .main-nav .nav-link.active {
            color: var(--blue) !important;
            background: var(--blue-pale);
        }

        .main-nav .nav-link.active {
            font-weight: 700;
        }

        .main-nav .dropdown-menu {
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            box-shadow: 0 16px 48px rgba(15, 23, 42, .12), 0 4px 16px rgba(15, 23, 42, .06);
            padding: .5rem;
            min-width: 230px;
            margin-top: .6rem !important;
            animation: navDd .18s ease;
        }

        @keyframes navDd {
            from {
                opacity: 0;
                transform: translateY(-6px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .main-nav .dropdown-item {
            display: flex;
            align-items: center;
            gap: .75rem;
            padding: .6rem .85rem;
            border-radius: var(--r-sm);
            font-size: .875rem;
            color: var(--ink-500);
            font-weight: 500;
            transition: background var(--t-fast), color var(--t-fast);
        }

        .main-nav .dropdown-item:hover {
            background: var(--blue-pale);
            color: var(--blue);
        }

        .dd-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .72rem;
            flex-shrink: 0;
        }

        .dd-text strong {
            display: block;
            font-weight: 700;
            font-size: .875rem;
            color: var(--ink);
            line-height: 1.2;
        }

        .dd-text span {
            font-size: .72rem;
            color: var(--ink-400);
        }

        .nav-pill-cta {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: var(--blue) !important;
            color: #fff !important;
            border-radius: var(--r-pill) !important;
            padding: .48rem 1.25rem !important;
            font-weight: 700 !important;
            font-size: .875rem !important;
            transition: var(--t) !important;
            border: 2px solid var(--blue) !important;
            background: var(--blue) !important;
        }

        .nav-pill-cta:hover {
            background: var(--blue-dark) !important;
            border-color: var(--blue-dark) !important;
            color: #fff !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 4px 16px rgba(30, 64, 175, .3) !important;
        }

        .navbar-toggler {
            border: 1.5px solid var(--border) !important;
            border-radius: var(--r-sm) !important;
            padding: .35rem .55rem !important;
            box-shadow: none !important;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231E40AF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

        body {
            padding-top: 68px;
            font-family: 'Inter', sans-serif;
        }

/* ── Home page specific ──────────────────────────────────────── */

            /* Hero */
            .hero-wrap {
                background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--cyan) 100%);
                padding: 5.5rem 0 0;
                position: relative;
                overflow: hidden;
                min-height: 560px;
                display: flex;
                align-items: flex-end;
            }

            .hero-wrap::before {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                background: radial-gradient(ellipse 70% 80% at 90% 30%, rgba(255, 255, 255, .07) 0%, transparent 55%),
                    radial-gradient(ellipse 50% 60% at 5% 80%, rgba(8, 145, 178, .2) 0%, transparent 55%);
            }

            .hero-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: .45rem;
                background: rgba(255, 255, 255, .15);
                border: 1px solid rgba(255, 255, 255, .25);
                color: rgba(255, 255, 255, .9);
                font-size: .72rem;
                font-weight: 700;
                letter-spacing: .1em;
                text-transform: uppercase;
                padding: .32rem .9rem;
                border-radius: 50px;
                margin-bottom: 1.25rem;
            }

            .hero-h1 {
                font-size: clamp(2.5rem, 5vw, 4rem);
                font-weight: 900;
                color: #fff;
                letter-spacing: -.04em;
                line-height: 1.07;
                margin-bottom: 1.1rem;
            }

            .hero-h1 em {
                font-style: normal;
                color: #93c5fd;
            }

            .hero-lead {
                font-size: 1.05rem;
                color: rgba(255, 255, 255, .72);
                line-height: 1.75;
                max-width: 480px;
                margin-bottom: 2rem;
            }

            .hero-btns {
                display: flex;
                flex-wrap: wrap;
                gap: .75rem;
                margin-bottom: 2.5rem;
            }

            /* Social proof avatars */
            .hero-proof {
                display: flex;
                align-items: center;
                gap: .85rem;
            }

            .proof-avatars {
                display: flex;
            }

            .proof-avatar {
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background: rgba(255, 255, 255, .2);
                border: 2px solid rgba(255, 255, 255, .35);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .55rem;
                font-weight: 800;
                color: #fff;
                margin-right: -9px;
                flex-shrink: 0;
            }

            .proof-text {
                font-size: .82rem;
                color: rgba(255, 255, 255, .65);
                margin-left: 18px;
            }

            .proof-text strong {
                color: #fff;
                font-weight: 800;
            }

            /* Hero right card */
            .hero-card {
                background: rgba(255, 255, 255, .08);
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, .15);
                border-radius: var(--r-2xl) var(--r-2xl) 0 0;
                padding: 2rem 2rem 3rem;
                position: relative;
                overflow: hidden;
            }

            .hero-card::before {
                content: '';
                position: absolute;
                top: -60px;
                right: -60px;
                width: 200px;
                height: 200px;
                border-radius: 50%;
                background: rgba(255, 255, 255, .05);
            }

            .hero-stat-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .hero-stat-item {
                background: rgba(255, 255, 255, .08);
                border: 1px solid rgba(255, 255, 255, .12);
                border-radius: var(--r-lg);
                padding: 1.1rem;
                text-align: center;
            }

            .hero-stat-val {
                font-size: 1.85rem;
                font-weight: 900;
                color: #fff;
                letter-spacing: -.03em;
                line-height: 1;
            }

            .hero-stat-lbl {
                font-size: .65rem;
                font-weight: 700;
                color: rgba(255, 255, 255, .5);
                text-transform: uppercase;
                letter-spacing: .08em;
                margin-top: .3rem;
            }

            /* Floating badges */
            .hero-float {
                position: absolute;
                background: var(--surface);
                border-radius: var(--r-md);
                box-shadow: 0 8px 24px rgba(15, 23, 42, .18);
                padding: .55rem .9rem;
                display: flex;
                align-items: center;
                gap: .5rem;
                font-size: .78rem;
                font-weight: 700;
                color: var(--ink);
                animation: floatBob 3s ease-in-out infinite;
            }

            .hero-float-1 {
                top: 1.5rem;
                left: -1rem;
                animation-delay: 0s;
            }

            .hero-float-2 {
                bottom: 4rem;
                right: -1rem;
                animation-delay: 1.5s;
            }

            @keyframes floatBob {

                0%,
                100% {
                    transform: translateY(0)
                }

                50% {
                    transform: translateY(-8px)
                }
            }

            .hero-float i {
                font-size: .7rem;
            }

            /* Service cards */
            .svc-wrap {
                background: var(--surface-2);
                padding: 96px 0;
            }

            .svc-card {
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: var(--r-2xl);
                overflow: hidden;
                box-shadow: var(--shadow-sm);
                height: 100%;
                display: flex;
                flex-direction: column;
                transition: transform var(--t), box-shadow var(--t), border-color var(--t);
            }

            .svc-card:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-xl);
                border-color: transparent;
            }

            /* Coloured top — Option 3 signature */
            .svc-card-top {
                padding: 2rem 2rem 1.75rem;
                position: relative;
                overflow: hidden;
            }

            .svc-card-top::after {
                content: '';
                position: absolute;
                bottom: -30px;
                right: -30px;
                width: 120px;
                height: 120px;
                border-radius: 50%;
                background: rgba(255, 255, 255, .1);
            }

            .svc-icon-ring {
                width: 48px;
                height: 48px;
                border-radius: 14px;
                background: rgba(255, 255, 255, .2);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .95rem;
                color: #fff;
                margin-bottom: 1rem;
                transition: transform var(--t);
            }

            .svc-card:hover .svc-icon-ring {
                transform: scale(1.1) rotate(-4deg);
            }

            .svc-eyebrow {
                font-size: .65rem;
                font-weight: 800;
                letter-spacing: .12em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, .65);
                margin-bottom: .4rem;
            }

            .svc-title {
                font-size: 1.45rem;
                font-weight: 900;
                color: #fff;
                letter-spacing: -.03em;
                line-height: 1.15;
                margin-bottom: .3rem;
            }

            .svc-tagline {
                font-size: .875rem;
                color: rgba(255, 255, 255, .7);
                font-weight: 500;
            }

            /* From price badge */
            .svc-price {
                display: inline-flex;
                align-items: baseline;
                gap: .3rem;
                background: rgba(255, 255, 255, .15);
                border: 1px solid rgba(255, 255, 255, .2);
                border-radius: 50px;
                padding: .28rem .85rem;
                margin-top: 1rem;
            }

            .svc-price-val {
                font-size: .95rem;
                font-weight: 900;
                color: #fff;
            }

            .svc-price-lbl {
                font-size: .68rem;
                color: rgba(255, 255, 255, .6);
            }

            /* Card body */
            .svc-card-body {
                padding: 1.75rem 2rem 2rem;
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .svc-desc {
                font-size: .9rem;
                color: var(--ink-500);
                line-height: 1.72;
                margin-bottom: 1.4rem;
            }

            .svc-feats {
                list-style: none;
                padding: 0;
                margin: 0 0 1.75rem;
            }

            .svc-feats li {
                display: flex;
                align-items: center;
                gap: .55rem;
                font-size: .875rem;
                color: var(--ink-500);
                padding: .42rem 0;
                border-bottom: 1px solid var(--border);
            }

            .svc-feats li:last-child {
                border-bottom: none;
            }

            .svc-feats li i {
                font-size: .72rem;
                flex-shrink: 0;
            }

            .svc-cta {
                display: inline-flex;
                align-items: center;
                gap: .45rem;
                font-size: .875rem;
                font-weight: 700;
                padding: .65rem 1.4rem;
                border-radius: var(--r-pill);
                text-decoration: none;
                transition: var(--t);
                margin-top: auto;
                align-self: flex-start;
                border: 2px solid;
            }

            /* Trust section */
            .trust-wrap {
                background: var(--surface);
                padding: 96px 0;
            }

            .trust-card {
                padding: 1.75rem;
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: var(--r-xl);
                box-shadow: var(--shadow-xs);
                height: 100%;
                transition: var(--t);
                position: relative;
                overflow: hidden;
            }

            .trust-card::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(90deg, var(--blue), var(--cyan));
                transform: scaleX(0);
                transform-origin: left;
                transition: transform var(--t);
                border-radius: 0 0 var(--r-xl) var(--r-xl);
            }

            .trust-card:hover {
                transform: translateY(-4px);
                box-shadow: var(--shadow-md);
                border-color: var(--blue-border);
            }

            .trust-card:hover::after {
                transform: scaleX(1);
            }

            .trust-icon {
                width: 46px;
                height: 46px;
                border-radius: var(--r-md);
                background: var(--blue-pale);
                color: var(--blue);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .9rem;
                margin-bottom: 1.2rem;
                transition: var(--t);
            }

            .trust-card:hover .trust-icon {
                background: var(--blue);
                color: #fff;
            }

            .trust-card h4 {
                font-size: .97rem;
                font-weight: 800;
                color: var(--ink);
                letter-spacing: -.02em;
                margin-bottom: .45rem;
            }

            .trust-card p {
                font-size: .875rem;
                color: var(--ink-500);
                line-height: 1.65;
                margin: 0;
            }

            /* Process section */
            .process-wrap {
                background: var(--surface-2);
                padding: 96px 0;
            }

            .process-step {
                display: flex;
                gap: 1.35rem;
                align-items: flex-start;
                padding: 1.5rem;
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: var(--r-xl);
                height: 100%;
                transition: var(--t);
            }

            .process-step:hover {
                border-color: var(--blue-border);
                box-shadow: var(--shadow-md);
                transform: translateY(-3px);
            }

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

            .process-step h4 {
                font-size: .97rem;
                font-weight: 800;
                color: var(--ink);
                margin-bottom: .35rem;
                letter-spacing: -.02em;
            }

            .process-step p {
                font-size: .875rem;
                color: var(--ink-500);
                line-height: 1.65;
                margin: 0;
            }

            /* Calculators */
            .calc-wrap {
                background: var(--ink-700);
                padding: 96px 0;
                position: relative;
                overflow: hidden;
            }

            .calc-wrap::before {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                background: radial-gradient(ellipse 55% 70% at 85% 40%, rgba(30, 64, 175, .3) 0%, transparent 60%),
                    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(8, 145, 178, .18) 0%, transparent 60%);
            }

            .calc-wrap::after {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
                background-size: 56px 56px;
            }

            .calc-card {
                background: rgba(255, 255, 255, .06);
                border: 1px solid rgba(255, 255, 255, .1);
                border-radius: var(--r-xl);
                padding: 2rem;
                height: 100%;
                display: flex;
                flex-direction: column;
                transition: var(--t);
                text-decoration: none;
                color: inherit;
                position: relative;
                z-index: 1;
            }

            .calc-card:hover {
                background: rgba(255, 255, 255, .1);
                border-color: rgba(255, 255, 255, .22);
                transform: translateY(-5px);
                color: inherit;
            }

            .calc-c-icon {
                width: 50px;
                height: 50px;
                border-radius: var(--r-md);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .95rem;
                margin-bottom: 1.25rem;
                transition: transform var(--t);
            }

            .calc-card:hover .calc-c-icon {
                transform: scale(1.08) rotate(-3deg);
            }

            .calc-card h3 {
                font-size: 1.1rem;
                font-weight: 800;
                color: #fff;
                letter-spacing: -.02em;
                margin-bottom: .45rem;
            }

            .calc-card p {
                font-size: .875rem;
                color: rgba(255, 255, 255, .55);
                line-height: 1.68;
                flex: 1;
                margin-bottom: 1.5rem;
            }

            .calc-arrow {
                display: inline-flex;
                align-items: center;
                gap: .4rem;
                font-size: .82rem;
                font-weight: 700;
                color: rgba(255, 255, 255, .7);
                border: 1.5px solid rgba(255, 255, 255, .18);
                padding: .55rem 1.1rem;
                border-radius: var(--r-pill);
                transition: var(--t);
                margin-top: auto;
            }

            .calc-card:hover .calc-arrow {
                color: #fff;
                border-color: rgba(255, 255, 255, .45);
                background: rgba(255, 255, 255, .08);
            }

            /* Testimonials */
            .testi-wrap {
                background: var(--surface-2);
                padding: 96px 0;
            }

            .testi-card {
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: var(--r-xl);
                padding: 2rem;
                height: 100%;
                display: flex;
                flex-direction: column;
                box-shadow: var(--shadow-xs);
                transition: var(--t);
            }

            .testi-card:hover {
                transform: translateY(-4px);
                box-shadow: var(--shadow-md);
                border-color: var(--blue-border);
            }

            .testi-stars {
                color: #f59e0b;
                font-size: .85rem;
                letter-spacing: 2px;
                margin-bottom: 1rem;
            }

            .testi-quote-mark {
                font-size: 3.5rem;
                line-height: .8;
                color: var(--blue-pale);
                font-weight: 900;
                letter-spacing: -.06em;
                margin-bottom: .4rem;
                font-family: Georgia, serif;
            }

            .testi-text {
                font-size: .9rem;
                color: var(--ink-500);
                line-height: 1.75;
                flex: 1;
                margin-bottom: 1.4rem;
                font-style: italic;
            }

            .testi-author {
                display: flex;
                align-items: center;
                gap: .75rem;
                padding-top: 1rem;
                border-top: 1px solid var(--border);
            }

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

            .testi-name {
                font-size: .9rem;
                font-weight: 700;
                color: var(--ink);
            }

            .testi-meta {
                font-size: .75rem;
                color: var(--ink-400);
                display: flex;
                align-items: center;
                gap: .35rem;
                margin-top: .1rem;
            }

            /* Partners */
            .partners-wrap {
                background: var(--surface);
                padding: 3.5rem 0;
                border-top: 1px solid var(--border);
                border-bottom: 1px solid var(--border);
            }

            /* Blog */
            .blog-wrap {
                background: var(--surface-2);
                padding: 96px 0;
            }

            .blog-card {
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: var(--r-xl);
                overflow: hidden;
                height: 100%;
                display: flex;
                flex-direction: column;
                box-shadow: var(--shadow-xs);
                transition: var(--t);
                text-decoration: none;
                color: inherit;
            }

            .blog-card:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-xl);
                border-color: var(--blue-border);
                color: inherit;
            }

            .blog-thumb {
                height: 190px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .blog-thumb-bg-icon {
                position: absolute;
                inset: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 6rem;
                opacity: .07;
            }

            .blog-body {
                padding: 1.4rem;
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .blog-title {
                font-size: .97rem;
                font-weight: 800;
                color: var(--ink);
                line-height: 1.38;
                margin: .6rem 0 .55rem;
                flex: 1;
                letter-spacing: -.015em;
            }

            .blog-excerpt {
                font-size: .83rem;
                color: var(--ink-400);
                line-height: 1.65;
                margin-bottom: .85rem;
            }

            .blog-meta {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-top: .75rem;
                border-top: 1px solid var(--border);
                margin-top: auto;
            }

            .blog-read-link {
                display: flex;
                align-items: center;
                gap: .3rem;
                font-size: .8rem;
                font-weight: 700;
                color: var(--blue);
                text-decoration: none;
                transition: gap var(--t-fast);
            }

            .blog-read-link:hover {
                gap: .55rem;
            }

            /* CTA section */
            .cta-wrap {
                background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--cyan) 100%);
                padding: 96px 0;
                position: relative;
                overflow: hidden;
            }

            .cta-wrap::before {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                background: radial-gradient(ellipse 55% 70% at 90% 50%, rgba(255, 255, 255, .07) 0%, transparent 60%);
            }

            .cta-inner-card {
                background: rgba(255, 255, 255, .1);
                backdrop-filter: blur(16px);
                border: 1px solid rgba(255, 255, 255, .2);
                border-radius: var(--r-2xl);
                padding: 2.5rem;
            }

            /* Eyebrow for dark bg */
            .eyebrow-dark {
                display: inline-flex;
                align-items: center;
                gap: .45rem;
                background: rgba(255, 255, 255, .15);
                border: 1px solid rgba(255, 255, 255, .25);
                color: rgba(255, 255, 255, .88);
                font-size: .72rem;
                font-weight: 700;
                letter-spacing: .1em;
                text-transform: uppercase;
                padding: .32rem .9rem;
                border-radius: 50px;
                margin-bottom: 1rem;
            }

            @media(max-width:991px) {
                .hero-wrap {
                    min-height: auto;
                    padding-bottom: 2rem;
                }

                .hero-card {
                    border-radius: var(--r-2xl);
                    margin-top: 2rem;
                }
            }

            @media(max-width:767px) {
                .hero-h1 {
                    font-size: 2.2rem;
                }

                .hero-float {
                    display: none;
                }

                .svc-card-top {
                    padding: 1.5rem;
                }

                .svc-card-body {
                    padding: 1.5rem;
                }

                .hero-stat-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: .65rem;
                }

                .hero-stat-val {
                    font-size: 1.5rem;
                }
            }
    .site-footer {
                background: #0f172a;
                color: rgba(255, 255, 255, .65);
                padding: 5rem 0 0;
                font-family: 'Inter', sans-serif;
            }

            /* Brand col */
            .footer-brand-wrap {
                margin-bottom: 1.5rem;
            }

            .footer-logo {
                display: flex;
                align-items: center;
                gap: .55rem;
                text-decoration: none;
                margin-bottom: 1.1rem;
            }

            .footer-logo-icon {
                width: 36px;
                height: 36px;
                border-radius: 10px;
                background: var(--blue);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .82rem;
                color: #fff;
                flex-shrink: 0;
            }

            .footer-logo-text {
                font-size: 1.15rem;
                font-weight: 800;
                letter-spacing: -.025em;
                color: #fff;
            }

            .footer-logo-text span {
                color: var(--blue-light);
            }

            .footer-tagline {
                font-size: .875rem;
                color: rgba(255, 255, 255, .5);
                line-height: 1.7;
                margin-bottom: 1.25rem;
                max-width: 260px;
            }

            /* Trust pills */
            .footer-trust {
                display: flex;
                flex-wrap: wrap;
                gap: .45rem;
                margin-bottom: 1.5rem;
            }

            .footer-trust-pill {
                display: inline-flex;
                align-items: center;
                gap: .35rem;
                background: rgba(255, 255, 255, .06);
                border: 1px solid rgba(255, 255, 255, .1);
                border-radius: 50px;
                padding: .25rem .75rem;
                font-size: .7rem;
                font-weight: 600;
                color: rgba(255, 255, 255, .6);
            }

            .footer-trust-pill i {
                color: var(--blue-light);
                font-size: .6rem;
            }

            /* Social icons */
            .footer-social {
                display: flex;
                gap: .5rem;
            }

            .footer-social a {
                width: 34px;
                height: 34px;
                border-radius: var(--r-sm);
                background: rgba(255, 255, 255, .07);
                border: 1px solid rgba(255, 255, 255, .1);
                display: flex;
                align-items: center;
                justify-content: center;
                color: rgba(255, 255, 255, .5);
                font-size: .78rem;
                text-decoration: none;
                transition: var(--t);
            }

            .footer-social a:hover {
                background: var(--blue);
                border-color: var(--blue);
                color: #fff;
                transform: translateY(-2px);
            }

            /* Link columns */
            .footer-col-title {
                font-size: .7rem;
                font-weight: 800;
                letter-spacing: .12em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, .9);
                margin-bottom: 1.1rem;
            }

            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links li {
                margin-bottom: .55rem;
            }

            .footer-links a {
                font-size: .875rem;
                color: rgba(255, 255, 255, .5);
                text-decoration: none;
                transition: color var(--t-fast);
                display: flex;
                align-items: center;
                gap: .4rem;
            }

            .footer-links a:hover {
                color: #fff;
                padding-left: 3px;
            }

            .footer-links a i {
                font-size: .6rem;
                color: var(--blue-light);
                flex-shrink: 0;
            }

            /* Contact items */
            .footer-contact-item {
                display: flex;
                align-items: flex-start;
                gap: .55rem;
                font-size: .875rem;
                color: rgba(255, 255, 255, .5);
                margin-bottom: .75rem;
                text-decoration: none;
                transition: color var(--t-fast);
            }

            .footer-contact-item:hover {
                color: rgba(255, 255, 255, .85);
            }

            .footer-contact-item i {
                color: var(--blue-light);
                font-size: .8rem;
                margin-top: 2px;
                flex-shrink: 0;
            }

            /* Newsletter */
            .footer-nl-form {
                display: flex;
                gap: 0;
                max-width: 100%;
                margin-top: .75rem;
            }

            .footer-nl-input {
                flex: 1;
                background: rgba(255, 255, 255, .07);
                border: 1.5px solid rgba(255, 255, 255, .12);
                border-right: none;
                border-radius: var(--r-md) 0 0 var(--r-md);
                padding: .6rem 1rem;
                font-size: .875rem;
                color: #fff;
                outline: none;
                font-family: 'Inter', sans-serif;
            }

            .footer-nl-input::placeholder {
                color: rgba(255, 255, 255, .35);
            }

            .footer-nl-input:focus {
                border-color: rgba(255, 255, 255, .3);
                background: rgba(255, 255, 255, .1);
            }

            .footer-nl-btn {
                background: var(--blue);
                border: 1.5px solid var(--blue);
                color: #fff;
                border-radius: 0 var(--r-md) var(--r-md) 0;
                padding: .6rem 1.1rem;
                font-size: .8rem;
                font-weight: 700;
                cursor: pointer;
                transition: background var(--t-fast);
                white-space: nowrap;
                font-family: 'Inter', sans-serif;
            }

            .footer-nl-btn:hover {
                background: var(--blue-dark);
            }

            /* Divider */
            .footer-divider {
                border-top: 1px solid rgba(255, 255, 255, .08);
                margin: 3.5rem 0 0;
            }

            /* Bottom bar */
            .footer-bottom {
                padding: 1.5rem 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: .75rem;
            }

            .footer-bottom-copy {
                font-size: .78rem;
                color: rgba(255, 255, 255, .3);
            }

            .footer-legal-links {
                display: flex;
                flex-wrap: wrap;
                gap: .5rem 1.25rem;
            }

            .footer-legal-links a {
                font-size: .78rem;
                color: rgba(255, 255, 255, .3);
                text-decoration: none;
                transition: color var(--t-fast);
            }

            .footer-legal-links a:hover {
                color: rgba(255, 255, 255, .7);
            }

            .footer-irdai {
                font-size: .72rem;
                color: rgba(255, 255, 255, .25);
                margin-top: .35rem;
            }

            /* Back to top */
            .back-to-top {
                position: fixed;
                bottom: 24px;
                right: 24px;
                width: 42px;
                height: 42px;
                border-radius: var(--r-sm);
                background: var(--blue);
                color: #fff;
                border: none;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .85rem;
                opacity: 0;
                visibility: hidden;
                transform: translateY(8px);
                transition: var(--t);
                z-index: 999;
                box-shadow: 0 4px 16px rgba(30, 64, 175, .35);
            }

            .back-to-top.show {
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .back-to-top:hover {
                background: var(--blue-dark);
                transform: translateY(-2px);
            }

    body {
            font-family: Arial, sans-serif;
            padding-top: 70px;
        }

        .hero {
            background: linear-gradient(135deg, #1E40AF, #0891B2);
            color: white;
            padding: 80px 0;
        }

        .section {
            padding: 60px 0;
        }

        .card:hover {
            transform: translateY(-5px);
            transition: 0.3s;
        }

        .cta {
            background: #1E40AF;
            color: white;
            padding: 50px 0;
        }

    /* ================================================================
   INSUREDGE — GLOBAL STYLESHEET  vFinal
   Nav/Hero  : Option 1 (original CSS, cleaned)
   Body/Cards: Option 3 modernised + Option 2 improvements merged
   ================================================================ */

    /* ── Reset ──────────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* ── Design Tokens ──────────────────────────────────────────── */
    :root {
        /* Option 1 brand colours (kept exactly) */
        --primary-color: #1E40AF;
        --secondary-color: #0891B2;
        --success-color: #10B981;
        --accent-color: #F59E0B;
        --text-dark: #1F2937;
        --text-light: #6B7280;
        --bg-light: #F9FAFB;
        --border-color: #E5E7EB;

        /* Option 3 extended tokens */
        --blue: #1E40AF;
        --blue-dark: #1e3a8a;
        --blue-mid: #2563eb;
        --blue-light: #3b82f6;
        --blue-pale: #EFF6FF;
        --blue-border: #BFDBFE;
        --cyan: #0891B2;
        --ink: #0f172a;
        --ink-700: #1e293b;
        --ink-500: #475569;
        --ink-400: #64748b;
        --ink-200: #94a3b8;
        --surface: #ffffff;
        --surface-2: #f8fafc;
        --surface-3: #f1f5f9;
        --border: #e2e8f0;
        --border-strong: #cbd5e1;
        --amber: #f59e0b;
        --green: #10b981;
        --red: #ef4444;

        /* Shadows */
        --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
        --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
        --shadow-md: 0 8px 24px rgba(15, 23, 42, .08), 0 2px 8px rgba(15, 23, 42, .04);
        --shadow-lg: 0 16px 48px rgba(15, 23, 42, .10), 0 4px 16px rgba(15, 23, 42, .06);
        --shadow-xl: 0 24px 64px rgba(15, 23, 42, .12), 0 8px 24px rgba(15, 23, 42, .06);
        --shadow-blue: 0 8px 24px rgba(30, 64, 175, .25);

        /* Radius */
        --r-sm: 8px;
        --r-md: 12px;
        --r-lg: 16px;
        --r-xl: 24px;
        --r-2xl: 36px;
        --r-pill: 100px;

        /* Transition */
        --t-fast: .18s cubic-bezier(.4, 0, .2, 1);
        --t: .26s cubic-bezier(.4, 0, .2, 1);

        /* Font */
        --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* ── Base ───────────────────────────────────────────────────── */
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font);
        font-size: 16px;
        line-height: 1.65;
        color: var(--text-dark);
        background: var(--surface);
        -webkit-font-smoothing: antialiased;
        padding-top: 76px;
        /* Option 1 value */
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.25;
        letter-spacing: -.02em;
        color: var(--text-dark);
    }

    a {
        color: var(--primary-color);
        text-decoration: none;
        transition: color var(--t-fast);
    }

    a:hover {
        color: var(--blue-dark);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    section {
        padding: 80px 0;
    }

    /* ── Typography helpers (Option 3 eyebrows, headings) ───────── */
    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--blue-mid);
        background: var(--blue-pale);
        border: 1px solid var(--blue-border);
        padding: .32rem .85rem;
        border-radius: var(--r-pill);
        margin-bottom: .85rem;
    }

    .eyebrow-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--blue-mid);
        flex-shrink: 0;
    }

    .sec-heading {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -.025em;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .sec-sub {
        font-size: 1.05rem;
        color: var(--ink-500);
        line-height: 1.72;
        max-width: 560px;
    }

    .section-divider {
        width: 48px;
        height: 4px;
        background: linear-gradient(90deg, var(--blue), var(--blue-light));
        border-radius: var(--r-pill);
        margin-bottom: 1.25rem;
    }

    /* ── Option 2 + 3 pill buttons ──────────────────────────────── */
    .btn-solid {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        background: var(--primary-color);
        color: #fff;
        border: 2px solid var(--primary-color);
        padding: .7rem 1.85rem;
        border-radius: var(--r-pill);
        font-weight: 700;
        font-size: .9rem;
        cursor: pointer;
        transition: var(--t);
        white-space: nowrap;
        text-decoration: none;
    }

    .btn-solid:hover {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: var(--shadow-blue);
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--blue-border);
        padding: .7rem 1.85rem;
        border-radius: var(--r-pill);
        font-weight: 600;
        font-size: .9rem;
        cursor: pointer;
        transition: var(--t);
        white-space: nowrap;
        text-decoration: none;
    }

    .btn-outline:hover {
        border-color: var(--primary-color);
        background: var(--blue-pale);
        color: var(--blue-dark);
        transform: translateY(-2px);
    }

    .btn-ghost-white {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        background: rgba(255, 255, 255, .12);
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, .3);
        padding: .7rem 1.85rem;
        border-radius: var(--r-pill);
        font-weight: 600;
        font-size: .9rem;
        cursor: pointer;
        transition: var(--t);
        white-space: nowrap;
        text-decoration: none;
        backdrop-filter: blur(8px);
    }

    .btn-ghost-white:hover {
        background: rgba(255, 255, 255, .22);
        border-color: rgba(255, 255, 255, .6);
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-white-solid {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        background: var(--surface);
        color: var(--primary-color);
        border: 2px solid var(--surface);
        padding: .7rem 1.85rem;
        border-radius: var(--r-pill);
        font-weight: 700;
        font-size: .9rem;
        cursor: pointer;
        transition: var(--t);
        white-space: nowrap;
        text-decoration: none;
    }

    .btn-white-solid:hover {
        background: var(--blue-pale);
        border-color: var(--blue-pale);
        color: var(--blue-dark);
        transform: translateY(-2px);
    }

    /* Bootstrap btn override — keep pill shape */
    .btn-primary {
        background: var(--primary-color);
        border-color: var(--primary-color);
        font-weight: 600;
        border-radius: var(--r-pill);
        padding: .6rem 1.5rem;
        transition: var(--t);
    }

    .btn-primary:hover,
    .btn-primary:focus {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-blue);
    }

    .btn-outline-primary {
        color: var(--primary-color);
        border-color: var(--primary-color);
        font-weight: 600;
        border-radius: var(--r-pill);
        padding: .6rem 1.5rem;
        transition: var(--t);
    }

    .btn-outline-primary:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }

    /* ── Tags / pills ───────────────────────────────────────────── */
    .pill {
        display: inline-block;
        padding: .22rem .75rem;
        border-radius: var(--r-pill);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .pill-blue {
        background: var(--blue-pale);
        color: var(--primary-color);
    }

    .pill-green {
        background: #f0fdf4;
        color: #15803d;
    }

    .pill-amber {
        background: #fffbeb;
        color: #92400e;
    }

    .tag {
        display: inline-block;
        padding: .22rem .75rem;
        border-radius: var(--r-pill);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .tag-blue {
        background: var(--blue-pale);
        color: var(--primary-color);
    }

    .tag-green {
        background: #f0fdf4;
        color: #15803d;
    }

    .tag-amber {
        background: #fffbeb;
        color: #92400e;
    }

    /* ── Icon box (Option 2 icon wraps, Option 3 sizes) ─────────── */
    .icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: var(--r-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9rem;
        flex-shrink: 0;
        transition: var(--t);
    }

    /* ── Scroll reveal ──────────────────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(22px);
        transition: opacity .62s ease, transform .62s ease;
    }

    .reveal.in {
        opacity: 1;
        transform: none;
    }

    .rd1 {
        transition-delay: .07s;
    }

    .rd2 {
        transition-delay: .14s;
    }

    .rd3 {
        transition-delay: .21s;
    }

    .rd4 {
        transition-delay: .28s;
    }

    /* ── Disclaimer ─────────────────────────────────────────────── */
    .disclaimer {
        background: #FEF3C7;
        border-left: 4px solid var(--accent-color);
        padding: 1rem;
        border-radius: 4px;
    }

    /* ================================================================
   NAVBAR — OPTION 1 (exact original, cleaned up)
   ================================================================ */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
        transition: box-shadow .25s;
    }

    /* Option 2 scroll enhancement on top of Option 1 */
    .main-header.scrolled {
        box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    }

    .main-header .navbar {
        padding: 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color) !important;
        display: flex;
        align-items: center;
        gap: .4rem;
    }

    /* Nav links — Option 1 exact */
    .nav-link {
        font-weight: 500;
        color: var(--text-dark) !important;
        transition: color 0.3s;
        padding: .5rem 1rem !important;
        border-radius: var(--r-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
        background: var(--blue-pale);
        /* Option 2 subtle bg on hover */
    }

    /* Dropdown — Option 2 improved */
    .dropdown-menu {
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        box-shadow: var(--shadow-xl);
        padding: .5rem;
        min-width: 210px;
        margin-top: .5rem !important;
        animation: ddFade .18s ease;
    }

    @keyframes ddFade {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: .55rem .85rem;
        border-radius: var(--r-sm);
        font-size: .875rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: var(--t-fast);
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: var(--blue-pale);
        color: var(--primary-color);
    }

    .dropdown-item .dd-icon {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .75rem;
        flex-shrink: 0;
    }

    .dd-sub {
        font-size: .7rem;
        color: var(--text-light);
        font-weight: 400;
        margin-top: .05rem;
    }

    /* Nav CTA — Option 1 btn-primary style, Option 2 pill shape */
    .nav-cta {
        background: var(--primary-color) !important;
        color: white !important;
        border-radius: var(--r-pill) !important;
        padding: .5rem 1.4rem !important;
        font-weight: 600 !important;
        font-size: .9rem !important;
        transition: var(--t) !important;
    }

    .nav-cta:hover {
        background: var(--blue-dark) !important;
        color: white !important;
        transform: translateY(-1px) !important;
        box-shadow: var(--shadow-blue) !important;
    }

    /* ================================================================
   HERO — OPTION 1 (exact original purple-blue gradient)
   ================================================================ */
    .hero-section {
        padding: 80px 0 60px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.3;
        pointer-events: none;
    }

    .hero-section .container {
        position: relative;
        z-index: 1;
    }

    .hero-section h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        color: white;
    }

    .hero-section .lead {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .cta-buttons .btn {
        margin-right: 1rem;
        margin-bottom: 1rem;
        padding: 12px 30px;
        font-weight: 600;
    }

    .btn-outline-light {
        border: 2px solid white;
        color: white;
    }

    .btn-outline-light:hover {
        background: white;
        color: var(--primary-color);
    }

    .hero-image {
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* Option 2: Stats bar below hero */
    .hero-stats-bar {
        background: white;
        border-bottom: 1px solid var(--border-color);
        padding: 1.25rem 0;
    }

    .hero-stat-val {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--primary-color);
        letter-spacing: -.02em;
        line-height: 1;
    }

    .hero-stat-lbl {
        font-size: .75rem;
        color: var(--text-light);
        margin-top: .2rem;
    }

    .hero-stat-sep {
        width: 1px;
        background: var(--border-color);
        height: 32px;
        align-self: center;
    }

    /* ================================================================
   SERVICE CARDS — Option 3 coloured tops + Option 2 icon wraps
   ================================================================ */
    .services-section {
        background: var(--bg-light);
    }

    .service-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: var(--r-xl);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow-xs);
        transition: var(--t);
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
        border-color: transparent;
    }

    .svc-card-top {
        padding: 1.85rem 2rem 1.5rem;
    }

    .svc-card-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9rem;
        margin-bottom: 1.1rem;
        transition: var(--t);
    }

    .service-card:hover .svc-card-icon {
        transform: scale(1.1) rotate(-3deg);
    }

    .svc-card-badge {
        font-size: .65rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        margin-bottom: .5rem;
        display: block;
    }

    .svc-card-title {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--ink);
        margin-bottom: .4rem;
        letter-spacing: -.025em;
    }

    .svc-card-tagline {
        font-size: .85rem;
        font-weight: 500;
    }

    .svc-card-body {
        padding: 1.5rem 2rem 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .svc-card-desc {
        font-size: .9rem;
        color: var(--ink-500);
        line-height: 1.68;
        margin-bottom: 1.4rem;
    }

    .svc-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.75rem;
    }

    .svc-features li {
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        font-size: .865rem;
        color: var(--ink-500);
        padding: .4rem 0;
        border-bottom: 1px solid var(--border);
    }

    .svc-features li:last-child {
        border-bottom: none;
    }

    .svc-features li i {
        margin-top: 2px;
        font-size: .75rem;
        flex-shrink: 0;
    }

    .svc-link {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        font-size: .875rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--r-pill);
        padding: .65rem 1.4rem;
        transition: var(--t);
        margin-top: auto;
        align-self: flex-start;
    }

    /* ================================================================
   TRUST / WHY US — Option 3 + Option 2 hover line
   ================================================================ */
    .value-section {
        background: white;
    }

    .trust-card {
        padding: 1.75rem;
        background: white;
        border: 1px solid var(--border-color);
        border-radius: var(--r-lg);
        box-shadow: var(--shadow-xs);
        transition: var(--t);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .trust-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--t);
    }

    .trust-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--blue-border);
    }

    .trust-card:hover::after {
        transform: scaleX(1);
    }

    .trust-icon {
        width: 46px;
        height: 46px;
        border-radius: var(--r-md);
        background: var(--blue-pale);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9rem;
        margin-bottom: 1.2rem;
        transition: var(--t);
    }

    .trust-card:hover .trust-icon {
        background: var(--primary-color);
        color: white;
    }

    .trust-card h4 {
        font-size: .97rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: .5rem;
    }

    .trust-card p {
        font-size: .875rem;
        color: var(--ink-500);
        line-height: 1.65;
        margin: 0;
    }

    /* ================================================================
   CALCULATORS — Option 3 dark section
   ================================================================ */
    .calculator-preview {
        background: var(--ink-700);
        position: relative;
        overflow: hidden;
    }

    .calculator-preview::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 55% 70% at 85% 40%, rgba(30, 64, 175, .3) 0%, transparent 60%),
            radial-gradient(ellipse 40% 50% at 10% 70%, rgba(8, 145, 178, .18) 0%, transparent 60%);
    }

    .calculator-preview::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
        background-size: 56px 56px;
    }

    .calculator-card {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: var(--r-xl);
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: var(--t);
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
    }

    .calculator-card:hover {
        background: rgba(255, 255, 255, .1);
        border-color: rgba(255, 255, 255, .2);
        transform: translateY(-5px);
        color: inherit;
    }

    .calculator-card .calc-icon {
        width: 50px;
        height: 50px;
        border-radius: var(--r-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .95rem;
        margin-bottom: 1.25rem;
        transition: var(--t);
    }

    .calculator-card:hover .calc-icon {
        transform: scale(1.08) rotate(-3deg);
    }

    .calculator-card h3 {
        font-size: 1.15rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: -.02em;
        margin-bottom: .5rem;
    }

    .calculator-card p {
        font-size: .875rem;
        color: rgba(255, 255, 255, .55);
        line-height: 1.68;
        flex: 1;
        margin-bottom: 1.5rem;
    }

    .calc-arrow {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        font-size: .85rem;
        font-weight: 700;
        color: rgba(255, 255, 255, .75);
        border: 1.5px solid rgba(255, 255, 255, .2);
        padding: .6rem 1.25rem;
        border-radius: var(--r-pill);
        transition: var(--t);
        margin-top: auto;
    }

    .calculator-card:hover .calc-arrow {
        color: #fff;
        border-color: rgba(255, 255, 255, .5);
        background: rgba(255, 255, 255, .08);
    }

    /* ================================================================
   TESTIMONIALS — Option 3
   ================================================================ */
    .blog-section {
        background: var(--surface-2);
    }

    .testi-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: var(--r-xl);
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow-xs);
        transition: var(--t);
    }

    .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--blue-border);
    }

    .testi-stars {
        color: var(--accent-color);
        font-size: .85rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .testi-quote {
        font-size: 3rem;
        line-height: .85;
        color: var(--blue-pale);
        font-weight: 900;
        letter-spacing: -.06em;
        margin-bottom: .5rem;
        font-family: Georgia, serif;
    }

    .testi-text {
        font-size: .9rem;
        color: var(--ink-500);
        line-height: 1.72;
        flex: 1;
        margin-bottom: 1.4rem;
        font-style: italic;
    }

    .testi-name {
        font-size: .9rem;
        font-weight: 700;
        color: var(--ink);
    }

    .testi-city {
        font-size: .78rem;
        color: var(--ink-400);
        margin-top: .15rem;
    }

    /* ================================================================
   BLOG CARDS — Option 2 border + Option 3 pill tags
   ================================================================ */
    .blog-card {
        background: white;
        border-radius: var(--r-lg);
        overflow: hidden;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-xs);
        transition: var(--t);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--blue-border);
    }

    .blog-card img {
        width: 100%;
        height: 185px;
        object-fit: cover;
        display: block;
    }

    .blog-card .card-body {
        padding: 1.4rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-card h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
        margin: .75rem 0 .6rem;
        line-height: 1.4;
        flex: 1;
    }

    .blog-card h3 a {
        color: inherit;
        text-decoration: none;
        transition: color var(--t-fast);
    }

    .blog-card h3 a:hover {
        color: var(--primary-color);
    }

    .blog-card p {
        font-size: .85rem;
        color: var(--ink-500);
        line-height: 1.6;
    }

    .blog-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: .85rem;
        border-top: 1px solid var(--border-color);
        margin-top: auto;
    }

    .blog-read {
        display: flex;
        align-items: center;
        gap: .3rem;
        font-size: .8rem;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        transition: gap var(--t-fast);
    }

    .blog-read:hover {
        gap: .5rem;
    }

    /* ================================================================
   PARTNERS
   ================================================================ */
    .partners-section {
        background: white;
        padding: 3.5rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .partner-img {
        max-height: 38px;
        max-width: 96px;
        object-fit: contain;
        filter: grayscale(100%) opacity(.45);
        transition: var(--t);
    }

    .partner-img:hover {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.06);
    }

    /* ================================================================
   FINAL CTA — Option 3 gradient card
   ================================================================ */
    .cta-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255, 255, 255, .07) 0%, transparent 60%);
    }

    .cta-inner-card {
        background: rgba(255, 255, 255, .1);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--r-2xl);
        padding: 2.5rem;
    }

    .cta-inner-card h3 {
        font-size: 1.4rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: -.025em;
        margin-bottom: .5rem;
    }

    .cta-inner-card p {
        font-size: .9rem;
        color: rgba(255, 255, 255, .7);
        margin-bottom: 1.5rem;
        line-height: 1.65;
    }

    /* ================================================================
   FOOTER — Option 1 original dark footer
   ================================================================ */
    .site-footer {
        background: var(--text-dark);
        color: white;
        padding: 4rem 0 2rem;
    }

    .site-footer h5 {
        color: white;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links a {
        color: #D1D5DB;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
        margin-bottom: .5rem;
        font-size: .9rem;
    }

    .footer-links a:hover {
        color: white;
    }

    .footer-brand p {
        color: #D1D5DB;
        margin-top: 1rem;
        font-size: .9rem;
        line-height: 1.6;
    }

    .footer-social {
        display: flex;
        gap: .5rem;
        margin-top: 1rem;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .6);
        font-size: .8rem;
        text-decoration: none;
        transition: var(--t);
    }

    .footer-social a:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        color: #D1D5DB;
        font-size: .9rem;
        margin-bottom: .65rem;
        text-decoration: none;
        transition: color .2s;
    }

    .footer-contact-item:hover {
        color: white;
    }

    .footer-contact-item i {
        margin-top: 2px;
        color: var(--blue-light);
        flex-shrink: 0;
    }

    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: .75rem 1.25rem;
        margin-top: .75rem;
    }

    .footer-legal-links a {
        color: rgba(255, 255, 255, .35);
        font-size: .78rem;
        text-decoration: none;
        transition: color .2s;
    }

    .footer-legal-links a:hover {
        color: rgba(255, 255, 255, .7);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .1);
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .footer-bottom p {
        color: #9CA3AF;
        font-size: .875rem;
        margin: 0;
    }

    /* Back to top */
    .back-to-top {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 44px;
        height: 44px;
        border-radius: var(--r-md);
        background: var(--primary-color);
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: var(--t);
        z-index: 999;
        box-shadow: var(--shadow-blue);
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--blue-dark);
        transform: translateY(-2px);
    }

    /* ================================================================
   CALCULATOR PAGE (inner pages)
   ================================================================ */
    .calculator-page {
        padding: 60px 0;
        background: var(--bg-light);
    }

    .calculator-section {
        background: white;
        border-radius: var(--r-xl);
        padding: 2.5rem;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    }

    .calculator-section h2 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .calculator-results {
        background: var(--bg-light);
        border-radius: var(--r-lg);
        padding: 1.75rem;
    }

    .result-card {
        background: white;
        padding: 1.25rem;
        border-radius: var(--r-md);
        margin-bottom: .85rem;
        text-align: center;
        border: 1px solid var(--border-color);
    }

    .result-card.highlight {
        background: linear-gradient(135deg, var(--primary-color), var(--cyan));
        color: white;
        border: none;
    }

    .result-value {
        font-size: 2rem;
        font-weight: 900;
        margin: 0;
    }

    /* Contact / Blog / Admin */
    .contact-page {
        padding: 60px 0;
        background: var(--bg-light);
    }

    .contact-info {
        background: white;
        padding: 2rem;
        border-radius: var(--r-lg);
        border: 1px solid var(--border-color);
        height: 100%;
    }

    .info-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.75rem;
        align-items: flex-start;
    }

    .info-item i {
        font-size: 1.2rem;
        color: var(--primary-color);
        margin-top: 2px;
        flex-shrink: 0;
    }

    .contact-form {
        background: white;
        padding: 2.5rem;
        border-radius: var(--r-lg);
        border: 1px solid var(--border-color);
    }

    .blog-page {
        padding: 60px 0;
        background: var(--bg-light);
    }

    .category-filter {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .category-filter .btn {
        border-radius: var(--r-pill);
        font-size: .85rem;
        padding: .45rem 1.1rem;
        font-weight: 600;
    }

    .admin-wrapper {
        display: flex;
        min-height: 100vh;
        padding-top: 0;
    }

    .admin-sidebar {
        width: 250px;
        background: var(--text-dark);
        color: white;
        padding: 2rem 0;
        position: fixed;
        height: 100vh;
        left: 0;
        top: 0;
        overflow-y: auto;
    }

    .sidebar-header {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-menu li {
        margin-bottom: .25rem;
    }

    .sidebar-menu a {
        display: flex;
        align-items: center;
        padding: .7rem 1.5rem;
        color: rgba(255, 255, 255, .6);
        text-decoration: none;
        transition: var(--t);
        font-size: .875rem;
    }

    .sidebar-menu a:hover,
    .sidebar-menu li.active a {
        background: rgba(255, 255, 255, .08);
        color: white;
        padding-left: 1.75rem;
    }

    .sidebar-menu i {
        margin-right: .75rem;
        width: 18px;
        text-align: center;
    }

    .admin-content {
        margin-left: 250px;
        padding: 2rem;
        width: calc(100% - 250px);
        background: var(--bg-light);
        min-height: 100vh;
    }

    .content-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    /* ================================================================
   RESPONSIVE
   ================================================================ */
    @media (max-width: 991px) {
        .hero-stat-sep {
            display: none;
        }

        .admin-sidebar {
            width: 200px;
        }

        .admin-content {
            margin-left: 200px;
            width: calc(100% - 200px);
        }
    }

    @media (max-width: 767px) {
        body {
            padding-top: 60px;
        }

        section {
            padding: 60px 0;
        }

        .hero-section {
            padding: 60px 0 40px;
        }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section .lead {
            font-size: 1rem;
        }

        .cta-buttons .btn {
            display: block;
            width: 100%;
            margin-right: 0;
        }

        .sec-heading {
            font-size: 1.75rem;
        }

        .admin-sidebar {
            width: 100%;
            position: relative;
            height: auto;
        }

        .admin-content {
            margin-left: 0;
            width: 100%;
        }

        .back-to-top {
            bottom: 16px;
            right: 16px;
        }
    }

    @media (max-width: 480px) {
        .hero-section h1 {
            font-size: 1.75rem;
        }

        .sec-heading {
            font-size: 1.5rem;
        }
    }