  :root {
      --navy: #0B1F4B;
      --navy-mid: #122866;
      --navy-light: #1a3a8a;
      --gold: #C9A84C;
      --gold-light: #E8C87A;
      --gold-pale: #F7EDD0;
      --white: #FFFFFF;
      --off-white: #F8F7F4;
      --text-dark: #0D1B35;
      --text-mid: #3A4A6B;
      --text-light: #6B7A99;
      --border: rgba(201, 168, 76, 0.2);
      --shadow-soft: 0 8px 40px rgba(11, 31, 75, 0.10);
      --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.18);
      --radius: 16px;
      --radius-sm: 8px;
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
  }

  /* NAV */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(11, 31, 75, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.18);
      transition: all 0.3s ease;
  }

  nav.scrolled {
      box-shadow: 0 4px 32px rgba(11, 31, 75, 0.28);
  }

  .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
  }

  .nav-logo img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      /* margin-right: 12px; */
      background: linear-gradient(290deg, #f9f8f5, var(--gold-light));
  }

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

  .nav-logo-icon {
      width: 42px;
      height: 42px;
      background: linear-gradient(290deg, var(--gold), var(--gold-light));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .nav-logo-icon i {
      color: var(--navy);
      font-size: 20px;
  }

  .nav-logo-text {
      display: flex;
      flex-direction: column;
  }

  .nav-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
  }

  .nav-logo-tagline {
      font-size: 10px;
      color: var(--gold-light);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 2px;
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
  }

  .nav-links a {
      color: rgba(255, 255, 255, 0.80);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
  }

  .nav-links a:hover {
      color: var(--gold-light);
  }

  .nav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy) !important;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 600 !important;
      transition: transform 0.2s, box-shadow 0.2s !important;
  }

  .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
      color: var(--navy) !important;
  }

  .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
  }

  .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
      border-radius: 2px;
  }

  .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--navy);
      padding: 20px 24px;
      border-top: 1px solid var(--border);
  }

  .mobile-menu a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      font-size: 15px;
  }

  .mobile-menu a:last-child {
      border-bottom: none;
      color: var(--gold-light);
      font-weight: 600;
  }

  /* HERO */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0E2859 100%);
      position: relative;
      overflow: hidden;
      padding-top: 72px;
  }

  .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.15;
  }

  .hero-orb-1 {
      width: 500px;
      height: 500px;
      background: var(--gold);
      top: -150px;
      right: -100px;
  }

  .hero-orb-2 {
      width: 300px;
      height: 300px;
      background: #4A90D9;
      bottom: -50px;
      left: -80px;
  }

  .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.35);
      border-radius: 50px;
      padding: 8px 18px;
      margin-bottom: 24px;
  }

  .cmd-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.35);
      border-radius: 50px;
      padding: 8px 18px;
      margin-bottom: 24px;
  }

  .hero-badge,
  .cmd-badge span {
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
  }

  .hero-badge i,
  .cmd-badge i {
      color: var(--gold);
      font-size: 12px;
  }

  .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
  }

  .hero h1 .gold-word {
      color: var(--gold-light);
  }

  .hero p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 480px;
  }

  .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s, box-shadow 0.2s;
      border: none;
      cursor: pointer;
  }

  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
  }

  .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      transition: all 0.2s;
      cursor: pointer;
  }

  .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.7);
  }

  .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
  }

  .hero-stat-item {
      text-align: center;
  }

  .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--gold-light);
  }

  .hero-stat-label {
      color: rgba(255, 255, 255, 0.55);
      font-size: 12px;
      margin-top: 4px;
  }

  .hero-visual {
      position: relative;
  }

  .hero-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.25);
      border-radius: 24px;
      padding: 32px;
      backdrop-filter: blur(20px);
      overflow: hidden;
  }

  .hero-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--white);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .hero-card-title i {
      color: var(--gold);
  }

  .service-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 12px;
      padding: 14px 18px;
      margin-bottom: 12px;
      transition: all 0.3s;
  }

  .service-pill:hover {
      background: rgba(201, 168, 76, 0.12);
      border-color: rgba(201, 168, 76, 0.35);
  }

  .service-pill-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .service-pill-icon i {
      color: var(--navy);
      font-size: 15px;
  }

  .service-pill-text {
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
  }

  .hero-float-badge {
      position: absolute;
      top: -15px;
      right: 20px;
      z-index: 10;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 16px;
      padding: 16px 20px;
      text-align: center;
      box-shadow: var(--shadow-gold);
  }

  .hero-float-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
  }

  .hero-float-badge .label {
      font-size: 11px;
      color: var(--navy);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 2px;
  }

  /* TRUST BAR */
  .trust-bar {
      background: var(--navy);
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
  }

  .trust-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
  }

  .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .trust-item i {
      color: var(--gold);
      font-size: 18px;
  }

  .trust-item span {
      color: rgba(255, 255, 255, 0.80);
      font-size: 14px;
      font-weight: 500;
  }

  .trust-divider {
      width: 1px;
      height: 30px;
      background: rgba(255, 255, 255, 0.12);
  }

  /* SECTION COMMON */
  section {
      padding: 100px 0;
  }

  .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
  }

  .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-pale);
      border-radius: 50px;
      padding: 6px 16px;
      margin-bottom: 16px;
  }

  .section-tag span {
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
  }

  .section-sub {
      font-size: 17px;
      color: var(--text-light);
      line-height: 1.7;
      max-width: 560px;
  }

  .section-header {
      margin-bottom: 60px;
  }

  .center {
      text-align: center;
  }

  .center .section-sub {
      margin: 0 auto;
  }

  /* ABOUT */
  .about {
      background: var(--off-white);
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
  }

  .about-img-wrap {
      position: relative;
  }

  .about-img-bg {
      width: 100%;
      height: 420px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(11, 31, 75, 0.7), transparent);
  }

  .about-img-icon {
      font-size: 120px;
      color: rgba(255, 255, 255, 0.08);
      position: absolute;
  }

  .about-illustration {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      z-index: 1;
      padding: 30px;
  }

  .about-illus-circle {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, #f9f8f5, var(--gold-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
  }

  .about-illus-circle i {
      font-size: 44px;
      color: var(--navy);
  }

  .about-illus-text {
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      text-align: center;
  }

  .about-illus-sub {
      color: rgba(255, 255, 255, 0.65);
      font-size: 14px;
      text-align: center;
  }

  .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--white);
      border-radius: 16px;
      padding: 18px 22px;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .about-badge-icon {
      width: 48px;
      height: 48px;
      background: var(--gold-pale);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about-badge-icon i {
      color: var(--gold);
      font-size: 22px;
  }

  .about-badge-text {
      display: flex;
      flex-direction: column;
  }

  .about-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
  }

  .about-badge-label {
      font-size: 12px;
      color: var(--text-light);
  }

  .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
  }

  .about-feature {
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 16px;
      border: 1px solid rgba(11, 31, 75, 0.07);
      display: flex;
      align-items: flex-start;
      gap: 12px;
  }

  .about-feature-icon {
      width: 36px;
      height: 36px;
      background: var(--gold-pale);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .about-feature-icon i {
      color: var(--gold);
      font-size: 16px;
  }

  .about-feature-text strong {
      display: block;
      color: var(--navy);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px;
  }

  .about-feature-text span {
      color: var(--text-light);
      font-size: 12px;
  }

  /* FOUNDER */
  .founder {
      background: linear-gradient(135deg, var(--navy) 0%, #0E2859 100%);
      position: relative;
      overflow: hidden;
  }

  .founder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .founder-inner {
      position: relative;
      z-index: 1;
  }

  .founder-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 64px;
      align-items: start;
  }

  .founder-profile {
      text-align: center;
  }

  .founder-avatar {
      position: relative;
      width: 260px;
      height: 260px;
      margin: 0 auto 24px;
      border-radius: 50%;
      /* overflow: hidden; */
      border: 6px solid rgba(201, 168, 76, 0.3);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
      background: #162a63;
  }

  .founder-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 50%;
  }

  .verified {
      position: absolute;
      bottom: 10px;
      right: 10px;
      width: 48px;
      height: 48px;
      background: #c9a84c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0b1f4b;
      font-size: 18px;
      border: 3px solid white;
  }


  .founder-avatar .verified i {
      font-size: 16px;
      color: white;
  }

  .founder-name {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
  }

  .founder-title {
      color: var(--gold-light);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .founder-badges {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .founder-badge-item {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(201, 168, 76, 0.2);
      border-radius: 10px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .founder-badge-item i {
      color: var(--gold);
      font-size: 16px;
  }

  .founder-badge-item span {
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
      font-weight: 500;
  }

  .founder-content {}

  .founder-quote {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      color: var(--white);
      line-height: 1.5;
      margin-bottom: 24px;
      opacity: 0.92;
  }

  .founder-desc {
      color: rgba(255, 255, 255, 0.68);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 40px;
  }

  .founder-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .timeline-item {
      display: flex;
      gap: 20px;
      padding-bottom: 28px;
      position: relative;
  }

  .timeline-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 19px;
      top: 40px;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, rgba(201, 168, 76, 0.4), transparent);
  }

  .timeline-dot {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .timeline-dot i {
      color: var(--navy);
      font-size: 16px;
  }

  .timeline-text {}

  .timeline-year {
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
  }

  .timeline-title {
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
  }

  .timeline-desc {
      color: rgba(255, 255, 255, 0.55);
      font-size: 13px;
  }

  .founder-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
  }

  .founder-stat {
      text-align: center;
  }

  .founder-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--gold-light);
  }

  .founder-stat .label {
      color: rgba(255, 255, 255, 0.55);
      font-size: 12px;
      margin-top: 4px;
  }

  /* SERVICES */
  .services {
      background: var(--off-white);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
  }

  .service-card {
      background: var(--white);
      border: 1px solid rgba(11, 31, 75, 0.09);
      border-radius: 20px;
      padding: 32px 24px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      opacity: 0;
      transition: opacity 0.3s;
  }

  .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(201, 168, 76, 0.3);
  }

  .service-card:hover::before {
      opacity: 1;
  }

  .service-icon {
      width: 100px;
      height: 63px;
      background: linear-gradient(135deg, #0d0e0e, #042472);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.3s;
  }

  .service-card:hover .service-icon {
      background: linear-gradient(135deg, #0a0a0a, var(--gold-light));
  }

  .service-card:hover .service-icon {
      color: var(--navy);
  }

  .service-icon  {
      font-size: 28px;
      color: var(--white);
      transition: color 0.3s;
  }

  .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
  }

  .service-desc {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 24px;
  }

  .service-link {
      color: var(--gold);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
  }

  .service-link:hover {
      gap: 10px;
  }

  .service-tag {
      display: inline-block;
      background: var(--gold-pale);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 4px 10px;
      border-radius: 50px;
      margin-bottom: 16px;
  }

  /* WHY CHOOSE */
  .why {
      background: var(--off-white);
  }

  .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }

  .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid rgba(11, 31, 75, 0.07);
      transition: all 0.3s;
  }

  .why-card:hover {
      box-shadow: var(--shadow-soft);
      transform: translateY(-4px);
      border-color: rgba(201, 168, 76, 0.2);
  }

  .why-card-icon {
      width: 56px;
      height: 56px;
      background: var(--gold-pale);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
  }

  .why-card-icon i {
      color: var(--gold);
      font-size: 24px;
  }

  .why-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
  }

  .why-card p {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.7;
  }

  /* COUNTERS */
  .counters {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 80px 0;
  }

  .counters-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
  }

  .counter-item {
      text-align: center;
      padding: 32px;
      border-right: 1px solid rgba(255, 255, 255, 0.10);
  }

  .counter-item:last-child {
      border-right: none;
  }

  .counter-num {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
  }

  .counter-label {
      color: rgba(255, 255, 255, 0.65);
      font-size: 14px;
      margin-top: 8px;
  }

  .counter-icon {
      font-size: 24px;
      color: rgba(201, 168, 76, 0.4);
      margin-bottom: 12px;
  }

  /* TESTIMONIALS */
  .testimonials {
      background: var(--white);
  }

  .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }

  .testi-card {
      background: var(--off-white);
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid rgba(11, 31, 75, 0.07);
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
  }

  .testi-card:hover {
      box-shadow: var(--shadow-soft);
      transform: translateY(-4px);
  }

  .testi-quote {
      font-size: 48px;
      color: var(--gold-pale);
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: 16px;
  }

  .testi-text {
      color: var(--text-mid);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 24px;
      font-style: italic;
  }

  .testi-footer {
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .testi-avatar {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .testi-avatar i {
      color: var(--white);
      font-size: 20px;
  }

  .testi-name {
      font-weight: 700;
      color: var(--navy);
      font-size: 15px;
  }

  .testi-role {
      color: var(--text-light);
      font-size: 12px;
  }

  .testi-stars {
      color: var(--gold);
      font-size: 13px;
      margin-bottom: 4px;
  }

  /* CONTACT */
  .contact {
      background: var(--off-white);
  }

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
  }

  .contact-info {}

  .contact-detail {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
  }

  .contact-detail-icon {
      width: 48px;
      height: 48px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .contact-detail-icon i {
      color: var(--gold);
      font-size: 18px;
  }

  .contact-detail-text strong {
      display: block;
      color: var(--navy);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
  }

  .contact-detail-text span {
      color: var(--text-light);
      font-size: 14px;
  }

  .contact-detail-text a {
      color: var(--text-mid);
      text-decoration: none;
  }

  .contact-detail-text a:hover {
      color: var(--navy);
  }

  .map-placeholder {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s;
  }

  .map-placeholder:hover {
      opacity: 0.9;
  }

  .map-placeholder i {
      font-size: 36px;
      color: var(--gold-light);
  }

  .map-placeholder span {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-weight: 500;
  }

  .map-placeholder small {
      color: rgba(255, 255, 255, 0.45);
      font-size: 12px;
  }

  .contact-form {
      background: var(--white);
      border-radius: 24px;
      padding: 40px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(11, 31, 75, 0.07);
  }

  .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
  }

  .form-subtitle {
      color: var(--text-light);
      font-size: 14px;
      margin-bottom: 28px;
  }

  .form-group {
      margin-bottom: 18px;
  }

  .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid rgba(11, 31, 75, 0.12);
      border-radius: 10px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  }

  .form-group textarea {
      resize: vertical;
      min-height: 100px;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  .btn-form {
      width: 100%;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      color: var(--white);
      border: none;
      padding: 15px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s;
      font-family: 'DM Sans', sans-serif;
      margin-top: 6px;
  }

  .btn-form:hover {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
  }

  /* FOOTER */
  footer {
      background: var(--text-dark);
      padding: 64px 0 0;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
  }

  .footer-brand .nav-logo {
      margin-bottom: 16px;
      display: inline-flex;
  }

  .footer-brand p {
      color: rgba(255, 255, 255, 0.50);
      font-size: 14px;
      line-height: 1.75;
      margin-bottom: 20px;
      max-width: 280px;
  }

  .footer-social {
      display: flex;
      gap: 10px;
  }

  .social-btn {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s;
  }

  .social-btn:hover {
      background: var(--gold);
      color: var(--navy);
  }

  .footer-col h4 {
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .footer-col ul {
      list-style: none;
  }

  .footer-col ul li {
      margin-bottom: 10px;
  }

  .footer-col ul li a {
      color: rgba(255, 255, 255, 0.50);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
  }

  .footer-col ul li a:hover {
      color: var(--gold-light);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
  }

  .footer-bottom p {
      color: rgba(255, 255, 255, 0.35);
      font-size: 13px;
  }

  .footer-bottom .gold {
      color: var(--gold-light);
  }

  /* FLOATING BUTTONS */
  .float-whatsapp {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: pulse-green 2.5s infinite;
  }

  .float-whatsapp:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
      animation: none;
  }

  .float-whatsapp i {
      color: white;
      font-size: 28px;
  }

  @keyframes pulse-green {

      0%,
      100% {
          box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4)
      }

      50% {
          box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7)
      }
  }

  .float-callback {
      position: fixed;
      bottom: 100px;
      right: 30px;
      z-index: 999;
      background: var(--navy);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: var(--shadow-soft);
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      transition: all 0.2s;
      text-decoration: none;
  }

  .float-callback:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
  }

  .float-callback i {
      font-size: 16px;
  }

  /* CALLBACK MODAL */
  .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(11, 31, 75, 0.7);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      backdrop-filter: blur(4px);
  }

  .modal-overlay.open {
      display: flex;
  }

  .modal-box {
      background: var(--white);
      border-radius: 24px;
      padding: 40px;
      max-width: 440px;
      width: 100%;
      box-shadow: 0 24px 80px rgba(11, 31, 75, 0.25);
      position: relative;
      animation: slideUp 0.3s ease;
  }

  @keyframes slideUp {
      from {
          transform: translateY(30px);
          opacity: 0
      }

      to {
          transform: translateY(0);
          opacity: 1
      }
  }

  .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      background: rgba(11, 31, 75, 0.07);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
  }

  .modal-sub {
      color: var(--text-light);
      font-size: 14px;
      margin-bottom: 24px;
  }

  /* ANIMATIONS */
  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
  }

  .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
      .services-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
          grid-template-columns: 1fr 1fr;
      }

      .founder-grid {
          grid-template-columns: 1fr;
      }

      .founder-stats {
          grid-template-columns: repeat(3, 1fr);
      }

      .counters-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .counter-item:nth-child(2) {
          border-right: none;
      }

      .counter-item:nth-child(3),
      .counter-item:nth-child(4) {
          border-top: 1px solid rgba(255, 255, 255, 0.10);
      }

      .counter-item:nth-child(4) {
          border-right: none;
      }
  }

  @media (max-width: 768px) {

      @media (max-width: 768px) {

          .hero {
              min-height: auto;
              padding-top: 90px;
          }

          .hero-inner {
              padding: 40px 20px 60px;
              gap: 30px;
          }

          .hero h1 {
              font-size: 42px;
              line-height: 1.15;
          }

          .hero p {
              font-size: 15px;
              line-height: 1.7;
          }

          .hero-stats {
              justify-content: space-between;
              gap: 10px;
          }

          .hero-stat-num {
              font-size: 24px;
          }

          .hero-btns {
              width: 100%;
          }

          .btn-primary,
          .btn-outline {
              width: 100%;
          }

          .nav-logo-name {
              font-size: 18px;
          }

          .nav-logo-tagline {
              font-size: 8px;
          }

      }

      .nav-links {
          display: none;
      }

      .hamburger {
          display: flex;
      }

      section {
          padding: 72px 0;
      }

      .hero-inner {
          grid-template-columns: 1fr;
          gap: 40px;
          padding: 60px 20px;
      }

      .hero-visual {
          display: none;
      }

      .hero-stats {
          gap: 20px;
          flex-wrap: wrap;
      }

      .about-grid {
          grid-template-columns: 1fr;
      }

      .about-img-wrap {
          margin-bottom: 20px;
      }

      .why-grid {
          grid-template-columns: 1fr 1fr;
      }

      .testi-grid {
          grid-template-columns: 1fr;
      }

      .contact-grid {
          grid-template-columns: 1fr;
      }

      .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
      }

      .footer-bottom {
          flex-direction: column;
          text-align: center;
      }

      .form-row {
          grid-template-columns: 1fr;
      }

      .counters-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .trust-bar-inner {
          justify-content: center;
      }

      .trust-divider {
          display: none;
      }

      .float-callback {
          display: none;
      }

      .founder-stats {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 480px) {
      .services-grid {
          grid-template-columns: 1fr;
      }

      .why-grid {
          grid-template-columns: 1fr;
      }

      .about-features {
          grid-template-columns: 1fr;
      }

      .hero-btns {
          flex-direction: column;
      }

      .btn-primary,
      .btn-outline {
          justify-content: center;
      }

      .founder-stats {
          grid-template-columns: 1fr;
      }
  }