    *,
    *::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;
      --destructive: #A85448;
      --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;
    }

    /* Grain texture overlay */
    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, 6vw, 4.2rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
    }

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

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

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

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .container-sm {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* ---- 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;
      flex-shrink: 0;
    }

    .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 {
      background: rgba(93, 112, 82, 0.09);
      color: var(--primary);
    }

    .nav-cta {
      background: var(--primary);
      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;
      background: var(--primary) !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;
      transition: all 0.3s;
    }

    .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;
      }
    }

    /* ---- BUTTONS ---- */
    .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-outline:active {
      transform: scale(0.97);
    }

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

    /* ---- HERO ---- */
    .hero {
      padding: 5rem 1.5rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero-blob-1 {
      position: absolute;
      width: 600px;
      height: 600px;
      background: rgba(93, 112, 82, 0.1);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -150px;
      right: -150px;
      filter: blur(60px);
      pointer-events: none;
    }

    .hero-blob-2 {
      position: absolute;
      width: 450px;
      height: 450px;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -100px;
      left: -100px;
      filter: blur(60px);
      pointer-events: none;
    }

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

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.4rem;
    }

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

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

    .hero-desc {
      font-size: 1.05rem;
      margin-bottom: 1.8rem;
      max-width: 500px;
    }

    .hero-btns {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
      margin-bottom: 2.4rem;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .hero-stat {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.6);
      border-radius: 1.4rem;
      padding: 1rem 1.2rem;
      box-shadow: var(--shadow-soft);
    }

    .hero-stat-num {
      font-family: 'Fraunces', serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
      display: block;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .hero-stat-label {
      font-size: 0.8rem;
      color: var(--muted-fg);
      font-weight: 600;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card-main {
      background: white;
      border-radius: 2rem;
      padding: 2rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      width: 100%;
      max-width: 360px;
      transform: rotate(-1.5deg);
      position: relative;
    }

    .hero-card-main::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.025;
      border-radius: inherit;
      pointer-events: none;
    }

    .hc-avatar {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #5D7052, #8AAD7B);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1rem;
    }

    .hc-title {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.3rem;
    }

    .hc-subtitle {
      font-size: 0.82rem;
      color: var(--muted-fg);
      margin-bottom: 1rem;
    }

    .hc-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
      padding: 0.3rem 0.8rem;
      border-radius: 9999px;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hc-line {
      height: 8px;
      background: var(--muted);
      border-radius: 9999px;
      margin-bottom: 0.5rem;
    }

    .hc-line:last-child {
      width: 70%;
    }

    .hero-float-card {
      position: absolute;
      background: white;
      border-radius: 1.2rem;
      padding: 0.8rem 1.1rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      font-size: 0.82rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hfc-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4CAF50;
      flex-shrink: 0;
    }

    .hfc-1 {
      bottom: -1.5rem;
      left: -2rem;
      color: var(--fg);
    }

    .hfc-2 {
      top: -1.2rem;
      right: -1rem;
      color: var(--primary);
      background: rgba(93, 112, 82, 0.06);
      border-color: rgba(93, 112, 82, 0.2);
    }

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

      .hero-visual {
        display: none;
      }

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

    @media (max-width: 600px) {
      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ---- COUNTRIES STRIP ---- */
    .countries-strip {
      background: var(--muted);
      padding: 1.2rem 1.5rem;
      overflow: hidden;
    }

    .countries-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cs-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--muted-fg);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }

    .cs-divider {
      width: 1px;
      height: 20px;
      background: var(--border);
    }

    .cs-flags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .cs-flag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: white;
      border-radius: 9999px;
      padding: 0.3rem 0.8rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--fg);
      border: 1px solid rgba(222, 216, 207, 0.5);
    }

    /* ---- SECTION COMMONS ---- */
    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-heading {
      color: var(--fg);
      margin-bottom: 1rem;
    }

    .section-sub {
      font-size: 1.05rem;
      max-width: 600px;
      margin-bottom: 3rem;
    }

    /* ---- ABOUT SUMMARY ---- */
    .about-section {
      background: var(--muted);
      position: relative;
      overflow: hidden;
    }

    .about-blob {
      position: absolute;
      width: 350px;
      height: 350px;
      background: rgba(193, 140, 93, 0.12);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      right: -80px;
      top: -80px;
      filter: blur(50px);
      pointer-events: none;
    }

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

    .about-visual {
      position: relative;
    }

    .about-img-wrap {
      width: 100%;
      aspect-ratio: 1 / 1;
      max-width: 380px;
      background: rgba(93, 112, 82, 0.12);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

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

    .about-icon-center svg {
      width: 48px;
      height: 48px;
      fill: white;
    }

    .about-badge-float {
      position: absolute;
      bottom: 1rem;
      right: -1rem;
      background: white;
      border-radius: 1.2rem;
      padding: 0.9rem 1.2rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      text-align: center;
    }

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

    .abf-label {
      font-size: 0.75rem;
      color: var(--muted-fg);
      font-weight: 600;
    }

    .about-points {
      list-style: none;
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .about-point {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
    }

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

    .ap-dot svg {
      width: 12px;
      height: 12px;
      fill: var(--primary);
    }

    .ap-text {
      font-size: 0.92rem;
      color: var(--muted-fg);
    }

    .ap-text strong {
      color: var(--fg);
    }

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

      .about-visual {
        display: none;
      }
    }

    /* ---- SERVICES ---- */
    .services-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .service-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      padding: 1.8rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card:nth-child(1) {
      border-radius: 4rem 2rem 2rem 2rem;
    }

    .service-card:nth-child(2) {
      border-radius: 2rem 2rem 4rem 2rem;
    }

    .service-card:nth-child(3) {
      border-radius: 2rem 4rem 2rem 2rem;
    }

    .service-card:nth-child(4) {
      border-radius: 2rem 2rem 2rem 4rem;
    }

    .service-card:nth-child(5) {
      border-radius: 3rem 2rem 3rem 2rem;
    }

    .service-card:nth-child(6) {
      border-radius: 2rem 3rem 2rem 3rem;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -10px rgba(93, 112, 82, 0.15);
    }

    .sc-icon {
      width: 52px;
      height: 52px;
      border-radius: 1rem;
      background: rgba(93, 112, 82, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      transition: all 0.3s;
    }

    .service-card:hover .sc-icon {
      background: var(--primary);
    }

    .sc-icon svg {
      width: 26px;
      height: 26px;
      fill: var(--primary);
      transition: fill 0.3s;
    }

    .service-card:hover .sc-icon svg {
      fill: white;
    }

    .sc-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.5rem;
    }

    .sc-desc {
      font-size: 0.88rem;
      color: var(--muted-fg);
      line-height: 1.65;
    }

    .sc-tag {
      display: inline-block;
      background: rgba(193, 140, 93, 0.1);
      color: var(--secondary);
      border-radius: 9999px;
      padding: 0.2rem 0.7rem;
      font-size: 0.72rem;
      font-weight: 700;
      margin-top: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

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

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

    /* ---- WHY TRUST US ---- */
    .trust-section {
      background: rgba(93, 112, 82, 0.04);
    }

    .trust-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
    }

    .trust-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 2rem;
      padding: 1.8rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
    }

    .trust-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 36px -8px rgba(93, 112, 82, 0.15);
    }

    .tc-num {
      font-family: 'Fraunces', serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--accent);
      display: block;
      line-height: 1;
      margin-bottom: 0.4rem;
      transition: all 0.3s;
    }

    .trust-card:hover .tc-num {
      color: var(--primary);
      transform: scale(1.05);
    }

    .tc-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.4rem;
    }

    .tc-desc {
      font-size: 0.85rem;
      color: var(--muted-fg);
    }

    @media (max-width: 900px) {
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    /* ---- STATS ---- */
    .stats-section {
      background: var(--primary);
      position: relative;
      overflow: hidden;
    }

    .stats-section p {
      color: rgba(243, 244, 241, 0.75);
    }

    .stats-blob {
      position: absolute;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
    }

    .sb1 {
      width: 400px;
      height: 400px;
      top: -150px;
      right: -100px;
      filter: blur(40px);
    }

    .sb2 {
      width: 300px;
      height: 300px;
      bottom: -100px;
      left: -80px;
      filter: blur(40px);
    }

    .stats-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .stat-item {}

    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      font-weight: 800;
      color: white;
      display: block;
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .stat-label {
      font-size: 0.88rem;
      color: rgba(243, 244, 241, 0.78);
      font-weight: 600;
    }

    @media (max-width: 700px) {
      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ---- COUNTRIES ---- */
    .countries-section {
      background: var(--muted);
    }

    .countries-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 1rem;
    }

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

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

    .cc-flag {
      font-size: 1.8rem;
      display: block;
      margin-bottom: 0.4rem;
    }

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

    /* ---- TESTIMONIALS ---- */
    .testimonials-section {}

    .testimonials-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testi-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 2rem;
      padding: 1.8rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      position: relative;
    }

    .testi-card:hover {
      transform: rotate(0.8deg) translateY(-3px);
      box-shadow: var(--shadow-float);
    }

    .testi-stars {
      display: flex;
      gap: 0.2rem;
      margin-bottom: 1rem;
    }

    .testi-star {
      color: #F5A623;
      font-size: 0.9rem;
    }

    .testi-quote {
      font-size: 0.92rem;
      color: var(--muted-fg);
      line-height: 1.75;
      margin-bottom: 1.4rem;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .ta-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: white;
      flex-shrink: 0;
    }

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

    .ta-detail {
      font-size: 0.78rem;
      color: var(--muted-fg);
    }

    .testi-badge {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      background: rgba(93, 112, 82, 0.08);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.25rem 0.7rem;
      font-size: 0.72rem;
      font-weight: 700;
    }

    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    /* ---- APPRECIATION ---- */
    .appreciation-section {
      background: rgba(230, 220, 205, 0.35);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .appr-blob {
      position: absolute;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      pointer-events: none;
      filter: blur(50px);
    }

    .appr-b1 {
      width: 350px;
      height: 350px;
      top: -80px;
      left: 10%;
    }

    .appr-b2 {
      width: 280px;
      height: 280px;
      bottom: -60px;
      right: 10%;
    }

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

    .appr-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(193, 140, 93, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .appr-icon svg {
      width: 36px;
      height: 36px;
      fill: var(--secondary);
    }

    .appr-inner h2 {
      margin-bottom: 1rem;
    }

    .appr-inner p {
      font-size: 1.05rem;
      max-width: 500px;
      margin: 0 auto;
    }

    /* ---- FINAL CTA ---- */
    .cta-section {
      background: var(--fg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-blob {
      position: absolute;
      background: rgba(93, 112, 82, 0.2);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
      filter: blur(60px);
    }

    .cta-b1 {
      width: 500px;
      height: 500px;
      top: -200px;
      left: -100px;
    }

    .cta-b2 {
      width: 400px;
      height: 400px;
      bottom: -150px;
      right: -100px;
      background: rgba(193, 140, 93, 0.15);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }

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

    .cta-inner h2 {
      color: white;
      margin-bottom: 1rem;
      font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .cta-inner p {
      color: rgba(240, 235, 229, 0.75);
      font-size: 1.05rem;
      margin-bottom: 2.2rem;
    }

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

    .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);
    }

    /* ---- 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);
      font-size: 0.9rem;
      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;
      }
    }

    /* Counters */
    .counting {
      display: inline-block;
    }
