:root {
  --bg-main: #f2f5f4;
  --bg-soft: #ebf1ee;
  --surface: #ffffff;
  --text: #1a2530;
  --muted: #5e6a74;
  --accent: #1f9b6d;
  --accent-dark: #14734f;
  --line: #dde5e2;
  --shadow: 0 14px 35px rgba(9, 24, 24, 0.08);
  --radius: 14px;
  --max-width: 1160px;
  --font-heading: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, #ffffff 0%, #f6f8f7 34%, transparent 65%),
    linear-gradient(180deg, #f7f9f8 0%, var(--bg-main) 100%);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
  color: var(--text);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4.8rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7faf8 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.6rem;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow.accent {
  color: var(--accent-dark);
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.header-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(12, 25, 33, 0.08);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-image {
  display: block;
  width: auto;
  height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.main-nav a {
  position: relative;
  font-weight: 600;
  color: #40505a;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2f3c45;
}

.home-hero {
  position: relative;
  padding: 7.2rem 0 6.2rem;
  background-image:
    linear-gradient(115deg, rgba(8, 18, 26, 0.72), rgba(8, 18, 26, 0.43)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
}

.home-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.home-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.72rem 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #31b57f);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 155, 109, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.btn-outline {
  border-color: #bdcbc5;
  color: #2f414d;
  background: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  border-color: #93a79f;
  background: rgba(255, 255, 255, 0.9);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.14);
}

.intro-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.product-card,
.info-card,
.stat-card,
.map-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(9, 24, 24, 0.13);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-content {
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
}

.product-content h3 {
  margin: 0;
  font-size: 1.1rem;
}

.product-content p {
  margin: 0;
}

.price {
  margin-top: auto;
  font-weight: 800;
  color: var(--accent-dark);
}

.product-tag {
  align-self: flex-start;
  background: #e7f5ee;
  color: #1c7552;
  border: 1px solid #cbe7da;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.benefits-grid .info-card,
.services-grid .info-card,
.contact-cards .info-card,
.mission-grid .info-card {
  padding: 1.3rem;
}

.info-card h3,
.stat-card h3 {
  margin-top: 0.75rem;
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e4f4ec;
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.cta-strip {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.cta-wrap {
  background: linear-gradient(135deg, #f0f7f3, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 5%, #ddf4e9 0%, transparent 37%),
    linear-gradient(180deg, #f8fbfa 0%, #f1f5f3 100%);
  padding: 4.9rem 0 3.1rem;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  max-width: 780px;
}

.page-hero p {
  max-width: 680px;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.category-list li {
  background: var(--surface);
  border: 1px solid #cfe2da;
  color: #2f5546;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  font-size: 0.86rem;
}

.product-grid {
  margin-top: 1rem;
}

.intro-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.35rem;
  align-items: center;
}

.check-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #3c4f59;
}

.check-list i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stats-grid .stat-card {
  padding: 1.35rem;
}

.stats-grid h3 {
  color: var(--accent-dark);
  margin-bottom: 0.4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-form {
  margin-top: 1rem;
  padding: 1.3rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #2e3f4b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font: inherit;
  border-radius: 10px;
  border: 1px solid #ccd9d5;
  background: #ffffff;
  color: var(--text);
  padding: 0.66rem 0.75rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 155, 109, 0.15);
}

.form-status {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.map-card {
  padding: 1.3rem;
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
  margin: 0.7rem 0 1rem;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links h3 {
  margin: 0;
  margin-right: 0.2rem;
  font-size: 1rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #c9dbd4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #295542;
  transition: all 0.2s ease;
}

.social-links a:hover {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.legal-wrap {
  display: grid;
  gap: 1rem;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.legal-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.policy-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.policy-list li {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.last-updated {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px solid #c8ddd3;
  border-radius: 999px;
  color: #2f5647;
  background: #eaf6f0;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-footer {
  margin-top: 2rem;
  background: #16232d;
  color: #d6e1e7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.3rem;
  padding: 2.2rem 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.3rem 0.45rem;
}

.footer-logo .logo-image {
  height: 56px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #d6e1e7;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(214, 225, 231, 0.2);
  padding: 0.9rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: #bfd0d8;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: -105%;
    width: min(340px, 84%);
    height: calc(100vh - 72px);
    padding: 1.55rem;
    border-left: 1px solid var(--line);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: -20px 0 40px rgba(10, 23, 32, 0.1);
    transition: right 0.25s ease;
  }

  .main-nav.is-open {
    right: 0;
  }

  .four,
  .three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.8rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .logo-image {
    height: 40px;
  }

  .footer-logo .logo-image {
    height: 48px;
  }

  .home-hero {
    padding: 5.8rem 0 4.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .four,
  .three,
  .two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    width: 100%;
  }

  .category-list {
    margin-bottom: 1rem;
  }

  .cta-wrap {
    padding: 1.4rem;
  }

  .page-hero {
    padding: 4.2rem 0 2.6rem;
  }
}
