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

    :root {
      --bg: #FDFCF8;
      --fg: #2C2C24;
      --primary: #5D7052;
      --primary-fg: #F3F4F1;
      --secondary: #C18C5D;
      --accent: #E6DCCD;
      --muted: #F0EBE5;
      --muted-fg: #78786C;
      --border: #DED8CF;
      --shadow-soft: 0 4px 20px -2px rgba(93, 112, 82, 0.15);
      --shadow-float: 0 10px 40px -10px rgba(193, 140, 93, 0.20);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.035;
      mix-blend-mode: multiply;
      pointer-events: none;
      z-index: 9999;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Fraunces', serif;
      line-height: 1.2;
    }

    h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.9rem, 3.8vw, 2.8rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.2rem;
      font-weight: 600;
    }

    p {
      color: var(--muted-fg);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 1rem;
      z-index: 100;
      padding: 0 1.5rem;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(253, 252, 248, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 9999px;
      padding: 0.6rem 1.2rem 0.6rem 0.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-soft);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-icon svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .nav-logo-text {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--fg);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      list-style: none;
    }

    .nav-links a {
      padding: 0.4rem 0.9rem;
      border-radius: 9999px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--muted-fg);
      transition: all 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: rgba(93, 112, 82, 0.09);
      color: var(--primary);
    }

    .nav-cta {
      background: var(--primary) !important;
      color: var(--primary-fg) !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 9999px !important;
      font-weight: 700 !important;
      font-size: 0.88rem !important;
      box-shadow: var(--shadow-soft);
      transition: all 0.25s !important;
    }

    .nav-cta:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 24px -4px rgba(93, 112, 82, 0.28) !important;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--fg);
      margin: 4px 0;
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(253, 252, 248, 0.97);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--fg);
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--primary);
    }

    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--muted);
      border: none;
      cursor: pointer;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .nav-cta-desktop {
        display: none;
      }
    }

    /* ── SHARED ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.75rem 2rem;
      border-radius: 9999px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-fg);
      box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 28px -4px rgba(93, 112, 82, 0.28);
    }

    .btn-primary:active {
      transform: scale(0.97);
    }

    .btn-outline {
      background: transparent;
      color: var(--secondary);
      border: 2px solid var(--secondary);
    }

    .btn-outline:hover {
      background: rgba(193, 140, 93, 0.08);
      transform: scale(1.04);
    }

    .btn-lg {
      padding: 0.95rem 2.4rem;
      font-size: 1.05rem;
    }

    .btn-white {
      background: white;
      color: var(--fg);
    }

    .btn-white:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-ghost-white {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.35);
    }

    .btn-ghost-white:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(1.04);
    }

    section {
      padding: 5rem 1.5rem;
    }

    .section-tag {
      display: inline-block;
      background: rgba(193, 140, 93, 0.12);
      color: var(--secondary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-tag-green {
      display: inline-block;
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

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

    /* ═══════════════════════════════
   HERO
═══════════════════════════════ */
    .services-hero {
      padding: 5rem 1.5rem 5.5rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .sh-blob-tl {
      position: absolute;
      width: 550px;
      height: 550px;
      background: rgba(93, 112, 82, 0.09);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -200px;
      left: -160px;
      filter: blur(65px);
      pointer-events: none;
    }

    .sh-blob-br {
      position: absolute;
      width: 420px;
      height: 420px;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -150px;
      right: -130px;
      filter: blur(55px);
      pointer-events: none;
    }

    .sh-inner {
      max-width: 780px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--muted-fg);
      font-weight: 600;
      margin-bottom: 1.6rem;
    }

    .breadcrumb a {
      color: var(--primary);
    }

    .services-hero h1 {
      color: var(--fg);
      margin-bottom: 1.2rem;
    }

    .services-hero h1 em {
      font-style: italic;
      color: var(--primary);
    }

    .sh-desc {
      font-size: 1.07rem;
      max-width: 600px;
      margin: 0 auto 2.4rem;
      line-height: 1.85;
    }

    .sh-pills {
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .sh-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.6);
      border-radius: 9999px;
      padding: 0.4rem 1rem;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--fg);
      box-shadow: var(--shadow-soft);
    }

    .sh-pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
    }

    /* ═══════════════════════════════
   SERVICES NAV TABS
═══════════════════════════════ */
    .services-tabs-wrap {
      background: var(--muted);
      padding: 1rem 1.5rem;
      position: sticky;
      top: 5rem;
      z-index: 80;
    }

    .services-tabs {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      gap: 0.5rem;
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .services-tabs::-webkit-scrollbar {
      display: none;
    }

    .stab {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 1.1rem;
      border-radius: 9999px;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--muted-fg);
      white-space: nowrap;
      cursor: pointer;
      background: transparent;
      border: 1.5px solid transparent;
      transition: all 0.22s;
    }

    .stab:hover {
      color: var(--primary);
      background: rgba(93, 112, 82, 0.07);
    }

    .stab.active {
      background: white;
      color: var(--primary);
      border-color: rgba(93, 112, 82, 0.25);
      box-shadow: var(--shadow-soft);
    }

    .stab svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════
   FEATURED SERVICE (SOP)
═══════════════════════════════ */
    .featured-service {
      background: var(--fg);
      position: relative;
      overflow: hidden;
      padding: 5rem 1.5rem;
    }

    .fs-blob1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(93, 112, 82, 0.25);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -180px;
      left: -120px;
      filter: blur(70px);
      pointer-events: none;
    }

    .fs-blob2 {
      position: absolute;
      width: 380px;
      height: 380px;
      background: rgba(193, 140, 93, 0.15);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -120px;
      right: -80px;
      filter: blur(60px);
      pointer-events: none;
    }

    .fs-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .fs-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(193, 140, 93, 0.25);
      color: #E6B88A;
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1.2rem;
    }

    .fs-content h2 {
      color: white;
      margin-bottom: 1rem;
    }

    .fs-content h2 em {
      font-style: italic;
      color: #9DC38A;
    }

    .fs-content>p {
      color: rgba(243, 244, 241, 0.78);
      font-size: 0.97rem;
      margin-bottom: 1.6rem;
      line-height: 1.8;
    }

    .fs-includes {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-bottom: 2rem;
    }

    .fs-includes li {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      color: rgba(243, 244, 241, 0.78);
      font-size: 0.9rem;
    }

    .fs-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .fs-check svg {
      width: 11px;
      height: 11px;
      fill: #9DC38A;
    }

    .fs-btns {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    /* Right side cards */
    .fs-cards {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .fsc {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 1.5rem;
      padding: 1.4rem 1.6rem;
      transition: all 0.3s;
    }

    .fsc:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .fsc-icon {
      width: 40px;
      height: 40px;
      border-radius: 0.8rem;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.8rem;
    }

    .fsc-icon svg {
      width: 20px;
      height: 20px;
      fill: #9DC38A;
    }

    .fsc-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.3rem;
    }

    .fsc p {
      font-size: 0.84rem;
      color: rgba(243, 244, 241, 0.68);
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .fs-inner {
        grid-template-columns: 1fr;
      }

      .fs-cards {
        display: none;
      }
    }

    /* ═══════════════════════════════
   OTHER SERVICES GRID
═══════════════════════════════ */
    .other-services {
      padding: 5rem 1.5rem;
    }

    .other-services-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .os-header {
      margin-bottom: 3.5rem;
    }

    .os-header h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .os-header p {
      max-width: 560px;
    }

    /* Service detail cards — alternating layout */
    .service-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-bottom: 1.6rem;
      border-radius: 2.5rem;
      overflow: hidden;
      border: 1px solid rgba(222, 216, 207, 0.5);
      box-shadow: var(--shadow-soft);
      transition: box-shadow 0.3s;
    }

    .service-block:hover {
      box-shadow: var(--shadow-float);
    }

    .service-block.reverse {
      direction: rtl;
    }

    .service-block.reverse>* {
      direction: ltr;
    }

    .sb-content {
      background: white;
      padding: 3rem 3rem 3rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .sb-content-2 {
      background: var(--muted);
    }

    .sb-content-3 {
      background: rgba(230, 220, 205, 0.3);
    }

    .sb-content-4 {
      background: rgba(168, 84, 72, 0.05);
    }

    .sb-visual {
      position: relative;
      overflow: hidden;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sbv-1 {
      background: linear-gradient(135deg, rgba(93, 112, 82, 0.12), rgba(93, 112, 82, 0.06));
    }

    .sbv-2 {
      background: linear-gradient(135deg, rgba(193, 140, 93, 0.15), rgba(193, 140, 93, 0.06));
    }

    .sbv-3 {
      background: linear-gradient(135deg, rgba(74, 74, 64, 0.1), rgba(74, 74, 64, 0.04));
    }

    .sbv-4 {
      background: linear-gradient(135deg, rgba(168, 84, 72, 0.12), rgba(168, 84, 72, 0.04));
    }

    .sbv-icon-wrap {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .sbv-1 .sbv-icon-wrap {
      background: rgba(93, 112, 82, 0.15);
    }

    .sbv-2 .sbv-icon-wrap {
      background: rgba(193, 140, 93, 0.15);
    }

    .sbv-3 .sbv-icon-wrap {
      background: rgba(74, 74, 64, 0.12);
    }

    .sbv-4 .sbv-icon-wrap {
      background: rgba(168, 84, 72, 0.12);
    }

    .sbv-icon-wrap svg {
      width: 60px;
      height: 60px;
    }

    .sbv-1 .sbv-icon-wrap svg {
      fill: var(--primary);
    }

    .sbv-2 .sbv-icon-wrap svg {
      fill: var(--secondary);
    }

    .sbv-3 .sbv-icon-wrap svg {
      fill: var(--fg);
    }

    .sbv-4 .sbv-icon-wrap svg {
      fill: #A85448;
    }

    .sbv-blob {
      position: absolute;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
      filter: blur(40px);
    }

    .sbv-1 .sbv-blob {
      width: 200px;
      height: 200px;
      background: rgba(93, 112, 82, 0.12);
      top: -40px;
      right: -40px;
    }

    .sbv-2 .sbv-blob {
      width: 200px;
      height: 200px;
      background: rgba(193, 140, 93, 0.12);
      bottom: -40px;
      left: -40px;
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }

    .sbv-3 .sbv-blob {
      width: 220px;
      height: 220px;
      background: rgba(74, 74, 64, 0.08);
      top: -50px;
      left: -50px;
    }

    .sbv-4 .sbv-blob {
      width: 200px;
      height: 200px;
      background: rgba(168, 84, 72, 0.1);
      top: -40px;
      right: -40px;
    }

    .sbv-float-badge {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      background: white;
      border-radius: 1.2rem;
      padding: 0.7rem 1rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--fg);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .sbv-float-badge svg {
      width: 14px;
      height: 14px;
      fill: var(--primary);
    }

    .sb-tag {
      display: inline-block;
      border-radius: 9999px;
      padding: 0.25rem 0.8rem;
      font-size: 0.74rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
    }

    .sb-tag-green {
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
    }

    .sb-tag-clay {
      background: rgba(193, 140, 93, 0.12);
      color: var(--secondary);
    }

    .sb-tag-bark {
      background: rgba(74, 74, 64, 0.1);
      color: var(--fg);
    }

    .sb-tag-red {
      background: rgba(168, 84, 72, 0.1);
      color: #A85448;
    }

    .sb-content h3 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .sb-content>p {
      font-size: 0.93rem;
      line-height: 1.78;
      margin-bottom: 1.4rem;
    }

    .sb-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      margin-bottom: 1.8rem;
    }

    .sb-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--muted-fg);
    }

    .sb-li-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(93, 112, 82, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .sb-li-dot svg {
      width: 10px;
      height: 10px;
      fill: var(--primary);
    }

    .sb-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--primary);
      transition: gap 0.2s;
    }

    .sb-link:hover {
      gap: 0.7rem;
    }

    .sb-link svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    @media (max-width: 860px) {
      .service-block {
        grid-template-columns: 1fr;
      }

      .service-block.reverse {
        direction: ltr;
      }

      .sb-visual {
        min-height: 200px;
      }
    }

    /* ═══════════════════════════════
   VISA SOP — Full Width Card
═══════════════════════════════ */
    .visa-section {
      background: var(--muted);
      padding: 5rem 1.5rem;
    }

    .visa-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .visa-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.5);
      border-radius: 3rem;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .visa-card-top {
      background: linear-gradient(135deg, rgba(93, 112, 82, 0.08), rgba(193, 140, 93, 0.07));
      padding: 3.5rem 3.5rem 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
    }

    .vc-content {
      padding-bottom: 3rem;
    }

    .vc-content h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .vc-content>p {
      margin-bottom: 1.6rem;
      font-size: 0.95rem;
    }

    .vc-visual {
      display: flex;
      gap: 1rem;
      align-items: flex-end;
      padding-bottom: 0;
      justify-content: flex-end;
    }

    .vc-visa-card {
      background: white;
      border-radius: 1.4rem;
      padding: 1.4rem 1.6rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      width: 170px;
      text-align: center;
      transform: rotate(-2deg);
      margin-bottom: 1rem;
    }

    .vc-visa-card:last-child {
      transform: rotate(2deg);
      margin-bottom: 0;
      margin-top: 1rem;
    }

    .vcvc-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.6rem;
    }

    .vcvc-1 .vcvc-icon {
      background: rgba(93, 112, 82, 0.1);
    }

    .vcvc-2 .vcvc-icon {
      background: rgba(193, 140, 93, 0.1);
    }

    .vcvc-icon svg {
      width: 22px;
      height: 22px;
    }

    .vcvc-1 .vcvc-icon svg {
      fill: var(--primary);
    }

    .vcvc-2 .vcvc-icon svg {
      fill: var(--secondary);
    }

    .vcvc-name {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--fg);
    }

    .vcvc-sub {
      font-size: 0.74rem;
      color: var(--muted-fg);
    }

    .visa-card-bottom {
      padding: 2.5rem 3.5rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      border-top: 1px solid rgba(222, 216, 207, 0.4);
    }

    .vcp {}

    .vcp-icon {
      width: 40px;
      height: 40px;
      border-radius: 0.8rem;
      background: rgba(93, 112, 82, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.8rem;
    }

    .vcp-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--primary);
    }

    .vcp-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.3rem;
    }

    .vcp-desc {
      font-size: 0.82rem;
      color: var(--muted-fg);
      line-height: 1.55;
    }

    @media (max-width: 860px) {
      .visa-card-top {
        grid-template-columns: 1fr;
      }

      .vc-visual {
        display: none;
      }

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

      .visa-card-top,
      .visa-card-bottom {
        padding: 2rem;
      }
    }

    @media (max-width: 500px) {
      .visa-card-bottom {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════════════════
   GLOBAL DESTINATIONS
═══════════════════════════════ */
    .destinations {
      padding: 5rem 1.5rem;
    }

    .dest-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .dest-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 3.5rem;
    }

    .dest-header h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .dest-header p {
      font-size: 0.95rem;
    }

    .dest-stat {
      display: flex;
      gap: 2rem;
    }

    .ds-item {
      text-align: center;
    }

    .ds-num {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      display: block;
      line-height: 1;
    }

    .ds-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--muted-fg);
    }

    .dest-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
      gap: 1rem;
    }

    .dest-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.6);
      border-radius: 1.6rem;
      padding: 1.4rem 1rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      cursor: default;
    }

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

    .dc-flag {
      font-size: 2rem;
      display: block;
      margin-bottom: 0.4rem;
    }

    .dc-name {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.2rem;
    }

    .dc-note {
      font-size: 0.72rem;
      color: var(--muted-fg);
    }

    @media (max-width: 760px) {
      .dest-header {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════════════════
   HOW IT WORKS
═══════════════════════════════ */
    .hiw-section {
      background: var(--fg);
      padding: 5rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .hiw-blob1 {
      position: absolute;
      width: 450px;
      height: 450px;
      background: rgba(93, 112, 82, 0.22);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -160px;
      right: -100px;
      filter: blur(65px);
      pointer-events: none;
    }

    .hiw-blob2 {
      position: absolute;
      width: 350px;
      height: 350px;
      background: rgba(193, 140, 93, 0.15);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -100px;
      left: -80px;
      filter: blur(55px);
      pointer-events: none;
    }

    .hiw-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hiw-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .hiw-header h2 {
      color: white;
      margin-bottom: 0.8rem;
    }

    .hiw-header p {
      color: rgba(243, 244, 241, 0.72);
      max-width: 520px;
      margin: 0 auto;
    }

    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .hiw-steps::before {
      content: '';
      position: absolute;
      top: 44px;
      left: calc(12.5% + 22px);
      right: calc(12.5% + 22px);
      height: 2px;
      background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 8px, transparent 8px, transparent 18px);
    }

    .hiw-step {
      padding: 0 1.5rem;
      text-align: center;
    }

    .hiw-step-num {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 2px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
    }

    .hiw-step:hover .hiw-step-num {
      background: rgba(93, 112, 82, 0.35);
      border-color: rgba(93, 112, 82, 0.6);
    }

    .hiw-step-num svg {
      width: 36px;
      height: 36px;
      fill: rgba(243, 244, 241, 0.85);
    }

    .hiw-step-num-label {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--secondary);
      color: white;
      font-size: 0.72rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
    }

    .hiw-step h3 {
      color: white;
      font-size: 1.05rem;
      margin-bottom: 0.6rem;
    }

    .hiw-step p {
      color: rgba(243, 244, 241, 0.68);
      font-size: 0.86rem;
      line-height: 1.65;
    }

    .hiw-step-detail {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .hiw-detail-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      justify-content: center;
      font-size: 0.78rem;
      color: rgba(243, 244, 241, 0.55);
    }

    .hiw-detail-item svg {
      width: 12px;
      height: 12px;
      fill: #9DC38A;
      flex-shrink: 0;
    }

    @media (max-width: 860px) {
      .hiw-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .hiw-steps::before {
        display: none;
      }
    }

    @media (max-width: 500px) {
      .hiw-steps {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════════════════
   PRICING HINT STRIP
═══════════════════════════════ */
    .pricing-strip {
      background: rgba(93, 112, 82, 0.06);
      padding: 3rem 1.5rem;
    }

    .ps-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .ps-left h3 {
      color: var(--fg);
      margin-bottom: 0.3rem;
    }

    .ps-left p {
      font-size: 0.92rem;
    }

    .ps-cards {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .ps-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 1.2rem;
      padding: 0.8rem 1.2rem;
      box-shadow: var(--shadow-soft);
      text-align: center;
      min-width: 120px;
    }

    .psc-name {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--muted-fg);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.2rem;
    }

    .psc-price {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--primary);
    }

    .psc-note {
      font-size: 0.7rem;
      color: var(--muted-fg);
    }

    /* ═══════════════════════════════
   FINAL CTA
═══════════════════════════════ */
    .final-cta {
      background: var(--primary);
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: 5rem 1.5rem;
    }

    .fcta-blob1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -200px;
      left: -120px;
      filter: blur(60px);
      pointer-events: none;
    }

    .fcta-blob2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(193, 140, 93, 0.2);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -150px;
      right: -100px;
      filter: blur(60px);
      pointer-events: none;
    }

    .fcta-inner {
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .fcta-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.15);
      color: rgba(243, 244, 241, 0.9);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .fcta-inner h2 {
      color: white;
      margin-bottom: 1rem;
    }

    .fcta-inner p {
      color: rgba(243, 244, 241, 0.78);
      font-size: 1.05rem;
      margin-bottom: 2.2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .fcta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-white-green {
      background: white;
      color: var(--primary);
      font-weight: 700;
    }

    .btn-white-green:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .btn-ghost-green {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .btn-ghost-green:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: scale(1.04);
    }

    /* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
    footer {
      background: #1A1A14;
      color: rgba(240, 235, 229, 0.7);
      padding: 4rem 1.5rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand-name {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.8rem;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-icon svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }

    .footer-socials {
      display: flex;
      gap: 0.6rem;
    }

    .footer-social {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(240, 235, 229, 0.7);
      transition: all 0.2s;
    }

    .footer-social:hover {
      background: var(--primary);
      color: white;
    }

    .footer-col-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(240, 235, 229, 0.4);
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      font-size: 0.88rem;
      color: rgba(240, 235, 229, 0.65);
      transition: color 0.2s;
    }

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

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.85rem;
      margin-bottom: 0.6rem;
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copy {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: rgba(240, 235, 229, 0.75);
    }

    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 550px) {
      .footer-inner {
        grid-template-columns: 1fr;
      }
    }
