:root {
  --navy: #081b33;
  --navy-2: #102b4c;
  --green: #0f8a5f;
  --green-dark: #0a6d4b;
  --gold: #c79a36;
  --black: #111827;
  --white: #ffffff;
  --muted: #667085;
  --light: #f5f7fa;
  --border: #dbe3ea;
  --shadow: 0 24px 60px rgba(8, 27, 51, 0.14);
  --radius: 22px;
}

* {
  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(--black);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.narrow {
  width: min(900px, calc(100% - 32px));
}

.section {
  padding: 86px 0;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  transition: top 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 227, 234, 0.85);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 24px rgba(15, 138, 95, 0.28);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(15, 138, 95, 0.20), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eff7f3 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 27, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 27, 51, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
  min-height: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.55rem;
}

h4 {
  font-size: 1.2rem;
}

.hero-subtitle,
.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #344054;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(15, 138, 95, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary.light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 27, 51, 0.07);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.88rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 227, 234, 0.96);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(199, 154, 54, 0.34), transparent 70%);
}

.card-badge {
  display: inline-flex;
  background: rgba(199, 154, 54, 0.16);
  color: #7b5a16;
  border: 1px solid rgba(199, 154, 54, 0.28);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 22px;
}

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

.check-list li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid rgba(219, 227, 234, 0.7);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 138, 95, 0.12);
  color: var(--green);
  font-weight: 900;
}

.mini-contact {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.mini-contact a {
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: rgba(15, 138, 95, 0.5);
}

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

.problem {
  background: var(--navy);
}

.problem h2,
.problem .problem-list p {
  color: var(--white);
}

.problem .eyebrow {
  color: #75d3b2;
}

.problem-list {
  display: grid;
  gap: 16px;
}

.problem-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 18px;
}

.problem-list span {
  color: var(--gold);
  font-weight: 900;
}

.problem-list p {
  margin: 0;
}

.solution-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #f7fbf9, #ffffff);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 10px);
  padding: 44px;
  box-shadow: 0 18px 50px rgba(8, 27, 51, 0.08);
}

.solution-copy p:not(.eyebrow) {
  color: #344054;
  font-size: 1.08rem;
}

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

.metrics div {
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}

.metrics strong {
  display: block;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 8px;
  font-size: 0.9rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid,
.why-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.why-grid div,
.trust-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(8, 27, 51, 0.06);
}

.service-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 138, 95, 0.35);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(15, 138, 95, 0.1);
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.service-card p,
.why-grid p,
.trust-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.letter-section {
  background:
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.sales-letter {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 60px);
}

.sales-letter p,
.sales-letter li {
  font-size: 1.05rem;
  color: #344054;
}

.sales-letter h3 {
  margin-top: 42px;
}

.sales-letter blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 5px solid var(--gold);
  background: #fffbf2;
  color: var(--navy);
  font-weight: 800;
  border-radius: 0 18px 18px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: #fbfcfd;
}

.price-card.featured {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 18px 42px rgba(8, 27, 51, 0.2);
}

.price-card.featured h4,
.price-card.featured p,
.price-card.featured li {
  color: var(--white);
}

.price {
  color: var(--green) !important;
  font-size: 1.55rem !important;
  font-weight: 950;
  margin: 0 0 10px;
}

.price-card.featured .price {
  color: #94f3ce !important;
}

.letter-cta {
  margin-top: 38px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  color: var(--white);
}

.letter-cta h3,
.letter-cta p {
  color: var(--white);
}

.signature {
  color: var(--navy) !important;
  font-weight: 900;
  margin-top: 34px;
}

.why-us {
  background: #f8fafc;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.cta-section {
  background: linear-gradient(135deg, var(--navy), #07111f);
  color: var(--white);
}

.cta-box {
  text-align: center;
  max-width: 850px;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box .eyebrow {
  color: #8ff0ce;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.confidentiality {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f7fbf9;
  color: var(--navy);
  border: 1px solid rgba(15, 138, 95, 0.18);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  background: var(--green);
  color: var(--white);
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(15, 138, 95, 0.32);
}

.footer {
  background: #061427;
  color: rgba(255, 255, 255, 0.84);
  padding: 58px 0 24px;
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 42px;
}

.copyright {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 22px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .solution-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

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

  .pricing-grid,
  .why-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(8, 27, 51, 0.12);
  }

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

  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }

  .brand-text small {
    display: none;
  }

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

  .btn {
    width: 100%;
  }

  .hero-card,
  .solution-box,
  .sales-letter {
    padding: 24px;
  }

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

  .problem-list div {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
