:root {
  --green: #2f6b4f;
  --green-dark: #214c38;
  --blue: #1f4e79;
  --blue-dark: #12314d;
  --cream: #f4e8d0;
  --cream-light: #fbf7ee;
  --gold: #c9a24a;
  --white: #ffffff;
  --ink: #17221c;
  --muted: #637167;
  --line: rgba(23, 34, 28, 0.12);
  --shadow: 0 24px 60px rgba(18, 49, 77, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

button, input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99;
}

.skip-link:focus {
  left: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 230px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #355044;
  font-size: 0.95rem;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 107, 79, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.btn-full {
  width: 100%;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 28%, rgba(201, 162, 74, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(18, 49, 77, 0.86), rgba(18, 49, 77, 0.62) 42%, rgba(18, 49, 77, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 90px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.eyebrow.dark {
  color: var(--green);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 780px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section-cream {
  background: var(--cream-light);
}

.section-blue {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.light h2 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p:not(.eyebrow),
.copy-block p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-blue .section-heading p:not(.eyebrow),
.section-blue .copy-block p,
.light p {
  color: rgba(255, 255, 255, 0.78);
}

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

.stat-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(23, 34, 28, 0.08);
}

.stat-card.accent {
  background: var(--green);
  color: var(--white);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.stat-card.accent .stat-label,
.stat-card.accent p {
  color: rgba(255, 255, 255, 0.76);
}

.stat-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.stat-card.accent strong {
  color: var(--white);
}

.stat-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.copy-block {
  position: sticky;
  top: 110px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 49, 77, 0.08);
}

.feature-card .icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 14px;
}

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

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.audience-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #374a3f;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 500px;
  border: 10px solid var(--white);
}

.map-card iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

.media-highlight {
  max-width: 900px;
  margin: 0 auto 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blue-dark);
}

.media-highlight video {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 12px 28px rgba(18, 49, 77, 0.12);
  background: #ddd;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cream), #fff9ee);
  border: 1px solid rgba(201, 162, 74, 0.34);
  box-shadow: 0 18px 44px rgba(18, 49, 77, 0.1);
}

.cta-band h2 {
  max-width: 700px;
}

.cta-band p {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 0;
}

.credibility-layout {
  align-items: center;
}

.credibility-cards {
  display: grid;
  gap: 14px;
}

.credibility-cards article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.credibility-cards span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.credibility-cards strong {
  font-size: 1.32rem;
}

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

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--cream-light);
  color: var(--blue-dark);
  font-weight: 800;
}

.lead-form {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lead-form h3 {
  font-size: 1.55rem;
  color: var(--blue-dark);
}

.lead-form label:not(.checkbox) {
  display: block;
  margin: 16px 0 8px;
  font-weight: 900;
  color: #334c3f;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.12);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox input {
  margin-top: 4px;
  accent-color: var(--green);
}

.form-note,
.form-feedback {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-feedback {
  font-weight: 800;
  color: var(--green);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  box-shadow: 0 10px 26px rgba(18, 49, 77, 0.07);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  color: var(--blue-dark);
}

.faq-list p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0 26px;
  background: #102b20;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  width: 210px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 900;
}

.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 28px;
  padding-top: 22px;
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: #052f15;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.36);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: min(88vh, 900px);
  width: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: #111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

  .hero {
    min-height: 660px;
  }

  .stats-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .copy-block {
    position: static;
  }

  .contact-layout {
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 180px;
    max-height: 62px;
  }

  .header-inner .btn {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 49, 77, 0.72), rgba(18, 49, 77, 0.74)), radial-gradient(circle at 20% 10%, rgba(201, 162, 74, 0.25), transparent 30%);
  }

  .hero-content {
    padding: 72px 0 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-actions,
  .cta-band,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section {
    padding: 68px 0;
  }

  .stats-grid,
  .feature-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .map-card,
  .map-card iframe {
    min-height: 380px;
    height: 380px;
  }

  .lead-form,
  .cta-band {
    padding: 24px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
