
  @font-face {
  font-family: 'Avenir LT Pro';
  src: url('./avenir.ttf') format('opentype');
  font-weight: 900 !important;
  font-style: oblique;
  font-display: swap;
}
h1,h2,h3,h4,.display{
  font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;
  line-height:1.08;
  letter-spacing:-.02em
}
  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; }
  body {
    /* font-family:'Inter',system-ui,sans-serif; */
     font-family:'Poppins',sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ===== BRAND COLOURS (preserved from Ageon) ===== */
  
 :root {
  /* ── PRIMARY COLOURS ── */
  --primary-teal:   #00B09B;   /* 1 */
  --primary-yellow: #FFCA05;   /* 2 */
  --primary-red:    #C3161C;   /* 3 */

  /* ── SECONDARY COLOURS ── */
  --secondary-dark:   #231F20;   /* 1 */
  --secondary-orange: #D97121;   /* 2 */
  --secondary-gold:   #F7CC1F;   /* 3 */

  /* ── Legacy/neutral (unchanged, non-conflicting) ── */
  --teal: #00b89c;
  --teal-dark: #009b82;
  --teal-light: #e6f9f6;
  --navy: #1a1a2e;
  --navy-mid: #2d2d4e;
  --off-white: #f8f9fb;
  --light-gray: #f2f4f7;
  --border: #e2e6ea;
  --text-body: #444466;
  --text-muted: #888aaa;
  --radius: 12px;
  --radius-lg: 20px;

  /* ── Mapped tokens (drop-in replacements, aliased to primary/secondary) ── */
  --teal-900:       var(--secondary-dark);
  --teal-700:       var(--primary-teal);
  --teal-500:       var(--primary-teal);
  --teal-400:       var(--primary-teal);
  --gold-highlight: var(--secondary-gold);
  --gold:           var(--secondary-orange);
  --gold-light:     var(--primary-yellow);
  --cream:          #fdf9f0;
  --cream-2:        #fefcf5;
  --ink:            var(--secondary-dark);
  --slate:          #4a4547;
  --line:           rgba(0,176,155,.15);
  --white:          #ffffff;
  --mark-y:         var(--primary-yellow);
  --mark-r:         var(--primary-red);

  --shadow-sm: 0 2px 10px rgba(35,31,32,.06);
  --shadow:    0 18px 50px rgba(35,31,32,.12);
  --shadow-lg: 0 30px 80px rgba(35,31,32,.18);

  --r:    18px;
  --r-lg: 26px;
  --maxw: 1240px;
  --pad:  clamp(20px, 5vw, 64px);
}

  /* ===== LAYOUT CONTAINERS ===== */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ===== SECTION BASE ===== */
  section {
    padding: 80px 0;
  }

  /* ===== DECORATIVE SHAPES (Technum reference style) ===== */
  .shape-leaf {
    position: absolute;
    border-radius: 0 60% 0 60%;
    opacity: 0.15;
    pointer-events: none;
  }
  .shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
  }

  /* ===== EYEBROW LABEL ===== */
  .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .eyebrow-dark {
    background: rgba(0,184,156,0.18);
    color: #00d4b8;
  }

  /* ===== SECTION TITLES ===== */
  .section-title {
    font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-title span,
  .section-title .accent {
    color: var(--teal);
  }
  .section-subtitle {
    font-size: 16px;
    color: var(--text-body);
    max-width: 600px;
    line-height: 1.7;
  }
  .text-center { text-align: center; }
  .text-center .section-subtitle { margin: 0 auto; }

  /* ===== BUTTONS ===== */
  .btn {
    font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;
    display: inline-block;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.22s ease;
    letter-spacing: 0.3px;
  }
  .btn-primary {
    background: var(--teal);
    color: #ffffff;
    border-color: var(--teal);
  }
  .btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,184,156,0.35); }
  .btn-outline {
    background: #fff;
    color: var(--teal);
    border-color: var(--teal);
  }
  /* .btn-outline:hover { background: var(--teal); color: #fff; } */
  .btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
  }
  .btn-gold:hover { background: #c8860f; border-color: #c8860f; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,160,32,0.35); }
  .btn-white {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
  }
  .btn-white:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
  .btn-lg { padding: 16px 36px; font-size: 15px; }
  .btn-sm { padding: 6px 20px; font-size: 15px; }
  .btn-block { width: 100%; text-align: center; }

  /* ===== NAVBAR ===== */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 0;
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar-logo .logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--teal);
    letter-spacing: -0.5px;
  }
  .navbar-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
  }
  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .navbar-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
  }
  .navbar-nav a:hover { color: var(--teal); }
  .navbar-cta { display: flex; align-items: center; gap: 12px; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

  /* ===== HERO SECTION ===== */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #f0faf8 0%, #e8f8f5 40%, #f8f9fb 100%);
    padding: 0;
    overflow: hidden;
    min-height: 560px;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 560px;
    gap: 40px;
  }
  .hero-content {
    padding: 80px 0 80px 0;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
  .hero-title {
    font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero-title .teal { color: var(--teal); }
  .hero-desc {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 520px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 40px;
  }
  .hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
  }
  .hero-stat {
    display: flex;
    flex-direction: column;
  }
  .hero-stat .stat-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }
  .hero-stat .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
  }
  .stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
  }
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-height: 480px;
  }
  .hero-mobile-image{
    display:none;
}
  .hero-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hero-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    position: relative;
    z-index: 2;
    /* Using gradient placeholder since no actual image */
    background: linear-gradient(135deg, #1a2a3a 0%, #2d4a5a 60%, #1a3a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(0,184,156,0.3) 0%, transparent 60%); */
  }
  .hero-shape-1 {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: var(--teal);
    opacity: 0.15;
    border-radius: 0 50% 0 50%;
    z-index: 1;
  }
  .hero-shape-2 {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--gold);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
  }
  .hero-card-float {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    z-index: 10;
  }
  .hero-card-float.card-top {
    top: 40px;
    left: -30px;
  }
  .hero-card-float.card-bottom {
    bottom: 60px;
    left: -40px;
  }
  .float-card-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
  .float-card-value { font-size: 18px; font-weight: 800; color: var(--navy); }
  .float-card-sub { font-size: 11px; color: var(--teal); font-weight: 600; }

  /* ===== MARQUEE STRIP ===== */
  .marquee-strip {
    background: var(--teal);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee-strip:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .marquee-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%; }

  /* ===== CATEGORY SECTION (dark banner) ===== */
  .category-banner {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .category-banner .container {
    position: relative;
    z-index: 2;
  }
  .category-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .category-left .section-title { color: #fff; }
  .category-left .section-subtitle { color: rgba(255,255,255,0.7); }
  .category-stat-row {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
  }
  .category-stat {
    display: flex;
    flex-direction: column;
  }
  .category-stat .big-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--secondary-gold );
    line-height: 1;
  }
  .category-stat .big-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    max-width: 140px;
    line-height: 1.4;
  }
  .category-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .zero-badge {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
  }
  .zero-badge .big-zero { font-size: 72px; font-weight: 900; line-height: 1; }
  .zero-badge .zero-label { font-size: 14px; opacity: 0.85; margin-top: 6px; }
  .category-note {
    margin-top: 28px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
  }
  .bg-deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
  }

  /* ===== SERVICES GRID (icon cards — Technum style) ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
  }
  .service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--teal);
  }
  /* .service-card:hover::before { transform: scaleX(1); } */
  .service-icon {
    width: 52px; height: 52px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.25s;
  }
  /* .service-card:hover .service-icon { background: var(--teal); } */
  .service-icon svg { width: 24px; height: 24px; }
  .service-card:hover .service-icon svg path,
  .service-card:hover .service-icon svg circle,
  .service-card:hover .service-icon svg rect { stroke: #fff !important; }
  .service-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .service-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; }

  /* ===== TWO-COLUMN FEATURE ===== */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .two-col.reverse { direction: rtl; }
  .two-col.reverse > * { direction: ltr; }
  .feature-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .feature-img-placeholder {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
  }
  .feature-img-placeholder.blue-green {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d6a5a 100%);
  }
  .feature-img-placeholder.dark-navy {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  }
  .feature-img-deco {
    position: absolute;
    border-radius: 0 50% 0 50%;
    background: var(--teal);
    opacity: 0.25;
  }
  .feature-content .section-title { margin-bottom: 14px; }
  .feature-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
  }
  .check-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .check-icon::after {
    content: '';
    width: 6px; height: 10px;
    border: 2px solid var(--teal);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
  }

  /* ===== PARTNERS / LOGOS ===== */
  .partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
  }
  .partner-logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: -0.5px;
    transition: color 0.2s;
    opacity: 0.65;
  }
  .partner-logo:hover { color: var(--teal); opacity: 1; }

  /* ===== STATS ROW ===== */
  .stats-row {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    flex-wrap: wrap;
  }
  .stat-box {
    flex: 1;
    min-width: 160px;
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
  }
  .stat-box:last-child { border-right: none; }
  .stat-box:hover { background: var(--teal-light); }
  .stat-box .num { font-size: 36px; font-weight: 900; color: var(--navy); line-height: 1; }
  .stat-box .num span { color: var(--teal); }
  .stat-box .lbl { font-size: 12px; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

  /* ===== PRICING CARDS ===== */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start;
  }
  .pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
  }
  .pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .pricing-card.featured {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
  }
  .pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
  .pricing-card-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--teal);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .pricing-header {
    padding: 28px 28px 20px;
  }
  .pricing-card.featured .pricing-header {
    background: var(--teal);
    color: #fff;
  }
  .pricing-tier { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; opacity: 0.7; }
  .pricing-name { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
  .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
  }
  .price-currency { font-size: 18px; font-weight: 700; }
  .price-amount { font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;font-size: 38px; font-weight: 900; line-height: 1; }
  .price-period { font-size: 12px; opacity: 0.65; }
  .pricing-body { padding: 24px 28px 28px; }
  .pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-body);
  }
  .pf-check {
    width: 18px; height: 18px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .pf-check::after {
    content: '✓';
    color: var(--teal);
    font-size: 10px;
    font-weight: 900;
  }

  /* ===== DARK SECTION ===== */
  .section-dark {
    /* background: var(--navy); */
    background: #030303e3;
    color: #fff;
  }
  .section-dark .section-title { color: #fff; }
  .section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
  .section-teal {
    background: var(--teal);
    color: #fff;
  }

  /* ===== PROCESS STEPS ===== */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
    z-index: 0;
  }
  .step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: all 0.25s;
    border: 1px solid var(--border);
  }
  .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
  .step-num {
    width: 56px; height: 56px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin: 0 auto 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,184,156,0.3);
  }
  .step-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .step-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; }

  /* ===== FRANCHISE TABLE ===== */
  .table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-top: 28px;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
  }
  thead th {
    background: var(--navy);
    color: #fff;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
  }
  thead th:first-child { border-radius: 12px 0 0 0; }
  thead th:last-child { border-radius: 0 12px 0 0; }
  tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
  tbody tr:hover { background: var(--teal-light); }
  tbody tr:last-child { border-bottom: none; }
  tbody td { padding: 12px 18px; font-size: 14px; color: var(--text-body); }
  tbody td:first-child { font-weight: 600; color: var(--navy); }
  .teal-td { color: var(--teal) !important; font-weight: 700 !important; }

  /* ===== INVESTMENT HIGHLIGHT ===== */
  .invest-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .invest-card {
    font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: var(--radius-lg);
    padding: 36px;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-lg);
  }
  .invest-card .invest-label {font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif; font-size: 13px; opacity: 0.8; margin-bottom: 8px; }
  .invest-card .invest-amount {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
  }
  .invest-card .invest-note { font-size: 12px; opacity: 0.7; margin-top: 8px; }
  .invest-details { display: flex; flex-direction: column; gap: 16px; }
  .invest-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .invest-detail-row:last-child { border-bottom: none; }
  .detail-label { font-size: 13px; color: var(--text-muted); }
  .detail-value { font-size: 14px; font-weight: 700; color: var(--navy); }
  .detail-value.teal { color: var(--teal); }

  /* ===== TESTIMONIALS ===== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.25s;
    position: relative;
  }
  .testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; left: 22px;
    font-size: 56px;
    font-weight: 900;
    color: var(--teal);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
  }
  .testimonial-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
  }
  .author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
  .author-role { font-size: 12px; color: var(--text-muted); }

  /* ===== CTA SECTION ===== */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
  }
  .cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .cta-content .section-title { color: #fff; }
  .cta-content .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

  /* ===== CONTACT FORM ===== */
  .contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
  }
  .contact-form h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
  }
  .form-group { margin-bottom: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--navy);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,184,156,0.1);
    background: #fff;
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand .logo-text { color: var(--teal); font-size: 24px; font-weight: 900; margin-bottom: 14px; display: block; }
  .footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
  .footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
  .footer-col ul { display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { font-size: 13px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--teal); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom a { color: var(--teal); }

  /* ===== INFO CARDS GRID ===== */
  .info-cards-grid {
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--border);
    transition: all 0.25s;
    box-shadow: var(--shadow-sm);
  }
  .info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal); }
  .info-card-icon {
    width: 46px; height: 46px;
    border-radius: 10px;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
  }
  .info-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .info-card p { font-size: 13px; color: var(--text-body); line-height: 1.5; }

  /* ===== SECTION WITH SIDE IMAGE ===== */
  .side-img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .side-img-placeholder {
    width: 100%;
    height: 437px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1a2a4a 0%, #0d2a3a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .side-img-deco-1 {
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 0 50% 0 50%;
    /* background: var(--teal); */
    opacity: 0.2;
  }
  .side-img-deco-2 {
    position: absolute;
    bottom: 30px; left: 30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
  }
  .side-img-text {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 16px 20px;
  }
  .side-img-text p { color: #fff; font-size: 14px; font-weight: 600; }
  .side-img-text span { color: var(--teal); font-size: 12px; }

  /* ===== JOURNEY STEPS ===== */
  .journey-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .journey-step {
    font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;
    text-align: center;
    position: relative;
  }
  .journey-step::after {
    content: '→';
    position: absolute;
    right: -12px; top: 22px;
    color: var(--teal);
    font-size: 18px;
    font-weight: 700;
  }
  .journey-step:last-child::after { display: none; }
  .journey-num {
    width: 48px; height: 48px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    margin: 0 auto 12px;
    box-shadow: 0 4px 14px rgba(0,184,156,0.3);
  }
  .journey-step .jlabel { font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .journey-step .jsub { font-size: 12px; color: var(--text-muted); }

  /* ===== HIGHLIGHT CARD ===== */
  .highlight-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .highlight-card .hc-deco {
    position: absolute;
    top: -30px; right: -30px;
    width: 160px; height: 160px;
    border-radius: 0 50% 0 50%;
    background: var(--teal);
    opacity: 0.15;
  }

  /* ===== ALERT / NOTICE ===== */
  .notice-bar {
    background: var(--gold-light);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 20px;
    font-size: 13px;
    color: var(--navy);
    margin-top: 20px;
    line-height: 1.6;
  }
  .cta-inner {
  
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.cta-content{
    margin-top: 50px;
}

  /* ===== 2560px ===== */
  @media (min-width: 2000px) {
    .container { max-width: 1400px; }
    .container-wide { max-width: 1800px; }
    .hero-title { font-size: 68px; }
    .section-title { font-size: 46px; }
  }

  /* ===== TABLET ===== */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .steps-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .journey-grid { grid-template-columns: repeat(3, 1fr); }
    .journey-step::after { display: none; }
    .hero-title { font-size: 40px; }
    .two-col { gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  }
  @media (max-width: 992px) {
    .two-col { grid-template-columns: 1fr; }
    .two-col.reverse { direction: ltr; }
    .invest-row { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .category-banner-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { min-height: 280px; }
    .hero-img-main { height: 280px; border-radius: var(--radius-lg); }
    .hero-card-float.card-top { left: 10px; top: 10px; }
    .hero-card-float.card-bottom { left: 10px; bottom: 10px; }
    .side-img-section { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .navbar-nav { display: none; }
    .hamburger { display: flex; }
  }
  @media (max-width: 768px) {
    section { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .category-stat-row { gap: 24px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .stats-row { flex-direction: column; }
    .stat-box { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-box:last-child { border-bottom: none; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 576px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 36px;text-align: center; }
    section { padding: 48px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .info-cards-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .journey-grid { grid-template-columns: 1fr 1fr; }
    .zero-badge .big-zero { font-size: 52px; }
    .pricing-grid { max-width: 100%; }
    .navbar-cta .btn-outline { display: none; font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;}
    .footer-bottom { flex-direction: column; text-align: center; }
    .invest-card .invest-amount { font-size: 40px; }
    .contact-form { padding: 24px 18px; }
    .hero-card-float { display: none; }
    .hero-actions .btn { padding: 8px 20px; font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;}
  }
  @media (max-width: 375px) {
    .hero-title { font-size: 26px; }
    .section-title { font-size: 22px; }
    .stat-box .num { font-size: 28px; }
  }
  @media (max-width: 320px) {
    .hero-title { font-size: 22px; }
    .section-title { font-size: 20px; }
  }
  #about{
  padding-top: 50px;
  padding-bottom: 20px;
}

/* ====== FOOTER ====== */
footer{
  background:var(--ink);
  color:rgba(255,255,255,.7);
  /* padding:clamp(46px,6vw,72px) 0; */
  padding:clamp(46px,6vw,72px) 0 clamp(20px,3vw,32px);
}

.foot-about{font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;font-size:.92rem;margin-top:18px;margin-bottom:0;max-width:380px;text-align:center}


.foot-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:16px;
}

.slide-fico .invest-badge {
  background: linear-gradient(135deg, var(--gold), #a87d1c);
  color: #fff;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.foot-center .logo-word{color:#fff}
.foot-center .logo-sub{color:rgba(255,255,255,.5)}
.foot-about{font-size:.92rem;margin-top:18px;max-width:380px;text-align:center}


.foot-bottom{
  border-top:1px solid rgba(255,255,255,.1);padding-top:24px;
  display:flex;justify-content:center;align-items:center;gap:16px;flex-wrap:wrap;font-size:.84rem
}
.foot-bottom .powered b{background:#fff;color:var(--ink);padding:1px 6px;border-radius:3px}
.hero-img-main{
    position:relative;
    width:100%;
    height:480px;
    border-radius:24px;
    overflow:hidden;

    background:
      url("/images/banner.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
@media (max-width:768px){
    .hero-grid,
    .hero-content-wrap{
        grid-template-columns:1fr;
    }

    .hero-img-main{
        display:none;
    }
    .state-master{
        width:80%;
    }
}

/* .hero-image-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,248,240,0.35); 
    z-index:1;
} */
/* 
.stat-card{
    position:absolute;
    z-index:2;
    backdrop-filter:blur(8px);
} */

/* .stat-top{
    top:30px;
    left:30px;
    background:rgba(255,255,255,0.85);
    border:1px solid rgba(0,0,0,.08);
    border-radius:12px;
    padding:16px 20px;
}

.stat-bottom{
    bottom:30px;
    right:30px;
    background:rgba(255,255,255,0.9);
    border-radius:12px;
    padding:14px 18px;
} */

.label{
    color:#555;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.value{
    color:#0f172a;
    font-size:28px;
    font-weight:900;
}

.sub{
    color:#00b89c;
    font-size:12px;
}
.side-img-placeholder{
    position:relative;
    overflow:hidden;
    border-radius:24px;

    background:
      url("images/entry-funnel.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

@media (max-width:768px){
    .side-img-placeholder{
        background-position: 70% center;
    }
}

/* #invest{
    position: relative;
    overflow: hidden;

    background:
      linear-gradient(
        rgba(8, 25, 45, 0.82),
        rgba(8, 25, 45, 0.82)
      ),
      url("images/category.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */
 /* AFTER */
#invest{
    position: relative;
    overflow: hidden;

    background:
      linear-gradient(
        rgba(0, 176, 155, 0.98),
        rgba(0, 176, 155, 0.98)
      ),
      url("images/category.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Mobile image */
@media (max-width:768px){

    #invest{
        background-image:
            linear-gradient(
        rgba(0, 176, 155, 0.98),
        rgba(0, 176, 155, 0.98)
      ),
            url("images/category.png");

        background-size: cover;
        background-position: center top; /* adjust if needed */
        background-repeat: no-repeat;
    }

}
.category-banner{
    position: relative;
    overflow: hidden;

    background-image: url("images/the-opportunity.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* min-height: 700px;  */
}
@media (max-width:768px){
    .category-banner{
        background-image: url("images/heroimg-mobile.png");
        background-position: center;
    }
}

.category-banner .container{
    position: relative;
    z-index: 2;
}
@media (max-width: 768px){

  .hero-desc {
    margin-bottom: 195px;
    text-align: center;
    font-size: 12px;
  }
.hero-img-main{
        display:block;
        width:100%;
        height:220px; /* adjust */
        margin:24px 0;

        background-image:url("images/sideimg.png");
        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;

        border-radius:20px;
    }

    .hero-eyebrow{
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-desc{
      text-align: center;
    }
    .hero-content {
      padding-top: 0px;
      padding-bottom: 30px;
    }
    .hero-actions{
      margin-bottom: 0px;
    }
    .hero-inner{
      gap: 0px;
    }
    .eyebrow-dark {
      /* text-align: center; */
       display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .section-title {
    font-size: clamp(22px, 3vw, 38px);}
    .section-title{
      text-align: center;
    }
    .section-subtitle{
      font-size: 15px;
      display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .btn-primary,.btn-lg {
      font-family:'Avenir LT Pro','Plus Jakarta Sans',sans-serif;
        display:block;
        width:max-content;
        margin:0 auto;
    }
    
}
@media (max-width: 768px){
    .category-stat-row{
        display:flex;
        flex-direction:row;
        gap:10px;
    }

    .category-stat{
        flex:1;
        text-align:center;
    }

    .big-num{
        font-size:24px !important;
        display:block;
    }

    .big-label{
        font-size:11px;
        line-height:1.3;
        display:block;
    }
    .category-note {
      text-align: center;
    }
    .service-card {
    text-align: center;}
   .service-icon{
        display:flex;
        justify-content:center;
        align-items:center;
        margin:0 auto 16px;
    }
    .eyebrow{
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .feature-list{
      align-items: center;
    }
    .btn.btn-primary,.btn-lg{
        display: table;
        /* margin: 28px auto 0; */
    }
    .info-card {
      text-align: center;
    }
    .info-card-icon{
      display:flex;
        justify-content:center;
        align-items:center;
        margin:0 auto 16px;
    }
    .contact-form h3{
      text-align: center;
    }
     .state-master-title{
        text-align:center;
    }
    /* .pricing-card {
      text-align: center;
    }
    .pricing-price{
       display:flex;
        justify-content:center;
        align-items:center;
    }
    .pricing-body {
      text-align: center;
    } */
     .foot-bottom{
      align-items: center;
      text-align:center;
     }
     .pricing-header,
    
.pricing-tier,
.pricing-name,
.pricing-price{
    text-align:center;
}
  /* .pricing-feature{
        display:flex;
        justify-content:center;
        align-items:center;
        text-align:center;
        gap:8px;
    } */
.pricing-price{
  justify-content: center;
}
     @media (max-width:768px){
    .invest-card{
        /* margin-left: 16px; */
        margin-right: 80px;
    }
    .inv-card{
        margin-right: 0px;
    }
}

html, body{
    overflow-x:hidden;
}
@media (max-width:768px){

    .pricing-features{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .pricing-feature{
        display:grid;
        grid-template-columns:20px auto;
        gap:10px;
        align-items:center;
        text-align:left;
        width:max-content;
    }

    .pf-check{
        width:18px;
        height:18px;
        flex-shrink:0;
    }
    .feature-content{
        width:80%;
    }
    .feature-content-wide{
        width:100%;
    }
    .invest-container{
       padding:0 7px;
    }
}
@media (max-width:768px){
    .pricing-feature{
        display:flex;
        align-items:center;
        gap:10px;
        width:180px; /* adjust as needed */
        margin:0 auto;
    }
}
@media (max-width:768px){

    .cta-inner{
        display:grid;
        grid-template-columns:1fr;
        gap:32px;
    }

    .cta-content{
        order:1;
    }

    .contact-form{
        order:2;
    }

    .form-row{
        grid-template-columns:1fr;
    }
}
}
/* Mobile only */
@media (max-width:768px){

    .hero-inner{
        display:block;
        width:100%;
        height:270px;
        margin:24px 0;

        background:url("images/hero-mobile.png") center/cover no-repeat;
         background-position:center 10px; 
        border-radius:20px;
    }

    .hero-img-main{
        display:none;
    }
@media (max-width:768px){

    .navbar-toggle,
    .menu-toggle,
    .hamburger,
    .nav-toggle{
        display:none !important;
    }

    .navbar-cta{
        display:block !important;
    }
}
}
@media (max-width:768px){
    .foot-bottom{
              font-size: 14px;
        text-align:center;
        justify-content:center;
    }
}

/* ===== #invest section-specific color overrides ===== */
#invest .eyebrow-dark {
  color: var(--primary-yellow);
  background: rgba(255, 202, 5, 0.15);
}

#invest .section-title span {
  color: var(--primary-yellow) !important;
}

#invest .btn-primary {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--secondary-dark); /* dark text for contrast on bright yellow */
}
#invest .btn-primary:hover {
  background: #e0b600;
  border-color: #e0b600;
}
