:root {
  --bg: #f7fff3;
  --surface: #ffffff;
  --accent: #1d8f39;
  --accent-strong: #7fd440;
  --accent-red: #e0262f;
  --text-primary: #06230b;
  --text-muted: #506256;
  --border: rgba(29, 143, 57, 0.25);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f4fff5, #e3f4e6 60%);
  color: var(--text-primary);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(4, 18, 28, 0.9), rgba(29, 143, 57, 0.3));
  color: #e6f5ee;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-description {
  flex: 1;
  margin: 0.35rem 0 0;
  color: rgba(230, 245, 238, 0.85);
  line-height: 1.4;
  font-size: 0.95rem;
  text-align: center;
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.site-nav.header-menu {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
  justify-content: center;
}

.site-nav.header-menu a {
  color: #e6f5ee;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

.site-nav a {
  color: #e6f5ee;
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.btn {
  border: 1px solid transparent;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #04120c;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: #04120c;
}

.btn-outline {
  border-color: rgba(127, 212, 64, 0.7);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.btn-ghost {
  border-color: transparent;
  color: var(--text-muted);
  padding: 0.35rem 1rem;
}

.site-header .btn-ghost {
  color: #e6f5ee;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero {
  padding: 4rem 2rem 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: linear-gradient(135deg, rgba(29, 143, 57, 0.06), rgba(255, 255, 255, 0.98));
  margin: 1rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(29, 143, 57, 0.35);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.blog-hero {
  margin: 2.5rem;
  padding: 3.5rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(4, 18, 28, 0.85), rgba(29, 143, 57, 0.4));
  color: #e6f5ee;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.blog-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-shell .blog-hero,
.blog-shell .content-block {
  margin: 0;
  width: 100%;
}

.blog-hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 1.75rem;
  color: #06230b;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  max-width: 360px;
}

.blog-featured .featured-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.featured-grid article {
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #f7fff3, #e2f3e6);
  border: 1px solid rgba(29, 143, 57, 0.25);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-tag {
  font-size: 0.75rem;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0;
}

.blog-list .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.article-card {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-card figure {
  margin: 0;
}

.article-card img {
  width: 100%;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
}

.article-card h3 {
  margin: 0;
}

.blog-detail-hero {
  margin: 2.5rem;
  padding: 3rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(29, 143, 57, 0.1), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(29, 143, 57, 0.25);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail-hero h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.blog-meta {
  margin: 0.15rem 0 1rem;
  color: var(--text-muted);
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.article-body {
  margin: 0 2.5rem 3rem;
  padding: 2rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.article-body article {
  line-height: 1.7;
  color: var(--text-muted);
}

.article-sidebar {
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(29, 143, 57, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(29, 143, 57, 0.35);
}

.article-sidebar h3 {
  margin-top: 0;
}

.article-sidebar ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-sidebar li {
  margin-bottom: 0.5rem;
}

.blog-pubdate {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: var(--text-muted);
}

.blog-cta {
  margin: 0 2.5rem 3rem;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(29, 143, 57, 0.4), rgba(4, 18, 28, 0.85));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sinistra-hero {
  padding: 4rem 2.5rem;
  margin: 2.5rem;
  border-radius: 26px;
  background: radial-gradient(circle at top, rgba(29, 143, 57, 0.25), rgba(0, 0, 0, 0.8));
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.sinistra-hero-content p {
  color: rgba(255, 255, 255, 0.9);
}

.sinistra-hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 1.75rem;
  color: #06230b;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

.sinistra-hero-card .panel-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-bottom: 0.5rem;
}

.sinistra-hero-card .panel-value {
  font-size: 1.2rem;
}

.sinistra-hero-card .panel-meta {
  margin-top: 0.5rem;
  color: rgba(6, 35, 11, 0.65);
}

.content-block {
  margin: 0 2.5rem 3rem;
  padding: 2.5rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.sinistra-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.sinistra-stats div {
  padding: 1.25rem;
  border: 1px solid rgba(29, 143, 57, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(29, 143, 57, 0.08), rgba(255, 255, 255, 0.95));
}

.sinistra-steps .section-heading {
  text-align: left;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.steps-grid article {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #f4fff5, #e4f2e8);
  min-height: 160px;
}

.sinistra-testimonials {
  text-align: center;
  background: #06230b;
  color: #e6f5ee;
}

.sinistra-testimonials p {
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonials-grid article {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sinistra-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  background: linear-gradient(135deg, rgba(29, 143, 57, 0.4), rgba(4, 18, 28, 0.85));
  color: #fff;
  margin: 0 2.5rem 3rem;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sinistra-cta .section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sinistra-cta p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  color: var(--accent-strong);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  color: var(--text-muted);
}

.hero-ctas {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-illustration {
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(29, 143, 57, 0.12), transparent 55%);
}

.hero-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(29, 143, 57, 0.25);
  box-shadow: 0 15px 30px rgba(29, 143, 57, 0.12);
}

.panel-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.panel-value {
  font-weight: 600;
  margin: 0.4rem 0;
}

.panel-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem;
}

.about-card {
  padding: 2rem;
  border: 1px solid rgba(29, 143, 57, 0.3);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.about-card h2,
.about-card h3 {
  margin-top: 0;
  font-size: 1.6rem;
}

.about-card ul {
  padding-left: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 640px;
}

.services {
  margin: 0 2rem 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.service-grid article {
  padding: 1.75rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(29, 143, 57, 0.22);
  box-shadow: 0 20px 30px rgba(23, 90, 46, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 230px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px rgba(23, 90, 46, 0.18);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(29, 143, 57, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.service-body {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.service-highlight {
  margin: 0;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.service-link {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.service-link:hover {
  text-decoration: underline;
}

.fullcare {
  margin: 0 2rem 3rem;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(29, 143, 57, 0.04));
  border: 1px solid rgba(29, 143, 57, 0.3);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.fullcare ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.fullcare-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fullcare-carousel {
  position: relative;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.15);
}

.fullcare-carousel img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--accent);
}

.mobile-preview {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(29, 143, 57, 0.2);
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.mobile-label {
  font-size: 0.75rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.mobile-preview img {
  width: 132px;
  height: auto;
  border-radius: 22px;
  display: block;
  margin: 0 auto 0.75rem;
}

.mobile-copy {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.fullcare-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-card.fullcare-card {
  border-color: rgba(224, 38, 47, 0.45);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.stat-value {
  margin: 0.4rem 0 0;
  font-weight: 600;
}

.contact {
  margin: 0 2rem 4rem;
  padding-bottom: 2rem;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.contact-grid h3 {
  margin-bottom: 0.3rem;
}

.contact-grid a {
  color: var(--accent-strong);
  text-decoration: none;
}

.site-footer {
  margin-top: auto;
  padding: 2.5rem 2rem 2.25rem;
  background: radial-gradient(circle at top left, rgba(127, 212, 64, 0.12), rgba(4, 18, 28, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6f5ee;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.85rem;
  margin: 0;
  color: var(--accent-strong);
}

.footer-column p {
  margin: 0;
  color: rgba(230, 245, 238, 0.9);
}

.footer-column a {
  color: var(--accent-strong);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-divider {
  margin: 2rem 0 1.5rem;
  border-top: 1px solid rgba(230, 245, 238, 0.2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  display: inline-flex;
  margin-top: 0;
  color: var(--accent-strong);
}

.back-to-top:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    gap: 0.8rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    margin: 1rem;
  }

  .fullcare {
    margin: 1rem;
  }

  .services,
  .contact {
    margin: 0 1rem 3rem;
  }
}
