  /* ── Reset & Base ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: #fef9ef;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* ── Typography ── */
  h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
  em { font-style: italic; font-weight: 400; }

  /* ── Section Shared ── */
  .section { padding: 100px 0; }
  .section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #065f46;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #064e3b;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
  }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .btn-primary {
    background: #064e3b;
    color: #fef9ef;
    border-color: #064e3b;
  }
  .btn-primary:hover { background: #065f46; border-color: #065f46; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,78,59,0.25); }
  .btn-outline {
    background: transparent;
    color: #064e3b;
    border-color: #064e3b;
  }
  .btn-outline:hover { background: #064e3b; color: #fef9ef; transform: translateY(-2px); }
  .btn-light {
    background: #fef9ef;
    color: #064e3b;
    border-color: #fef9ef;
  }
  .btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .btn-outline-light {
    background: transparent;
    color: #fef9ef;
    border-color: rgba(254,249,239,0.5);
  }
  .btn-outline-light:hover { background: rgba(254,249,239,0.15); border-color: #fef9ef; transform: translateY(-2px); }
  .btn-full { width: 100%; justify-content: center; }

  /* ── NAV ── */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254,249,239,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6,78,59,0.08);
    transition: box-shadow 0.3s ease;
  }
  .nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #064e3b;
  }
  .nav-logo-mark {
    width: 36px;
    height: 36px;
    background: #064e3b;
    color: #fef9ef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3748;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:not(.nav-cta):hover { color: #064e3b; }
  .nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #064e3b;
    transition: width 0.25s ease;
  }
  .nav-links a:not(.nav-cta):hover::after { width: 100%; }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #064e3b;
    color: #fef9ef !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s ease;
  }
  .nav-cta:hover { background: #065f46; transform: translateY(-1px); }
  .nav-cta::after { display: none; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #064e3b;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
  }
  .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 30%, #047857 60%, #10b981 100%);
    z-index: 0;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(16,185,129,0.3) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(6,78,59,0.4) 0%, transparent 50%);
    z-index: 1;
  }
  .hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-content { color: #fef9ef; }
  .hero-greeting {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(254,249,239,0.7);
    margin-bottom: 20px;
  }
  .hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fef9ef;
  }
  .hero-headline em { color: #fef0d4; }
  .hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(254,249,239,0.8);
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-actions .btn-outline { border-color: rgba(254,249,239,0.5); color: #fef9ef; }
  .hero-actions .btn-outline:hover { background: rgba(254,249,239,0.15); border-color: #fef9ef; }
  .hero-actions .btn-primary { background: #fef9ef; color: #064e3b; border-color: #fef9ef; }
  .hero-actions .btn-primary:hover { background: #fff; border-color: #fff; }
  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(254,249,239,0.85);
  }
  .hero-trust svg { color: #6ee7b7; }
  .hero-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.3);
    aspect-ratio: 6/7;
  }
  .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

  /* ── SERVICES ── */
  .services { background: #fef9ef; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: #fff;
    border: 1px solid rgba(6,78,59,0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(6,78,59,0.1); border-color: rgba(6,78,59,0.15); }
  .service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #064e3b;
    margin-bottom: 20px;
  }
  .service-title {
    font-size: 1.2rem;
    color: #064e3b;
    margin-bottom: 10px;
  }
  .service-desc {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.7;
  }

  /* ── ABOUT ── */
  .about { background: #f0fdf4; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(6,78,59,0.12);
    aspect-ratio: 7/8;
  }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }
  .about-text .section-title { text-align: left; margin-bottom: 24px; }
  .about-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .stat-num { font-size: 1.5rem; }
  .stat-label {
    font-size: 0.85rem;
    color: #064e3b;
    font-weight: 600;
  }

  /* ── WHY ── */
  .why { background: #fef9ef; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
  }
  .why-item {
    padding: 36px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(6,78,59,0.06);
    transition: all 0.3s ease;
  }
  .why-item:hover { box-shadow: 0 12px 32px rgba(6,78,59,0.08); }
  .why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(6,78,59,0.12);
    line-height: 1;
    margin-bottom: 12px;
  }
  .why-title {
    font-size: 1.2rem;
    color: #064e3b;
    margin-bottom: 10px;
  }
  .why-desc {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.7;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }
  .cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
  }
  .cta-banner .container { position: relative; z-index: 2; }
  .cta-content { text-align: center; max-width: 640px; margin: 0 auto; }
  .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fef9ef;
    margin-bottom: 16px;
  }
  .cta-title em { color: #fef0d4; }
  .cta-desc {
    font-size: 1.1rem;
    color: rgba(254,249,239,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── CONTACT ── */
  .contact { background: #f0fdf4; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .contact-info .section-title { text-align: left; margin-bottom: 16px; }
  .contact-desc {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #064e3b;
    flex-shrink: 0;
  }
  .contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 2px;
  }
  .contact-item span, .contact-item a {
    font-size: 0.95rem;
    color: #4a5568;
  }
  .contact-item a:hover { color: #064e3b; text-decoration: underline; }
  .contact-map { border-radius: 12px; overflow: hidden; }

  /* ── FORM ── */
  .contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(6,78,59,0.08);
    border: 1px solid rgba(6,78,59,0.06);
  }
  .form-title {
    font-size: 1.5rem;
    color: #064e3b;
    margin-bottom: 8px;
  }
  .form-sub {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: #fef9ef;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #064e3b;
    box-shadow: 0 0 0 3px rgba(6,78,59,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #d1fae5;
    border-radius: 10px;
    color: #064e3b;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .form-success.show { display: flex; }

  /* ── FOOTER ── */
  .footer {
    background: #064e3b;
    color: rgba(254,249,239,0.7);
    padding: 64px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand .nav-logo { color: #fef9ef; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
  .footer h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(254,249,239,0.5);
    margin-bottom: 16px;
  }
  .footer ul { display: flex; flex-direction: column; gap: 10px; }
  .footer ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
  }
  .footer ul a:hover { color: #fef9ef; text-decoration: underline; }
  .footer-bottom {
    border-top: 1px solid rgba(254,249,239,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(254,249,239,0.4);
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-img-wrap { max-width: 480px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { max-width: 480px; margin: 0 auto; }
    .about-text .section-title { text-align: center; }
    .about-text p { text-align: center; }
    .about-stats { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info .section-title { text-align: center; }
    .contact-desc { text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(254,249,239,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      padding: 32px 24px;
      gap: 20px;
      border-bottom: 1px solid rgba(6,78,59,0.08);
      transform: translateY(-120%);
      opacity: 0;
      transition: all 0.35s ease;
      pointer-events: none;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 120px 0 72px; }
    .hero-img-wrap { aspect-ratio: 4/3; }
    .contact-form-wrap { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  @media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
  }
