@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --dark: #132033;
  --navy: #17283f;
  --green: #2f7d46;
  --green2: #eaf6ee;
  --gray: #f6f8fa;
  --line: #e5e7eb;
  --soft-line: #edf1f5;
  --text: #334155;
  --muted: #64748b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: #d9f5df;
  color: var(--dark);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.045em;
}

.logo span {
  color: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  color: #26364b;
  transition: 0.18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 22px;
}

/* HERO */

.hero,
.page-hero {
  background: linear-gradient(120deg, #132033, #1e3655);
  color: #fff;
}

.hero {
  padding: 92px 0;
}

.page-hero {
  padding: 82px 0;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #9de5b2;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  max-width: 920px;
  font-weight: 650;
}

.hero p,
.page-hero p {
  margin: 0;
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* BUTTON */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: 0.18s ease;
}

.btn.primary {
  background: var(--green);
  color: #fff;
}

.btn.primary:hover {
  background: #27693b;
}

.btn.secondary {
  background: #fff;
  color: var(--dark);
}

.btn.outline {
  border-color: var(--line);
  color: var(--dark);
  background: #fff;
}

/* PANELS */

.hero-panel,
.feature-box {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}

.hero-panel h3,
.feature-box h3 {
  margin: 0 0 12px;
  font-size: 23px;
  color: var(--dark);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.hero-panel ul {
  margin: 0;
  padding-left: 19px;
  color: var(--text);
}

.feature-box {
  background: var(--green2);
}

/* TRUST */

.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.trust-grid div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  display: block;
  color: var(--dark);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
}

/* SECTIONS */

.section {
  padding: 86px 0;
}

.section.light {
  background: var(--gray);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section h2 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.section p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 600;
}

/* CARDS */

.cards,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.faq-item,
.contact-card,
.blog-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  padding: 30px;
}

.card h3,
.faq-item h3,
.blog-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.card p,
.faq-item p,
.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.contact-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item a {
  color: var(--green);
  font-weight: 600;
}

/* CTA */

.cta {
  padding: 62px 0;
  background: var(--navy);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.cta p {
  margin: 0;
  color: #dbeafe;
}

/* FOOTER */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin: 0 0 10px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.footer p,
.footer a {
  color: #cbd5e1;
  margin: 0 0 7px;
  display: block;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 22px;
  padding-top: 18px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* BLOG ARTICLE */

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.article {
  max-width: 860px;
}

.article h2 {
  font-size: 30px;
  margin-top: 34px;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.article ul {
  color: var(--muted);
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 600;
  border: 0;
  font-size: 14.5px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav.active {
    display: flex;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    height: 68px;
  }

  .nav {
    top: 68px;
  }

  .logo {
    font-size: 20px;
  }

  .hero,
  .page-hero {
    padding: 62px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
    letter-spacing: -0.055em;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.75;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 31px;
  }

  .card,
  .faq-item,
  .contact-card,
  .blog-card,
  .hero-panel,
  .feature-box {
    padding: 24px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 15px;
  }
}