:root {
  --navy: #0a1e3c;
  --green: #2f8a3a;
  --green-dark: #22722f;
  --green-soft: #eaf6ec;
  --teal: #006d77;
  --teal-dark: #00545c;
  --teal-soft: #e8f4f5;
  --ink: #1a202c;
  --slate: #4a5568;
  --line: #d9e8dd;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 30, 60, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.has-shadow {
  box-shadow: 0 10px 26px rgba(10, 30, 60, 0.08);
}

.nav-wrap {
  width: min(1440px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand img {
  width: 60px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.nav-more {
  position: relative;
}

.nav-more-toggle {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--navy);
  padding: 10px 2px;
  font: inherit;
  cursor: pointer;
}

.nav-more-toggle:hover,
.nav-more-toggle.is-active,
.nav-more.is-open .nav-more-toggle {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: 230px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-more.is-open .nav-more-menu {
  display: grid;
}

.nav-more-menu a {
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 5px;
}

.nav-more-menu a:hover,
.nav-more-menu a.is-active {
  border-bottom: 0;
  background: var(--teal-soft);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(10, 30, 60, 0.98) 0%, rgba(10, 30, 60, 0.9) 44%, rgba(10, 30, 60, 0.66) 70%, rgba(47, 138, 58, 0.48) 100%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.13), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% 52%;
  z-index: 1;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(-9deg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1100ms ease, transform 6500ms ease;
}

.hero-bg img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg img:nth-child(1) {
  object-position: center center;
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr);
  gap: 0;
  align-items: center;
  padding: 54px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow {
  color: #bfe8c5;
}

h1,
h2,
h3 {
  font-family: Montserrat, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  max-width: 900px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  max-width: 720px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}


.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 0.94rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

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

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

section {
  padding: 86px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--teal-soft), #f8fcfb);
}

.section-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

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

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

.section-head p {
  color: var(--slate);
  margin: 0;
}

.section-dark .section-head p,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(10, 30, 60, 0.05);
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--slate);
  margin: 0;
}

.service-card {
  position: relative;
  min-height: 190px;
}

.service-card::before {
  content: attr(data-icon);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 20px;
}

.stat {
  padding: 28px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.section-dark .list li {
  color: rgba(255, 255, 255, 0.78);
}

.process {
  counter-reset: step;
}

.process .card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.quote {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

.quote cite {
  display: block;
  color: var(--slate);
  font-style: normal;
  font-size: 1rem;
  margin-top: 18px;
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(10, 30, 60, 0.97), rgba(47, 138, 58, 0.72)),
    var(--navy);
  color: var(--white);
  padding: 88px 0 76px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 1000px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 860px;
  font-size: 1.12rem;
}

.content-band {
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 46px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 104px;
}

.contact-panel {
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.88rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #c9ddd0;
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form-grid textarea {
  min-height: 118px;
  resize: vertical;
}

.form-honey {
  position: absolute;
  left: -9999px;
}

.form-grid button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.notice {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
}

.notice-error {
  background: #fff1f1;
  color: #9f1d1d;
}

.footer-cta {
  background: var(--teal);
  color: var(--white);
  padding: 38px 0;
}

.footer-cta .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.footer-cta h2 {
  color: var(--white);
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.site-footer {
  background: #07152b;
  color: rgba(255, 255, 255, 0.74);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-arrow {
  color: #25d366;
  font-weight: 900;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact p {
  margin: 0;
}

.footer-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  fill: #25d366;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(10, 30, 60, 0.22);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.blog-card small {
  display: block;
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 14px;
}

@media (max-width: 1320px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    transform: none;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    align-items: stretch;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    white-space: normal;
  }
  .nav-more {
    display: contents;
  }

  .nav-more-toggle {
    display: none;
  }

  .nav-more-menu {
    position: static;
    display: contents;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }


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

@media (max-width: 680px) {
  .brand img {
    width: 58px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 16px 0 48px;
  }

  section,
  .content-band {
    padding: 58px 0;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process .card {
    grid-template-columns: 1fr;
  }

  .footer-cta .section-inner {
    align-items: flex-start;
  }
}
