    :root {
      --navy: #0D2137;
      --blue: #1A5276;
      --blue-mid: #2980B9;
      --blue-light: #AED6F1;
      --green: #27AE60;
      --green-pale: #E8F8F5;
      --orange: #C05C1F;
      --orange-pale: #FBF0E8;
      --cream: #F7FBFF;
      --sand: #EDF2F7;
      --white: #FFFFFF;
      --border: rgba(26, 82, 118, 0.15);
      --text: #0D2137;
      --text-mid: #2C3E50;
      --text-muted: #5D6D7E;
      --serif: 'DM Serif Display', Georgia, serif;
      --sans: 'DM Sans', system-ui, sans-serif;
      --max-w: 960px;
      --r: 10px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--text);
      font-size: 16px;
    }

    a {
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }

    button {
      font-family: var(--sans);
      cursor: pointer;
    }

    /* ===================== NAV ===================== */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(247, 251, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      height: 68px;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 90px;
      width: auto;
      object-fit: contain;
    }

    .logo-text {
      font-family: var(--serif);
      font-size: 17px;
      color: var(--navy);
      line-height: 1.15;
    }

    .logo-text small {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      color: var(--text-muted);
      display: block;
      letter-spacing: .5px;
    }

    .nav-links {
      display: flex;
      gap: 2px;
      align-items: center;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-mid);
      padding: 6px 12px;
      border-radius: 6px;
      transition: background .15s, color .15s;
    }

    .nav-links a:hover {
      background: var(--sand);
    }

    .nav-links a.active {
      color: var(--blue);
    }

    .nav-cta {
      background: #25D366;
      color: #fff;
      border: none;
      padding: 9px 18px;
      border-radius: var(--r);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .2px;
      transition: background .15s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-cta:hover {
      background: #1ebe5c;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--text);
    }

    /* ===================== PAGE SYSTEM ===================== */
    .page {
      display: none;
    }

    .page.active {
      display: block;
      animation: pgIn .3s ease;
    }

    @keyframes pgIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===================== SHARED ===================== */
    .wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 2rem;
    }

    .sec {
      padding: 5rem 2rem;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .sec-sm {
      padding: 3.5rem 2rem;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .sec-full {
      padding: 4rem 2rem;
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 600;
      color: var(--blue-mid);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
    }

    .sec-head {
      text-align: center;
      margin-bottom: 3rem;
    }

    .sec-head h2 {
      font-family: var(--serif);
      font-size: 34px;
      font-weight: 400;
      margin-bottom: .6rem;
    }

    .sec-head p {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: none;
      border-radius: var(--r);
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      padding: 12px 24px;
      transition: all .2s;
    }

    .btn-blue {
      background: var(--blue);
      color: #fff;
    }

    .btn-blue:hover {
      background: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(13, 33, 55, 0.25);
    }

    .btn-green {
      background: #25D366;
      color: #fff;
    }

    .btn-green:hover {
      background: #1ebe5c;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
    }

    .btn-orange:hover {
      background: #a64e18;
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .btn-outline {
      background: none;
      color: var(--blue);
      border: 1.5px solid var(--blue);
    }

    .btn-outline:hover {
      background: var(--blue);
      color: #fff;
    }

    .btn-wa {
      background: #25D366;
      color: #fff;
    }

    .btn-wa:hover {
      background: #1ebe5c;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }

    /* WhatsApp floating button */
    .wa-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 9998;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      border: none;
      font-size: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    }

    /* ===================== HERO SLIDER ===================== */
    .hero-slider {
      position: relative;
      overflow: hidden;
      min-height: 88vh;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      padding: 4rem 2rem;
      opacity: 0;
      transition: opacity 1s ease;
      pointer-events: none;
    }

    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
      position: relative;
    }

    .hero-slide:nth-child(1) {
      background: #002c4d;
      overflow: hidden;
    }
    .hero-slide:nth-child(1)::after {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(6,148,204,0.35) 0%, transparent 65%);
      top: -150px;
      right: -150px;
      animation: pulse1 7s ease-in-out infinite;
    }

    .hero-slide:nth-child(2) {
      background: #005f73;
      overflow: hidden;
    }
    .hero-slide:nth-child(2)::after {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,180,210,0.4) 0%, transparent 65%);
      bottom: -200px;
      left: -150px;
      animation: pulse2 7s ease-in-out infinite;
    }

    .hero-slide:nth-child(3) {
      background: #0694cc;
      overflow: hidden;
    }
    .hero-slide:nth-child(3)::after {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,44,77,0.4) 0%, transparent 65%);
      top: -100px;
      right: -50px;
      animation: pulse3 7s ease-in-out infinite;
    }

    @keyframes pulse1 {
      0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
      50%       { transform: scale(1.4) translate(-60px, 50px); opacity: 1; }
    }
    @keyframes pulse2 {
      0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
      50%       { transform: scale(1.4) translate(60px, -60px); opacity: 1; }
    }
    @keyframes pulse3 {
      0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
      50%       { transform: scale(1.5) translate(-40px, 70px); opacity: 1; }
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.08);
    }

    .hero-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
    }

    .hero-float {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-float span {
      position: absolute;
      font-size: 28px;
      opacity: 0.08;
      animation: floatBug linear infinite;
    }

    .hero-float span:nth-child(1) {
      left: 5%;
      top: 20%;
      animation-duration: 18s;
    }

    .hero-float span:nth-child(2) {
      left: 15%;
      top: 70%;
      animation-duration: 22s;
      animation-delay: -5s;
    }

    .hero-float span:nth-child(3) {
      left: 75%;
      top: 15%;
      animation-duration: 16s;
      animation-delay: -8s;
    }

    .hero-float span:nth-child(4) {
      left: 88%;
      top: 65%;
      animation-duration: 20s;
      animation-delay: -3s;
    }

    @keyframes floatBug {
      0% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-20px) rotate(-5deg);
      }

      100% {
        transform: translateY(0px) rotate(0deg);
      }
    }

    .hero-text {
      z-index: 1;
      color: #fff;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.25);
      font-size: 12px;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 1.75rem;
      animation: fadeSlideUp .7s ease .1s both;
    }

    .hero-text h1 {
      font-family: var(--serif);
      font-size: 52px;
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      animation: fadeSlideUp .7s ease .2s both;
    }

    .hero-text h1 em {
      font-style: italic;
      color: #A8D5B5;
    }

    .hero-text p {
      font-size: 16px;
      opacity: .85;
      line-height: 1.65;
      margin-bottom: 2rem;
      max-width: 440px;
      animation: fadeSlideUp .7s ease .3s both;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeSlideUp .7s ease .4s both;
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      flex-wrap: wrap;
      animation: fadeSlideUp .7s ease .5s both;
    }

    .hero-stat strong {
      font-family: var(--serif);
      font-size: 30px;
      display: block;
    }

    .hero-stat span {
      font-size: 11px;
      opacity: .65;
      letter-spacing: .3px;
    }

    .hero-visual {
      z-index: 1;
      animation: fadeSlideUp .7s ease .3s both;
    }

    .hero-illus {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .illus-card {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem 1rem;
      gap: 8px;
      transition: background .2s;
    }

    .illus-card:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .illus-card.tall {
      grid-row: span 2;
      min-height: 260px;
    }

    .illus-card span {
      font-size: 36px;
    }

    .illus-card p {
      font-size: 12px;
      font-weight: 500;
      opacity: .75;
      text-align: center;
      color: #fff;
    }

    /* Slider dots */
    .slider-dots {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
    }

    .slider-dot.active {
      background: #fff;
      transform: scale(1.2);
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===================== TRUST BAR ===================== */
    .trust-bar {
      background: var(--sand);
      border-bottom: 1px solid var(--border);
      padding: .9rem 2rem;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-mid);
    }

    .trust-item i {
      color: var(--blue);
      font-size: 16px;
    }

    /* ===================== SERVICES ===================== */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 14px;
    }

    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.25rem;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }

    .svc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(13, 33, 55, 0.1);
      border-color: var(--blue-mid);
    }

    .svc-icon {
      width: 46px;
      height: 'auto';
      background: #EAF2FB;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .75rem;
    }

    .svc-icon i {
      color: var(--blue);
      font-size: 22px;
    }

    .svc-card h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .svc-card p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .svc-tag {
      display: inline-block;
      font-size: 10px;
      background: var(--orange-pale);
      color: var(--orange);
      padding: 2px 8px;
      border-radius: 4px;
      margin-top: 6px;
      font-weight: 600;
    }

    .svc-arrow {
      font-size: 11px;
      color: var(--blue-mid);
      font-weight: 600;
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .skel {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
      border-radius: 6px;
    }

    @keyframes shimmer {
      to {
        background-position: -200% 0;
      }
    }

    /* ===================== SERVICE DETAIL MODAL ===================== */
    .svc-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(13, 33, 55, 0.6);
      backdrop-filter: blur(4px);
      overflow-y: auto;
      padding: 2rem;
    }

    .svc-modal.open {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    .svc-modal-inner {
      background: var(--white);
      border-radius: 18px;
      max-width: 900px;
      width: 100%;
      margin: auto;
      overflow: hidden;
      animation: pgIn .3s ease;
    }

    .svc-modal-header {
      position: relative;
      height: 240px;
      background: linear-gradient(155deg, var(--navy), var(--blue));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      color: #fff;
    }

    .svc-modal-header .modal-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: absolute;
      inset: 0;
      opacity: 0.5;
    }

    .svc-modal-header .modal-icon {
      font-size: 64px;
      position: relative;
      z-index: 1;
    }

    .svc-modal-header h2 {
      font-family: var(--serif);
      font-size: 28px;
      position: relative;
      z-index: 1;
    }

    .svc-modal-body {
      padding: 2rem;
    }

    .svc-modal-body p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .svc-modal-body h3 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: .75rem;
      color: var(--navy);
    }

    .adv-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 1.5rem;
    }

    .adv-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: var(--text-mid);
    }

    .adv-list li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .svc-modal-imgs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 1.5rem;
    }

    .svc-modal-imgs img {
      width: 100%;
      height: auto;
      max-height: 320px;
      object-fit: contain;
      border-radius: var(--r);
      display: block;
      background: var(--sand);
    }

    /* ===================== WHY SECTION ===================== */
    .why-wrap {
      background: var(--sand);
      padding: 4.5rem 2rem;
    }

    .why-inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.25rem;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .why-num {
      width: 34px;
      height: 34px;
      background: var(--blue);
      color: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      flex-shrink: 0;
    }

    .why-card h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .why-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ===================== HOW IT WORKS ===================== */
    .how-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      position: relative;
    }

    .how-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
      z-index: 0;
    }

    .how-card {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 1.25rem .75rem;
    }

    .how-num {
      width: 56px;
      height: 56px;
      background: var(--blue);
      color: #fff;
      border-radius: 50%;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 22px;
      border: 4px solid var(--cream);
    }

    .how-card h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .how-card p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ===================== TESTIMONIALS + REVIEW FORM ===================== */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 14px;
      margin-bottom: 2.5rem;
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.25rem;
    }

    .stars {
      color: #F4D03F;
      font-size: 16px;
      margin-bottom: .75rem;
      letter-spacing: 2px;
    }

    .testi-card blockquote {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.65;
      margin-bottom: 1rem;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #EAF2FB;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--blue);
      flex-shrink: 0;
    }

    .testi-author strong {
      font-size: 13px;
      font-weight: 600;
      display: block;
    }

    .testi-author span {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Review submission form */
    .review-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.75rem;
      max-width: 560px;
      margin: 0 auto;
    }

    .review-box h3 {
      font-family: var(--serif);
      font-size: 22px;
      margin-bottom: 1.25rem;
      text-align: center;
    }

    .star-picker {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .star-picker button {
      background: none;
      border: none;
      font-size: 30px;
      cursor: pointer;
      color: #ddd;
      transition: color .15s, transform .15s;
    }

    .star-picker button.lit {
      color: #F4D03F;
    }

    .star-picker button:hover {
      transform: scale(1.2);
    }

    /* ===================== BLOG ===================== */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .blog-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }

    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(13, 33, 55, 0.1);
    }

    .blog-thumb {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 56px;
    }

    .bg1 {
      background: #EAF2FB;
    }

    .bg2 {
      background: var(--orange-pale);
    }

    .bg3 {
      background: var(--sand);
    }

    .bg4 {
      background: #E8F8F5;
    }

    .blog-body {
      padding: 1.25rem;
    }

    .blog-tag {
      font-size: 10px;
      background: #EAF2FB;
      color: var(--blue);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: .3px;
    }

    .blog-card h3 {
      font-size: 15px;
      font-weight: 600;
      margin: 8px 0 6px;
      line-height: 1.4;
      color: var(--text);
    }

    .blog-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .blog-meta {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .blog-expand {
      display: none;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }

    .blog-expand.open {
      display: block;
    }

    .blog-expand p {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: .75rem;
    }

    .blog-expand ul {
      padding-left: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .blog-expand ul li {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    .read-more-btn {
      background: none;
      border: none;
      color: var(--blue);
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      padding: 0;
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ===================== FAQ ===================== */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }

    .faq-q {
      padding: 1rem 1.25rem;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-q i {
      color: var(--text-muted);
      font-size: 16px;
      transition: transform .25s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q i {
      transform: rotate(180deg);
    }

    .faq-a {
      padding: 0 1.25rem;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding-bottom: 1rem;
    }

    /* ===================== ABOUT ===================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .about-vis {
      background: var(--blue);
      border-radius: 18px;
      padding: 2.5rem 2rem;
      color: #fff;
      text-align: center;
    }

    .about-vis img {
      width: 100%;
      max-width: 200px;
      height: auto;
      margin-bottom: 1rem;
      filter: brightness(2);
    }

    .about-vis i {
      font-size: 60px;
      opacity: .85;
      display: block;
      margin-bottom: 1rem;
    }

    .about-vis h3 {
      font-family: var(--serif);
      font-size: 22px;
      margin-bottom: .5rem;
    }

    .about-vis p {
      font-size: 13px;
      opacity: .8;
      line-height: 1.65;
    }

    .about-body h2 {
      font-family: var(--serif);
      font-size: 30px;
      margin-bottom: 1rem;
    }

    .about-body p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .about-stats {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .about-stat strong {
      font-family: var(--serif);
      font-size: 28px;
      color: var(--blue);
      display: block;
    }

    .about-stat span {
      font-size: 12px;
      color: var(--text-muted);
    }

    .about-values {
      margin-top: 2.5rem;
    }

    .about-values h3 {
      font-family: var(--serif);
      font-size: 22px;
      margin-bottom: 1rem;
    }

    .value-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .value-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: .75rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
    }

    .value-icon {
      width: 36px;
      height: 36px;
      background: #EAF2FB;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .value-icon i {
      color: var(--blue);
      font-size: 18px;
    }

    .value-item h4 {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .value-item p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ===================== CONTACT ===================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 2.5rem;
      align-items: start;
    }

    .c-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .c-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1rem;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .c-item i {
      color: var(--blue);
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .c-item strong {
      font-size: 13px;
      font-weight: 600;
      display: block;
      margin-bottom: 2px;
    }

    .c-item a,
    .c-item span {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      display: block;
    }

    .c-item a:hover {
      color: var(--blue);
      text-decoration: underline;
    }

    .c-hours {
      background: #EAF2FB;
      border: 1px solid rgba(26, 82, 118, 0.2);
      border-radius: var(--r);
      padding: 1rem;
    }

    .c-hours .eyebrow {
      margin-bottom: 4px;
    }

    .c-hours p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .map-embed {
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      margin-top: 12px;
    }

    .map-embed iframe {
      display: block;
      width: 100%;
      height: 220px;
      border: none;
    }

    /* Forms */
    .form-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.75rem;
    }

    .form-wrap h3 {
      font-family: var(--serif);
      font-size: 22px;
      margin-bottom: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .fg {
      margin-bottom: 12px;
    }

    .fg label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-mid);
      display: block;
      margin-bottom: 4px;
      letter-spacing: .2px;
    }

    .fg input,
    .fg select,
    .fg textarea {
      width: 100%;
      padding: 10px 13px;
      font-size: 13px;
      font-family: var(--sans);
      border: 1.5px solid var(--border);
      border-radius: var(--r);
      background: var(--cream);
      color: var(--text);
      transition: border-color .15s;
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      outline: none;
      border-color: var(--blue);
      background: var(--white);
    }

    .fg textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
      margin-bottom: 1.25rem;
    }

    .form-tab {
      flex: 1;
      text-align: center;
      padding: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: all .15s;
    }

    .form-tab.active {
      color: var(--blue);
      border-color: var(--blue);
    }

    .form-panel {
      display: none;
    }

    .form-panel.active {
      display: block;
    }

    .submit-btn {
      width: 100%;
      background: var(--blue);
      color: #fff;
      border: none;
      padding: 13px;
      border-radius: var(--r);
      font-size: 14px;
      font-weight: 600;
      margin-top: 4px;
      transition: background .15s;
    }

    .submit-btn:hover {
      background: var(--navy);
    }

    .submit-btn:disabled {
      opacity: .6;
      cursor: not-allowed;
    }

    .form-msg {
      display: none;
      padding: .75rem 1rem;
      border-radius: var(--r);
      font-size: 13px;
      font-weight: 500;
      margin-top: 10px;
    }

    .form-msg.success {
      background: var(--green-pale);
      color: #1A7A40;
      border: 1px solid rgba(39, 174, 96, 0.2);
      display: block;
    }

    .form-msg.error {
      background: #fef2f2;
      color: #dc2626;
      border: 1px solid rgba(220, 38, 38, 0.2);
      display: block;
    }

    /* ===================== CTA BANNER ===================== */
    .cta-strip {
      background: var(--blue);
      color: #fff;
      padding: 3.5rem 2rem;
      text-align: center;
    }

    .cta-strip h2 {
      font-family: var(--serif);
      font-size: 30px;
      margin-bottom: .75rem;
    }

    .cta-strip p {
      font-size: 15px;
      opacity: .9;
      margin-bottom: 1.75rem;
    }

    .cta-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: #fff;
      color: var(--blue);
    }

    .btn-white:hover {
      background: #f0f7ff;
    }

    /* ===================== PAGE HEADER ===================== */
    .ph {
      padding: 3rem 2rem;
      text-align: center;
    }

    .ph h1 {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 400;
      margin-bottom: .5rem;
    }

    .ph p {
      color: var(--text-muted);
      font-size: 15px;
    }

    .ph.sand {
      background: var(--sand);
    }

    .ph.blue {
      background: var(--blue);
      color: #fff;
    }

    .ph.blue .eyebrow {
      color: rgba(255, 255, 255, .65);
    }

    /* ===================== FOOTER ===================== */
    footer {
      background: var(--navy);
      color: rgba(255, 255, 255, .65);
      padding: 3rem 2rem 1.5rem;
    }

    .foot-inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .foot-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: .75rem;
    }

    .foot-logo img {
      height: 65px;
      width: auto;
    }

    .foot-logo span {
      font-family: var(--serif);
      font-size: 15px;
      color: #fff;
    }

    .foot-col p {
      font-size: 13px;
      line-height: 1.7;
    }

    .foot-col h4 {
      font-size: 12px;
      font-weight: 600;
      color: #fff;
      margin-bottom: .75rem;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .foot-col a {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      display: block;
      line-height: 1.9;
      cursor: pointer;
      transition: color .15s;
    }

    .foot-col a:hover {
      color: #fff;
    }

    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: transform .2s, opacity .2s;
      opacity: 1;
      flex-shrink: 0;
    }

    .social-icon:hover {
      transform: translateY(-2px);
      opacity: 1;
    }

    .si-insta {
      background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    }

    .si-wa {
      background: #25D366;
    }

    .si-fb {
      background: #1877F2;
    }

    .si-yt {
      background: #FF0000;
    }

    .foot-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ===================== SCROLL REVEAL ===================== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 {
      transition-delay: .1s;
    }

    .reveal-d2 {
      transition-delay: .2s;
    }

    .reveal-d3 {
      transition-delay: .3s;
    }

    /* ===================== TOAST ===================== */
    .toast {
      position: fixed;
      bottom: 6rem;
      right: 2rem;
      background: var(--navy);
      color: #fff;
      padding: 14px 20px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      z-index: 9999;
      transform: translateY(80px);
      opacity: 0;
      transition: all .3s ease;
      max-width: 300px;
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    /* ===================== MOBILE MENU ===================== */
    .mob-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 300;
    }

    .mob-overlay.open {
      display: block;
    }

    .mob-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: 270px;
      height: 100%;
      background: var(--white);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 4px;
      animation: slideIn .22s ease;
      overflow-y: auto;
    }

    @keyframes slideIn {
      from {
        transform: translateX(100%);
      }

      to {
        transform: translateX(0);
      }
    }

    .mob-close {
      align-self: flex-end;
      background: none;
      border: none;
      font-size: 22px;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .mob-panel a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-mid);
      padding: 10px 12px;
      border-radius: var(--r);
    }

    .mob-panel a:hover {
      background: var(--sand);
    }

    .mob-panel a.active {
      color: var(--blue);
    }

    .mob-cta {
      margin-top: 1rem;
      width: 100%;
      padding: 12px;
      text-align: center;
      background: #25D366;
      color: #fff;
      border: none;
      border-radius: var(--r);
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 768px) {

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .hero-visual {
        display: none;
      }

      .hero-text h1 {
        font-size: 34px;
      }

      .how-grid {
        grid-template-columns: 1fr 1fr;
      }

      .how-grid::before {
        display: none;
      }

      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 28px;
      }

      .foot-grid {
        grid-template-columns: 1fr;
      }

      .how-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }
  </style>
