    /* ═══ RESET & VARIABLES ═══ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue:       #1a56db;
      --blue-dark:  #1242a8;
      --blue-light: #eff4ff;
      --blue-mid:   #dbeafe;
      --orange:     #f97316;
      --orange-dk:  #ea6c0a;
      --orange-lt:  #fff7ed;
      --dark:       #111827;
      --text:       #374151;
      --muted:      #6b7280;
      --light:      #f9fafb;
      --white:      #ffffff;
      --border:     #e5e7eb;
      --shadow-sm:  0 2px 8px rgba(17,24,39,0.07);
      --shadow:     0 4px 24px rgba(17,24,39,0.09);
      --shadow-lg:  0 16px 48px rgba(17,24,39,0.14);
      --h: 'Poppins', sans-serif;
      --b: 'Nunito Sans', sans-serif;
      --r: 12px;
      --page: 1200px;
    }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--b); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ═══ UTILITY ═══ */
    .container { width: 100%; max-width: var(--page); margin: 0 auto; padding: 0 1.25rem; }
    @media (min-width: 640px) { .container { padding: 0 2rem; } }
    @media (min-width: 1024px) { .container { padding: 0 3rem; } }

    .btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-family: var(--h); font-weight: 600; font-size: 0.875rem;
      padding: 0.7rem 1.4rem; border-radius: 8px;
      border: 2px solid transparent;
      cursor: pointer; transition: all 0.2s; white-space: nowrap;
    }
    .btn-primary   { background: var(--blue);   color: #fff; border-color: var(--blue);   }
    .btn-primary:hover  { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,86,219,.35); }
    .btn-orange    { background: var(--orange);  color: #fff; border-color: var(--orange); }
    .btn-orange:hover   { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,115,22,.35); }
    .btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
    .btn-outline:hover  { background: var(--blue); color: #fff; }
    .btn-white     { background: #fff; color: var(--blue); border-color: #fff; }
    .btn-white:hover    { background: var(--blue-light); }
    .btn-ghost     { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
    .btn-ghost:hover    { background: rgba(255,255,255,.22); }
    .btn-lg { padding: 0.875rem 1.75rem; font-size: 0.95rem; }
    .btn-sm { padding: 0.5rem 1rem; font-size: 0.78rem; }

    .section-label {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: var(--h); font-size: 0.68rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.13em; color: var(--orange);
      margin-bottom: 0.65rem;
    }
    .section-label::before { content:''; width:18px; height:2px; background:var(--orange); border-radius:2px; flex-shrink:0; }

    h2.sh {
      font-family: var(--h);
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 800; color: var(--dark);
      letter-spacing: -0.02em; line-height: 1.2;
    }
    h2.sh span { color: var(--blue); }
    .section-sub { color: var(--muted); font-size: 0.97rem; line-height: 1.75; margin-top: 0.6rem; max-width: 54ch; }

    section { padding: 4.5rem 0; }
    .bg-light { background: var(--light); }
    .bg-blue-lt { background: var(--blue-light); }

    /* ═══ TOPBAR ═══ */
    .topbar {
      background: var(--dark); color: #9ca3af;
      font-size: 0.72rem; padding: 0.45rem 0;
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.3rem; }
    .topbar a { color: #9ca3af; transition: color .2s; }
    .topbar a:hover { color: #fff; }
    .tb-group { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }

    /* ═══ HEADER ═══ */
    header {
      position: sticky; top: 0; z-index: 500;
      background: #fff; border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.85rem 0; gap: 1rem;
    }
    .logo { display: flex; align-items: center; flex-shrink: 0; line-height: 1; }
    .logo svg { height: 38px; width: auto; display: block; }

    /* Desktop nav */
    .desktop-nav { display: none; }
    @media (min-width: 900px) {
      .desktop-nav { display: flex; gap: 0.15rem; align-items: center; }
      .desktop-nav a { font-family: var(--h); font-size: 0.82rem; font-weight: 500; color: var(--text); padding: 0.45rem 0.85rem; border-radius: 6px; transition: background .2s, color .2s; white-space: nowrap; }
      .desktop-nav a:hover { background: var(--blue-light); color: var(--blue); }
    }

    .header-actions { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; }
    .header-actions .btn { display: none; }
    @media (min-width: 640px) { .header-actions .btn { display: inline-flex; } }

    /* Hamburger */
    .hamburger { background: none; border: none; cursor: pointer; padding: 0.4rem; display: flex; flex-direction: column; gap: 5px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    @media (min-width: 900px) { .hamburger { display: none; } }

    /* Mobile Menu Drawer */
    .mobile-menu {
      position: fixed; inset: 0; z-index: 490;
      background: #fff;
      transform: translateX(100%);
      transition: transform .3s ease;
      padding: 5rem 1.5rem 2rem;
      display: flex; flex-direction: column; gap: 0;
      overflow-y: auto;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a { font-family: var(--h); font-size: 1.1rem; font-weight: 600; color: var(--dark); padding: 0.9rem 0; border-bottom: 1px solid var(--border); display: block; }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--blue); }
    .mobile-ctas { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
    .mobile-ctas .btn { justify-content: center; padding: 0.9rem; font-size: 0.95rem; }

    /* ═══ WHATSAPP FLOAT ═══ */
    .wa-float {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400;
      width: 56px; height: 56px; background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .3s;
    }
    .wa-float:hover { transform: scale(1.1); }
    .wa-float svg { width: 30px; height: 30px; fill: white; }
    @media (min-width: 640px) { .wa-float { bottom: 2rem; right: 2rem; width: 60px; height: 60px; } }

    /* ═══ HERO ═══ */
    .hero {
      position: relative; min-height: 90vh;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(8,15,50,.92) 0%, rgba(8,15,50,.75) 55%, rgba(8,15,50,.45) 100%);
    }
    .hero-content { position: relative; z-index: 1; padding: 5.5rem 0 4rem; width: 100%; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.4);
      color: #fed7aa; font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.2rem;
    }
    .hero-badge::before { content:'●'; font-size:.45rem; color:var(--orange); }
    .hero h1 {
      font-family: var(--h);
      font-size: clamp(1.85rem, 5.5vw, 3.8rem);
      font-weight: 800; color: #fff; line-height: 1.17;
      letter-spacing: -0.025em; margin-bottom: 1.1rem;
      max-width: 16ch;
    }
    .hero h1 span { color: #fbbf24; }
    .hero p { font-size: clamp(0.9rem, 2vw, 1.05rem); color: #d1d5db; max-width: 48ch; margin-bottom: 1.8rem; line-height: 1.8; }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 0.7rem; }
    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
      margin-top: 3rem; padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.15);
    }
    .hstat-n { font-family: var(--h); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: #fbbf24; line-height: 1; }
    .hstat-l { font-size: 0.75rem; color: #9ca3af; margin-top: 0.15rem; }

    /* ═══ TRUST STRIP ═══ */
    .trust-strip { background: var(--light); border-bottom: 1px solid var(--border); padding: 1.2rem 0; }
    .trust-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
    .trust-label { font-family: var(--h); font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
    .trust-logos { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }
    .trust-logo { font-family: var(--h); font-size: 0.8rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; }

    /* ═══ ABOUT ═══ */
    .about-grid {
      display: grid; gap: 2.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) {
      .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    }
    .about-img { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
    .about-img img { width: 100%; height: 360px; object-fit: cover; }
    @media (min-width: 640px) { .about-img img { height: 420px; } }
    @media (min-width: 900px) { .about-img img { height: 480px; } }
    .about-badge {
      position: absolute; bottom: 1rem; left: 1rem;
      background: #fff; border-radius: 10px; padding: 0.8rem 1rem;
      box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.7rem;
    }
    .ab-icon { font-size: 1.8rem; }
    .ab-n { font-family: var(--h); font-size: 1.25rem; font-weight: 800; color: var(--blue); line-height: 1; }
    .ab-l { font-size: 0.68rem; color: var(--muted); }
    .about-checks { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
    .ac { display: flex; gap: 0.85rem; align-items: flex-start; }
    .ac-icon { width: 26px; height: 26px; flex-shrink: 0; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 0.7rem; font-weight: 700; margin-top: 0.1rem; }
    .ac h4 { font-family: var(--h); font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.15rem; }
    .ac p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
    .about-btns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }

    /* ═══ FOUNDER ═══ */
    .founder-section { background: var(--dark); color: #fff; }
    .founder-grid {
      display: grid; gap: 2.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) {
      .founder-grid { grid-template-columns: 380px 1fr; gap: 5rem; align-items: center; }
    }
    .founder-img-wrap { position: relative; }
    .founder-img {
      border-radius: var(--r); overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
      border: 3px solid rgba(249,115,22,.3);
    }
    .founder-img img { width: 100%; height: 420px; object-fit: cover; object-position: top; }
    @media (min-width: 900px) { .founder-img img { height: 520px; } }
    .founder-cred-bar {
      position: absolute; bottom: -1px; left: 0; right: 0;
      background: linear-gradient(to top, rgba(8,15,50,.95) 60%, transparent);
      padding: 2rem 1.5rem 1.3rem;
      display: flex; flex-wrap: wrap; gap: 0.6rem;
    }
    .cred-badge {
      background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.4);
      color: #fed7aa; font-family: var(--h); font-size: 0.68rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      padding: 0.28rem 0.7rem; border-radius: 100px;
    }
    .founder-content { }
    .founder-eyebrow {
      font-family: var(--h); font-size: 0.68rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .13em; color: var(--orange);
      display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.65rem;
    }
    .founder-eyebrow::before { content:''; width:18px; height:2px; background:var(--orange); }
    .founder-content h2 {
      font-family: var(--h);
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 800; color: #fff;
      letter-spacing: -0.02em; line-height: 1.2;
      margin-bottom: 0.3rem;
    }
    .founder-title { font-family: var(--h); font-size: 0.9rem; font-weight: 500; color: #9ca3af; margin-bottom: 1.5rem; }
    .founder-bio { color: #d1d5db; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
    .edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
    @media (max-width: 480px) { .edu-grid { grid-template-columns: 1fr; } }
    .edu-card {
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 1rem 1.1rem;
      transition: border-color .2s;
    }
    .edu-card:hover { border-color: rgba(249,115,22,.4); }
    .edu-uni { font-family: var(--h); font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
    .edu-deg { font-size: 0.78rem; color: #9ca3af; }
    .founder-skills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
    .skill-tag { background: rgba(26,86,219,.2); border: 1px solid rgba(26,86,219,.4); color: #93c5fd; font-family: var(--h); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 0.25rem 0.65rem; border-radius: 100px; }
    .founder-quote {
      background: rgba(249,115,22,.08); border-left: 3px solid var(--orange);
      padding: 1rem 1.2rem; border-radius: 0 8px 8px 0;
      font-style: italic; color: #d1d5db; font-size: 0.9rem; line-height: 1.75;
    }

    /* ═══ SERVICES ═══ */
    .services-grid {
      display: grid; gap: 1.5rem;
      grid-template-columns: 1fr;
      margin-top: 2.5rem;
    }
    @media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
    .svc-card {
      background: #fff; border: 1px solid var(--border); border-radius: var(--r);
      overflow: hidden; box-shadow: var(--shadow-sm);
      transition: transform .3s, box-shadow .3s;
    }
    .svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .svc-img { height: 200px; overflow: hidden; }
    .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .svc-card:hover .svc-img img { transform: scale(1.05); }
    .svc-body { padding: 1.5rem; }
    .svc-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 0.9rem; }
    .svc-body h3 { font-family: var(--h); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
    .svc-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.9rem; }
    .svc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
    .svc-tag { font-family: var(--h); font-size: 0.65rem; font-weight: 600; background: var(--blue-light); color: var(--blue); padding: 0.18rem 0.55rem; border-radius: 100px; }

    /* ═══ STATS BAND ═══ */
    .stats-band { background: var(--blue); padding: 3.5rem 0; }
    .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: center; }
    @media (min-width: 768px) { .stats-inner { grid-template-columns: repeat(4,1fr); } }
    .stat-n { font-family: var(--h); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; line-height: 1; }
    .stat-l { font-size: 0.78rem; color: #93c5fd; margin-top: 0.35rem; }

    /* ═══ PRICING ═══ */
    .pricing-header { text-align: center; }
    .pricing-tabs {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 0.3rem;
      background: #fff; border: 1px solid var(--border); border-radius: 100px;
      padding: 0.3rem; width: fit-content; margin: 1.8rem auto 2.5rem;
      box-shadow: var(--shadow-sm);
    }
    .ptab {
      padding: 0.55rem 1.1rem; border-radius: 100px;
      font-family: var(--h); font-size: 0.78rem; font-weight: 600;
      color: var(--muted); cursor: pointer; border: none; background: none;
      transition: all .25s; white-space: nowrap;
    }
    .ptab.active { background: var(--blue); color: #fff; box-shadow: 0 2px 10px rgba(26,86,219,.3); }
    .pricing-panel { display: none; }
    .pricing-panel.active { display: block; }
    .pricing-grid {
      display: grid; gap: 1.25rem;
      grid-template-columns: 1fr;
      max-width: 1050px; margin: 0 auto;
    }
    @media (min-width: 640px)  { .pricing-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 900px)  { .pricing-grid { grid-template-columns: repeat(3,1fr); } }
    .price-card {
      background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
      padding: 2rem; position: relative;
      transition: transform .3s, box-shadow .3s;
    }
    .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .price-card.pop { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.1), var(--shadow); }
    .pop-badge {
      position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
      background: var(--orange); color: #fff;
      font-family: var(--h); font-size: 0.65rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .07em;
      padding: 0.28rem 0.85rem; border-radius: 100px; white-space: nowrap;
    }
    .plan-tier { font-family: var(--h); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 0.7rem; }
    .plan-price { font-family: var(--h); font-size: clamp(1.8rem, 4vw, 2.3rem); font-weight: 800; color: var(--dark); line-height: 1; }
    .plan-price sub { font-size: 0.95rem; vertical-align: super; margin-right: 0.05rem; }
    .plan-was { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; margin: 0.25rem 0 0.8rem; }
    .plan-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
    .plan-features { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
    .plan-features li { font-size: 0.82rem; color: var(--text); display: flex; align-items: flex-start; gap: 0.55rem; }
    .plan-features li::before { content:'✓'; color: var(--blue); font-weight: 700; font-size: 0.72rem; flex-shrink: 0; margin-top: 0.15rem; }
    .pcta { display: block; text-align: center; padding: 0.8rem; border-radius: 8px; font-family: var(--h); font-weight: 700; font-size: 0.85rem; transition: all .2s; }
    .pcta-fill { background: var(--blue); color: #fff; }
    .pcta-fill:hover { background: var(--blue-dark); }
    .pcta-out { border: 1.5px solid var(--border); color: var(--dark); }
    .pcta-out:hover { border-color: var(--blue); color: var(--blue); }

    /* ═══ INDUSTRIES ═══ */
    .ind-grid {
      display: grid; gap: 1rem;
      grid-template-columns: 1fr 1fr;
      margin-top: 2.5rem;
    }
    @media (min-width: 640px)  { .ind-grid { grid-template-columns: repeat(3,1fr); } }
    @media (min-width: 1024px) { .ind-grid { grid-template-columns: repeat(4,1fr); } }
    .ind-card {
      background: #fff; border: 1px solid var(--border); border-radius: var(--r);
      padding: 1.4rem 1.2rem; text-align: center;
      transition: all .3s; cursor: default;
    }
    .ind-card:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
    .ind-card:hover h4 { color: var(--blue); }
    .ind-emoji { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
    .ind-card h4 { font-family: var(--h); font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
    .ind-card p { font-size: 0.74rem; color: var(--muted); line-height: 1.45; }

    /* ═══ CASE STUDIES ═══ */
    .cases-grid {
      display: grid; gap: 1.5rem;
      grid-template-columns: 1fr;
      margin-top: 2.5rem;
    }
    @media (min-width: 768px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3,1fr); } }
    .case-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
    .case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .case-img { height: 170px; overflow: hidden; }
    .case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .case-card:hover .case-img img { transform: scale(1.07); }
    .case-body { padding: 1.3rem; }
    .case-badge { display: inline-block; font-family: var(--h); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--orange); background: var(--orange-lt); border: 1px solid #fed7aa; padding: 0.22rem 0.55rem; border-radius: 100px; margin-bottom: 0.65rem; }
    .case-body h3 { font-family: var(--h); font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
    .case-body p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.9rem; }
    .case-metrics { display: flex; gap: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
    .cm-n { font-family: var(--h); font-size: 1.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
    .cm-l { font-size: 0.68rem; color: var(--muted); }

    /* ═══ TESTIMONIALS ═══ */
    .testi-grid {
      display: grid; gap: 1.25rem;
      grid-template-columns: 1fr;
      margin-top: 2.5rem;
    }
    @media (min-width: 768px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
    .testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .3s; }
    .testi-card:hover { transform: translateY(-3px); }
    .stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 0.9rem; letter-spacing: .1em; }
    .testi-card blockquote { font-size: 0.87rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 1.3rem; }
    .testi-author { display: flex; align-items: center; gap: 0.8rem; }
    .testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-mid); flex-shrink: 0; }
    .ta-name { font-family: var(--h); font-size: 0.85rem; font-weight: 700; color: var(--dark); }
    .ta-role { font-size: 0.72rem; color: var(--muted); line-height: 1.3; }

    /* ═══ WHY CHOOSE US ═══ */
    .why-grid {
      display: grid; gap: 2.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } }
    .why-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
    .why-img img { width: 100%; height: 340px; object-fit: cover; }
    @media (min-width: 640px) { .why-img img { height: 420px; } }
    @media (min-width: 900px) { .why-img img { height: 500px; } }
    .why-points { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
    .wp { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem; border-radius: 10px; transition: background .2s; }
    .wp:hover { background: var(--blue-light); }
    .wp-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
    .wp:hover .wp-icon { background: var(--blue); }
    .wp h4 { font-family: var(--h); font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
    .wp p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

    /* ═══ PROCESS ═══ */
    .process-grid {
      display: grid; gap: 2rem;
      grid-template-columns: 1fr 1fr;
      margin-top: 3rem; position: relative;
    }
    @media (min-width: 900px) { .process-grid { grid-template-columns: repeat(5,1fr); } }
    .ps { text-align: center; padding: 0 0.5rem; }
    .ps-dot { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem; font-family: var(--h); font-weight: 800; font-size: 0.95rem; color: var(--blue); }
    .ps h4 { font-family: var(--h); font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
    .ps p { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

    /* ═══ CTA BANNER ═══ */
    .cta-banner {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #3b82f6 100%);
      padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
    }
    .cta-banner::before { content:''; position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=60') center/cover; opacity:.06; }
    .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-inner h2 { font-family: var(--h); font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 0.8rem; }
    .cta-inner p { color: #93c5fd; font-size: 1rem; margin-bottom: 1.8rem; }
    .cta-btns { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

    /* ═══ FAQ ═══ */
    .faq-list { max-width: 740px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.7rem; }
    .faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
    .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.3rem; cursor: pointer; font-family: var(--h); font-size: 0.88rem; font-weight: 600; color: var(--dark); gap: 0.8rem; transition: background .2s; }
    .faq-q:hover { background: var(--blue-light); }
    .faq-icon { width: 26px; height: 26px; flex-shrink: 0; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--blue); transition: transform .3s, background .2s; }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-size: 0.85rem; color: var(--muted); line-height: 1.75; padding: 0 1.3rem; }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 1.3rem 1.1rem; }

    /* ═══ ENQUIRY ═══ */
    .enquiry-grid {
      display: grid; gap: 2.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .enquiry-grid { grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; } }
    .enq-left p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin: 1rem 0 1.5rem; }
    .contact-items { display: flex; flex-direction: column; gap: 0.9rem; }
    .ci { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1.1rem; background: var(--light); border: 1px solid var(--border); border-radius: 10px; text-decoration: none; color: var(--dark); transition: all .2s; }
    .ci:hover { border-color: var(--blue); background: var(--blue-light); }
    .ci-icon { font-size: 1.3rem; flex-shrink: 0; }
    .ci-label { font-size: 0.67rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
    .ci-val { font-family: var(--h); font-weight: 600; font-size: 0.88rem; color: var(--dark); }
    .enq-form { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 2rem; box-shadow: var(--shadow-lg); }
    .enq-form h3 { font-family: var(--h); font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; }
    .enq-form .sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.3rem; }
    .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    @media (max-width: 480px) { .frow { grid-template-columns: 1fr; } }
    .fg { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.8rem; }
    .fg label { font-family: var(--h); font-size: 0.67rem; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: .06em; }
    .fg input, .fg select, .fg textarea { background: var(--light); border: 1.5px solid var(--border); color: var(--dark); padding: 0.75rem 0.9rem; border-radius: 8px; font-family: var(--b); font-size: 0.85rem; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
    .fg textarea { resize: vertical; min-height: 85px; }
    .enq-submit { width: 100%; background: var(--orange); color: #fff; border: none; padding: 0.95rem; border-radius: 10px; font-family: var(--h); font-size: 0.92rem; font-weight: 700; cursor: pointer; transition: all .2s; margin-top: 0.3rem; }
    .enq-submit:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(249,115,22,.35); }

    /* ═══ FOOTER ═══ */
    footer { background: var(--dark); color: #9ca3af; padding: 3.5rem 0 1.5rem; }
    .footer-top { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
    @media (min-width: 768px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
    .footer-logo { display: block; margin-bottom: 0.7rem; line-height: 1; }
    .footer-logo svg { height: 34px; width: auto; display: block; }
    .footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 28ch; }
    .footer-social { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
    .footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: 0.85rem; transition: background .2s, color .2s; }
    .footer-social a:hover { background: var(--blue); color: #fff; }
    .footer-col h4 { font-family: var(--h); font-size: 0.72rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
    .footer-col ul a { font-size: 0.82rem; color: #9ca3af; transition: color .2s; }
    .footer-col ul a:hover { color: #fff; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; }
    .footer-bottom a { color: #9ca3af; }
    .footer-bottom a:hover { color: #fff; }

    /* ═══ REVEAL ═══ */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.show { opacity: 1; transform: translateY(0); }

    /* ═══ TEXT HELPERS ═══ */
    .text-center { text-align: center; }
    .text-center .section-label { justify-content: center; }
    .text-center .section-sub { margin-left: auto; margin-right: auto; }


/* ═══════════ MULTI-PAGE ADDITIONS ═══════════ */
.page-hero{background:linear-gradient(135deg,var(--blue-dark),var(--blue));color:#fff;padding:3.2rem 0 2.8rem;position:relative;}
.breadcrumb{font-size:.76rem;color:#bfdbfe;margin-bottom:.75rem;font-family:var(--h);font-weight:500;}
.breadcrumb a{color:#bfdbfe;}.breadcrumb a:hover{color:#fff;}.breadcrumb span{opacity:.55;margin:0 .4rem;}
.page-hero h1{font-family:var(--h);font-weight:800;font-size:clamp(1.7rem,4vw,2.7rem);line-height:1.15;letter-spacing:-.02em;max-width:22ch;color:#fff;}
.page-hero h1 span{color:#fdba74;}
.page-hero p{margin-top:.85rem;color:#dbeafe;max-width:62ch;font-size:1.02rem;line-height:1.7;}
.page-hero .hero-btns{margin-top:1.5rem;display:flex;gap:.7rem;flex-wrap:wrap;}

.prose{max-width:760px;margin:0 auto;}
.prose h2{font-family:var(--h);font-weight:700;color:var(--dark);font-size:1.5rem;margin:2.1rem 0 .8rem;letter-spacing:-.01em;}
.prose h3{font-family:var(--h);font-weight:700;color:var(--dark);font-size:1.15rem;margin:1.5rem 0 .55rem;}
.prose p{margin-bottom:1rem;color:var(--text);}
.prose ul,.prose ol{margin:0 0 1.1rem 1.3rem;}
.prose ul{list-style:disc;}.prose ol{list-style:decimal;}
.prose li{margin-bottom:.5rem;}
.prose blockquote{border-left:4px solid var(--orange);background:var(--orange-lt);padding:1rem 1.25rem;border-radius:0 8px 8px 0;margin:1.5rem 0;font-style:italic;color:var(--dark);}
.prose a{color:var(--blue);font-weight:600;text-decoration:underline;}
.prose strong{color:var(--dark);}

.feature-grid{display:grid;gap:1.2rem;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));margin-top:2rem;}
.feature-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:1.5rem;box-shadow:var(--shadow-sm);}
.feature-card .fc-icon{font-size:1.7rem;margin-bottom:.55rem;}
.feature-card h3{font-family:var(--h);font-weight:700;color:var(--dark);font-size:1.05rem;margin-bottom:.4rem;}
.feature-card p{font-size:.9rem;color:var(--muted);line-height:1.65;}

.blog-grid{display:grid;gap:1.6rem;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-top:2.2rem;}
.blog-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column;}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);}
.blog-card .bc-img{height:190px;overflow:hidden;}
.blog-card .bc-img img{width:100%;height:100%;object-fit:cover;}
.blog-card .bc-body{padding:1.4rem;display:flex;flex-direction:column;flex:1;}
.bc-cat{font-family:var(--h);font-size:.66rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--orange);margin-bottom:.5rem;}
.blog-card h2,.blog-card h3{font-family:var(--h);font-weight:700;color:var(--dark);font-size:1.1rem;line-height:1.35;margin-bottom:.5rem;}
.blog-card p{font-size:.88rem;color:var(--muted);margin-bottom:1rem;flex:1;line-height:1.6;}
.bc-meta{font-size:.74rem;color:var(--muted);display:flex;gap:.7rem;align-items:center;}
.bc-readmore{font-family:var(--h);font-weight:600;font-size:.82rem;color:var(--blue);margin-top:.9rem;}

.cta-box{background:var(--blue-light);border:1px solid var(--blue-mid);border-radius:var(--r);padding:1.9rem;text-align:center;margin:2.6rem auto 0;max-width:760px;}
.cta-box h3{font-family:var(--h);font-weight:700;color:var(--dark);font-size:1.3rem;margin-bottom:.5rem;}
.cta-box p{color:var(--text);margin-bottom:1.2rem;max-width:52ch;margin-left:auto;margin-right:auto;}
.cta-box .hero-btns{display:flex;gap:.7rem;flex-wrap:wrap;justify-content:center;}
.related{max-width:900px;margin:0 auto;}
.post-body{max-width:760px;margin:0 auto;}
.post-body img.post-feature{width:100%;border-radius:var(--r);margin-bottom:1.6rem;}
