﻿:root {
    --green-950: #08261a;
    --green-900: #0a2f21;
    --green-800: #0f5132;
    --green-700: #146c43;
    --green-600: #1f8a5b;
    --green-500: #2aa56c;
    --sand-50: #fbfaf7;
    --sand-100: #f7f2e7;
    --sand-200: #eadfc8;
    --gold: #d7b36a;
    --gold-soft: #f1d89b;
    --text: #18201c;
    --muted: #66736c;
    --white: #ffffff;
    --border: rgba(15, 81, 50, .12);
    --shadow: 0 24px 70px rgba(9, 38, 27, .12);
    --shadow-soft: 0 12px 34px rgba(9, 38, 27, .08);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1200px;
  }

  * {
    box-sizing: border-box
  }

  html {
    scroll-behavior: smooth
  }

  body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at top left, rgba(215, 179, 106, .16), transparent 26%),
      radial-gradient(circle at bottom right, rgba(31, 138, 91, .10), transparent 24%),
      linear-gradient(180deg, #fbfaf7 0%, #f6f3ec 100%);
    line-height: 1.6;
  }

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

  img {
    max-width: 100%;
    display: block
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
  }

  .section {
    padding: 88px 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .eyebrow-dark {
    background: #eef6f1;
    border: 1px solid var(--border);
    color: var(--green-800);
  }

  .title {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.03;
    margin: 18px 0 18px;
    letter-spacing: -0.03em;
  }

  .subtitle {
    color: var(--muted);
    font-size: 18px;
    max-width: 760px;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
  }

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

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

  .card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: .25s ease;
    cursor: pointer;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #1b1a16;
    box-shadow: 0 12px 24px rgba(216, 179, 106, .24);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(216, 179, 106, .30);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border-color: rgba(255, 255, 255, .18);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, .16);
  }

  .btn-outline {
    border-color: var(--border);
    background: #fff;
    color: var(--green-800);
  }

  .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(251, 250, 247, .78);
    border-bottom: 1px solid rgba(15, 81, 50, .08);
  }

  .nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background:
      radial-gradient(circle at 30% 30%, #2ec47f, transparent 30%),
      linear-gradient(135deg, var(--green-700), var(--green-900));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 8px 18px rgba(15, 81, 50, .20);
    position: relative;
    overflow: hidden;
  }

  .brand-mark::before,
  .brand-mark::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .22);
    border-radius: 999px;
  }

  .brand-mark::before {
    width: 4px;
    height: 26px;
    left: 21px;
    top: 9px;
  }

  .brand-mark::after {
    width: 18px;
    height: 4px;
    left: 15px;
    top: 20px;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .brand-text strong {
    font-size: 18px;
    letter-spacing: -0.02em;
  }

  .brand-text span {
    font-size: 12px;
    color: var(--muted);
    margin-top: 5px;
  }

  .menu {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #2a332f;
    font-weight: 600;
    font-size: 15px;
  }

  .menu a {
    position: relative;
  }

  .menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--green-700);
    transition: .25s ease;
  }

  .menu a:hover::after {
    width: 100%;
  }

  .menu-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
  }

  .mobile-menu {
    display: none;
    padding: 0 0 18px;
  }

  .mobile-menu .card {
    padding: 14px;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #22312a;
  }

  .mobile-menu a:hover {
    background: #f2f6f3;
  }

  .hero {
    padding: 54px 0 42px;
  }

  .hero-wrap {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 10% 10%, rgba(216, 179, 106, .20), transparent 28%),
      radial-gradient(circle at 90% 10%, rgba(42, 165, 108, .16), transparent 24%),
      linear-gradient(135deg, #08271b 0%, #0f5132 45%, #11452d 100%);
    border-radius: 32px;
    padding: 58px;
    box-shadow: var(--shadow);
    color: #fff;
  }

  .hero-wrap::before {
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(216, 179, 106, .22), transparent 65%);
    pointer-events: none;
  }

  .hero-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 90%);
    pointer-events: none;
  }

  .hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, .82);
    max-width: 680px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
  }

  .hero-point {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #e7f6ed;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
  }

  .hero-visual {
    display: grid;
    gap: 18px;
    align-content: start;
  }

  .hero-panel {
    position: relative;
    padding: 24px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .hero-stat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
  }

  .hero-mini {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
  }

  .hero-mini strong {
    font-size: 28px;
    display: block;
    margin-bottom: 2px;
  }

  .hero-mini span {
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
  }

  .google-proof {
    margin-top: 22px;
  }

  .google-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .google-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffd166;
    box-shadow: 0 0 0 6px rgba(255, 209, 102, .12);
  }

  .google-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .google-proof-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
  }

  .google-proof-item strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
  }

  .google-proof-item span {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
  }

  .trust {
    margin-top: 28px;
  }

  .trust-bar {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
  }

  .trust-card {
    padding: 22px 24px;
  }

  .review-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }

  .pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f8f5;
    color: var(--green-800);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--border);
  }

  .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
  }

  .section-head .subtitle {
    max-width: 640px;
    margin: 0;
  }

  .feature-card {
    padding: 26px;
    height: 100%;
  }

  .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eff8f2, #ffffff);
    border: 1px solid var(--border);
    color: var(--green-800);
    margin-bottom: 18px;
    font-size: 24px;
  }

  .feature-card h3,
  .service-card h3,
  .testimonial h3,
  .faq-item h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .feature-card p,
  .service-card p,
  .testimonial p {
    margin: 0;
    color: var(--muted);
  }

  .service-card {
    padding: 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .service-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(42, 165, 108, .12), transparent 70%);
    pointer-events: none;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--green-700);
    font-weight: 700;
  }

  .app-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
  }

  .app-showcase {
    padding: 24px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background:
      radial-gradient(circle at top left, rgba(216, 179, 106, .18), transparent 24%),
      linear-gradient(180deg, #f8fcf9, #edf7f1);
  }

  .phone {
    width: min(100%, 300px);
    margin: 0 auto;
    background: #0d1812;
    border-radius: 34px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(9, 38, 27, .18);
    border: 1px solid rgba(9, 38, 27, .18);
  }

  .phone-screen {
    background: linear-gradient(180deg, #ffffff, #f5fbf7);
    border-radius: 24px;
    min-height: 490px;
    padding: 18px;
    position: relative;
    overflow: hidden;
  }

  .app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 13px;
    color: #526159;
    font-weight: 700;
  }

  .app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .app-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    min-height: 96px;
  }

  .app-box strong {
    display: block;
    margin-bottom: 6px;
    color: var(--green-800);
  }

  .app-note {
    margin-top: 14px;
    background: linear-gradient(135deg, #0f5132, #17633f);
    color: #fff;
    border-radius: 18px;
    padding: 18px;
  }

  .app-content .list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
  }

  .list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }

  .list-item .dot {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #edf7f1;
    color: var(--green-800);
    font-weight: 800;
  }

  .numbers-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .number-card {
    padding: 24px;
    text-align: center;
  }

  .number-card strong {
    display: block;
    font-size: 38px;
    line-height: 1;
    color: var(--green-800);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }

  .number-card span {
    color: var(--muted);
    font-weight: 600;
  }

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

  .step {
    padding: 24px;
    position: relative;
    overflow: hidden;
  }

  .step-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #edf7f1;
    color: var(--green-800);
    font-weight: 800;
    margin-bottom: 16px;
  }

  .step p {
    margin: 0;
    color: var(--muted);
  }

  .google-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .google-rating-card,
  .google-about-card {
    padding: 28px;
  }

  .google-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
  }

  .google-header p {
    margin: 4px 0 0;
    color: var(--muted);
  }

  .google-logo-mini {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  }

  .google-score-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
  }

  .google-score {
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
    color: var(--green-800);
    letter-spacing: -0.04em;
  }

  .google-stars {
    color: #d6a847;
    font-size: 22px;
    letter-spacing: 2px;
  }

  .google-meta {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
  }

  .google-info-list {
    display: grid;
    gap: 12px;
    color: var(--muted);
  }

  .google-about-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 24px;
  }

  .google-about-card p {
    color: var(--muted);
    margin-bottom: 18px;
  }

  .google-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .google-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f3f8f5;
    border: 1px solid var(--border);
    color: var(--green-800);
    font-size: 13px;
    font-weight: 700;
  }

  .testimonial {
    padding: 26px;
    height: 100%;
  }

  .stars {
    color: #d6a847;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .testimonial footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--green-800);
    font-weight: 700;
    background: none;
    padding-inline: 0;
    padding-bottom: 0;
  }

  .faq {
    display: grid;
    gap: 14px;
  }

  .faq-item {
    overflow: hidden;
  }

  .faq-button {
    width: 100%;
    background: #fff;
    border: none;
    padding: 22px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: inherit;
    cursor: pointer;
  }

  .faq-button span:last-child {
    font-size: 24px;
    color: var(--green-700);
    transition: .2s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
  }

  .faq-answer p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
  }

  .faq-item.active .faq-button span:last-child {
    transform: rotate(45deg);
  }

  .faq-item.active .faq-answer {
    max-height: 220px;
  }

  .cta-wrap {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background:
      radial-gradient(circle at right top, rgba(216, 179, 106, .24), transparent 26%),
      linear-gradient(135deg, #0a2f21, #0f5132 55%, #15633f);
    color: #fff;
  }

  .cta-wrap p {
    color: rgba(255, 255, 255, .82);
    max-width: 720px;
  }

  .site-footer {
    padding: 32px 0 50px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .8fr;
    gap: 20px;
  }

  .footer-card {
    padding: 24px;
    height: 100%;
  }

  .footer-card p,
  .footer-card li {
    color: var(--muted);
  }

  .footer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    flex-wrap: wrap;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f2f7f3;
    border: 1px solid var(--border);
    color: var(--green-800);
    font-size: 13px;
    font-weight: 700;
  }

  .floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(37, 211, 102, .32);
  }

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

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  @media (max-width: 1080px) {

    .grid-2,
    .trust-bar,
    .app-wrap,
    .footer-grid,
    .google-section-grid {
      grid-template-columns: 1fr;
    }

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

    .grid-4,
    .numbers-wrap,
    .process {
      grid-template-columns: 1fr 1fr;
    }

    .hero-wrap {
      padding: 34px;
    }

    .google-proof-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 820px) {

    .menu,
    .menu-actions .btn {
      display: none;
    }

    .menu-toggle {
      display: inline-flex;
    }

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

    .hero {
      padding-top: 26px;
    }

    .hero-wrap {
      padding: 26px;
      border-radius: 24px;
    }

    .section {
      padding: 72px 0;
    }

    .section-head {
      display: block;
    }

    .grid-3,
    .grid-4,
    .numbers-wrap,
    .process,
    .google-proof-grid {
      grid-template-columns: 1fr;
    }

    .title {
      font-size: 38px;
    }

    .hero p,
    .subtitle {
      font-size: 16px;
    }

    .floating-whatsapp {
      padding: 14px;
      border-radius: 18px;
    }

    .floating-whatsapp span:last-child {
      display: none;
    }

    .google-score-wrap {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  .brand-logo {
    height: 190px;

  }

  .btn-client {
    background: rgba(15, 47, 42, 0.06);
    color: #0f2f2a;
    border: 1px solid rgba(15, 47, 42, 0.14);
  }
  
  .btn-client:hover {
    background: rgba(15, 47, 42, 0.1);
    border-color: rgba(15, 47, 42, 0.22);
  }