:root {
  --primary: #0e8f83;
  --primary-dark: #0a6e65;
  --secondary: #7bc6b9;
  --accent-peach: #f6b38e;
  --accent-yellow: #f4c95d;
  --accent-coral: #ee7c6b;
  --bg-light: #f7fcfa;
  --surface: #ffffff;
  --soft-mint: #e9f7f4;
  --text-dark: #15312d;
  --text-muted: #5c746e;
  --border: #ddece8;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 10px 26px rgba(18, 72, 65, 0.08);
  --shadow-md: 0 18px 40px rgba(18, 72, 65, 0.13);
  --gradient-main: linear-gradient(135deg, #d4f2eb 0%, #fdf6f1 55%, #f9f2cf 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "Outfit", "Segoe UI", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--primary);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  min-height: 48px;
  padding: 0.72rem 1.35rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #8cd1c7;
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(14, 143, 131, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--soft-mint);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(247, 252, 250, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(221, 236, 232, 0.9);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 1.2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 800;
  color: var(--text-dark);
}

.logo img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.logo small {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.1rem;
}

.primary-nav a {
  color: var(--text-muted);
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--primary-dark);
}

.primary-nav .btn-primary,
.primary-nav .btn-primary:hover {
  color: #fff;
}

.primary-nav .btn-outline,
.primary-nav .btn-outline:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.3rem 0 4.8rem;
  background: var(--gradient-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-copy p {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-media {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.hero-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0.95rem;
  min-width: 160px;
}

.floating-card strong {
  display: block;
  color: var(--text-dark);
}

.floating-card.one {
  left: -36px;
  top: 35px;
}

.floating-card.two {
  right: -24px;
  bottom: 42px;
}

.stats-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.stats-inline div {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}

.stats-inline strong {
  display: block;
  font-size: 1.12rem;
  color: var(--primary-dark);
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}

.trust-item {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--soft-mint);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.card img {
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  background: var(--soft-mint);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.checklist {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.7rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.3rem 1rem;
}

.metric-card strong {
  display: block;
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  color: var(--primary-dark);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline .card {
  position: relative;
  overflow: hidden;
}

.timeline .card span {
  display: inline-flex;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.2rem;
}

.testimonial footer {
  margin-top: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1rem 1rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-content {
  padding: 1rem;
}

.tag {
  display: inline-flex;
  font-size: 0.76rem;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.2rem 0.58rem;
  background: var(--soft-mint);
  color: var(--primary-dark);
}

.cta-band {
  background: linear-gradient(135deg, #dcf7f1 0%, #fef7e7 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.page-hero {
  padding: 3.3rem 0;
  background: linear-gradient(135deg, #e5f6f2 0%, #fdf4ec 70%);
}

.breadcrumb {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--text-muted);
  font-weight: 600;
}

.services-stack {
  display: grid;
  gap: 1rem;
}

.service-detail {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.service-detail ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.service-showcase {
  display: grid;
  gap: 1.2rem;
}

.service-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-feature img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.service-feature-content {
  padding: 1.4rem;
}

.service-pill {
  display: inline-flex;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  background: var(--soft-mint);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.service-feature-content p {
  margin-bottom: 0.8rem;
}

.service-feature-content ul {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.service-feature:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.service-feature:nth-child(even) .service-media {
  order: 2;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 1.2rem;
}

.sidebar-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
}

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
}

.tag-filter span {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.32rem 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tag-filter .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

form {
  display: grid;
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 46px;
  padding: 0.68rem 0.8rem;
  font: inherit;
  color: var(--text-dark);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: #b43f31;
  font-size: 0.86rem;
  min-height: 1rem;
}

.checkbox-wrap {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.checkbox-wrap input {
  width: auto;
  min-height: auto;
  margin-top: 0.3rem;
}

.success-message {
  display: none;
  border-radius: var(--radius-md);
  border: 1px solid #9fd8cc;
  background: #ecfaf6;
  color: #114a40;
  padding: 0.9rem;
  font-weight: 600;
}

.success-message.show {
  display: block;
}

.legal-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 1.6rem;
}

.site-footer {
  background: #123a35;
  color: #d8efea;
  margin-top: 4rem;
}

.footer-top {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: 1.2rem;
}

.site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #d8efea;
}

.site-footer label {
  color: #e6f7f3;
}

.site-footer .btn-primary,
.site-footer .btn-primary:hover {
  color: #fff;
}

.site-footer .btn-outline {
  color: #0f4039;
  background: #f4fffc;
  border-color: #9ecdc4;
}

.site-footer .btn-outline:hover {
  background: #dff3ee;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 0 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .blog-layout,
  .service-feature,
  .service-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-feature:nth-child(even) .service-media {
    order: 0;
  }

  .cards-grid,
  .testimonials,
  .metric-cards,
  .timeline,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .logo img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: 79px 1rem auto 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .primary-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .cards-grid,
  .testimonials,
  .metric-cards,
  .timeline,
  .blog-grid,
  .trust-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .floating-card {
    position: static;
    margin-top: 0.8rem;
  }

  .stats-inline {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
