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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1E293B;
    background: #FAFAF9;
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  /* ========== HEADER ========== */
  #site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 65, 50, 0.08);
    transition: box-shadow 0.3s ease;
  }

  #site-header.scrolled {
    box-shadow: 0 4px 24px rgba(15, 65, 50, 0.08);
  }

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

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

  .logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F766E;
    letter-spacing: -0.02em;
  }

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

  .nav-links a {
    font-size: 0.938rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0D9488;
    border-radius: 1px;
    transition: width 0.25s ease;
  }

  .nav-links a:hover {
    color: #0D9488;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* ========== BUTTONS ========== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
  }

  .btn:active {
    transform: translateY(0);
  }

  .btn-teal {
    background: #0D9488;
    color: #fff;
    border-color: #0D9488;
  }

  .btn-teal:hover {
    background: #0F766E;
    border-color: #0F766E;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
  }

  .btn-teal-outline {
    background: transparent;
    color: #0D9488;
    border-color: #0D9488;
    padding: 8px 20px;
    font-size: 0.875rem;
  }

  .btn-teal-outline:hover {
    background: #0D9488;
    color: #fff;
  }

  .btn-ghost {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
  }

  .btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .btn-white {
    background: #fff;
    color: #0D9488;
    border-color: #fff;
  }

  .btn-white:hover {
    background: #F0FDFA;
    box-shadow: 0 8px 24px rgba(255,255,255,0.3);
  }

  .btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
  }

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

  .btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
  }

  .btn-full {
    width: 100%;
  }

  /* ========== MOBILE TOGGLE ========== */
  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1E293B;
  }

  /* ========== MOBILE NAV ========== */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 249, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(15, 65, 50, 0.08);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    z-index: 99;
  }

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

  .mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(15, 65, 50, 0.06);
    transition: color 0.2s;
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  .mobile-nav a:hover {
    color: #0D9488;
  }

  /* ========== HERO ========== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #042F2E 0%, #0F766E 40%, #14B8A6 70%, #2DD4BF 100%);
    padding-top: 72px;
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 50%, rgba(20, 184, 166, 0.4) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 30%, rgba(45, 212, 191, 0.3) 0%, transparent 50%),
      radial-gradient(ellipse 50% 50% at 10% 90%, rgba(4, 47, 46, 0.6) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 60px 24px;
    margin-left: 8%;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #CCFBF1;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
  }

  .hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

  .headline-accent {
    display: block;
    color: #99F6E4;
    font-style: italic;
  }

  .hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .trust-item svg {
    opacity: 0.9;
  }

  .hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 72px;
    width: 42%;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 30%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 30%);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
    text-decoration: none;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
  }

  /* ========== SECTION COMMON ========== */
  .section-label {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0D9488;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .section-sub {
    font-size: 1.063rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 600px;
  }

  /* ========== SERVICES ========== */
  .services {
    padding: 100px 0;
    background: #FAFAF9;
  }

  .services .container > .section-label,
  .services .container > .section-title,
  .services .container > .section-sub {
    margin-bottom: 12px;
  }

  .services .container > .section-sub {
    margin-bottom: 56px;
  }

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

  .card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(15, 65, 50, 0.06);
    box-shadow: 0 2px 12px rgba(15, 65, 50, 0.04);
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.15);
  }

  .card-icon {
    width: 56px;
    height: 56px;
    background: #F0FDFA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
  }

  .card-body {
    font-size: 0.938rem;
    color: #64748B;
    line-height: 1.7;
  }

  /* ========== ABOUT ========== */
  .about {
    padding: 100px 0;
    background: #F8FAFC;
  }

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

  .about-images {
    position: relative;
  }

  .about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 65, 50, 0.12);
  }

  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 65, 50, 0.15);
    border: 4px solid #F8FAFC;
  }

  .about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: #fff;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(15, 65, 50, 0.12);
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F766E;
  }

  .about-content {
    max-width: 480px;
  }

  .about-content > .section-label {
    margin-bottom: 12px;
  }

  .about-content > .section-title {
    margin-bottom: 24px;
  }

  .about-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
  }

  .value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    font-weight: 500;
    color: #334155;
  }

  .about-content > .btn {
    margin-top: 8px;
  }

  /* ========== TESTIMONIALS ========== */
  .testimonials {
    padding: 100px 0;
    background: #FAFAF9;
  }

  .testimonials .container > .section-label,
  .testimonials .container > .section-title {
    text-align: center;
    margin-bottom: 12px;
  }

  .testimonials .container > .section-title {
    margin-bottom: 56px;
  }

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

  .testimonial-card {
    display: flex;
    flex-direction: column;
  }

  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 0.938rem;
    color: #475569;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-name {
    font-weight: 600;
    font-size: 0.938rem;
    color: #0F172A;
  }

  .author-location {
    font-size: 0.813rem;
    color: #94A3B8;
  }

  /* ========== CTA BANNER ========== */
  .cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #042F2E 0%, #0F766E 50%, #14B8A6 100%);
  }

  .cta-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 30% 50%, rgba(45, 212, 191, 0.25) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 90% 20%, rgba(20, 184, 166, 0.3) 0%, transparent 50%);
    pointer-events: none;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }

  .cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .cta-text {
    font-size: 1.063rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* ========== CONTACT ========== */
  .contact {
    padding: 100px 0;
    background: #F8FAFC;
  }

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

  .contact-info > .section-label {
    margin-bottom: 12px;
  }

  .contact-info > .section-title {
    margin-bottom: 16px;
  }

  .contact-text {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .detail-item {
    display: flex;
    gap: 16px;
  }

  .detail-icon {
    width: 48px;
    height: 48px;
    background: #F0FDFA;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .detail-label {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 4px;
  }

  .detail-value {
    font-size: 0.938rem;
    color: #334155;
    line-height: 1.6;
  }

  .detail-value a {
    color: #0D9488;
    text-decoration: none;
    transition: color 0.2s;
  }

  .detail-value a:hover {
    color: #0F766E;
    text-decoration: underline;
  }

  .contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 65, 50, 0.08);
  }

  .contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(15, 65, 50, 0.06);
    border: 1px solid rgba(15, 65, 50, 0.06);
  }

  .form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
  }

  .form-sub {
    font-size: 0.938rem;
    color: #64748B;
    margin-bottom: 32px;
  }

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

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

  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.938rem;
    color: #1E293B;
    background: #F8FAFC;
    transition: all 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #0D9488;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #94A3B8;
  }

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

  .form-success {
    text-align: center;
    padding: 32px 16px;
  }

  .success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F766E;
    margin: 16px 0 8px;
  }

  .success-text {
    font-size: 0.938rem;
    color: #64748B;
    line-height: 1.6;
  }

  .form-success svg {
    margin: 0 auto;
    display: block;
  }

  /* ========== FOOTER ========== */
  .footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 64px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }

  .footer-brand .logo-text {
    color: #fff;
    margin-bottom: 16px;
    display: block;
  }

  .footer-desc {
    font-size: 0.938rem;
    line-height: 1.7;
    color: #64748B;
    max-width: 300px;
  }

  .footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 20px;
  }

  .footer-nav ul,
  .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav a,
  .footer-contact a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.2s;
  }

  .footer-nav a:hover,
  .footer-contact a:hover {
    color: #2DD4BF;
  }

  .footer-contact span {
    font-size: 0.938rem;
    line-height: 1.6;
  }

  .footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.813rem;
    color: #475569;
  }

  .footer-bottom a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover {
    color: #2DD4BF;
  }

  /* ========== REVEAL ANIMATION ========== */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .hero-image {
      width: 35%;
    }

    .hero-inner {
      margin-left: 5%;
    }

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

    .about-grid {
      gap: 48px;
    }
  }

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

    .mobile-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero {
      min-height: auto;
      padding: 120px 0 80px;
    }

    .hero-inner {
      margin-left: 0;
      padding: 0 24px;
      text-align: center;
    }

    .hero-sub {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      justify-content: center;
    }

    .hero-trust {
      justify-content: center;
    }

    .hero-image {
      display: none;
    }

    .services-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }

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

    .about-images {
      max-width: 400px;
      margin: 0 auto;
    }

    .about-content {
      max-width: 100%;
    }

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

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

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

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

    .form-card {
      padding: 28px;
    }
  }

  @media (max-width: 480px) {
    .hero-headline {
      font-size: 1.875rem;
    }

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

    .hero-actions .btn {
      width: 100%;
    }

    .cta-actions {
      flex-direction: column;
      align-items: center;
    }

    .cta-actions .btn {
      width: 100%;
      max-width: 300px;
    }

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