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

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

body {
  margin: 0;
  background-color: #e3f7ec;
  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%;
  text-decoration: none;
}

.logo-group:hover,
.logo-group:focus,
.logo-group:active {
  text-decoration: none;
}

.logo-img {
  height: 60px;
  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;
  position: relative;
  padding-top: 0.5rem;
}

.logo-description::before {
  content: "ACCERT CONSULT";
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.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);
  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-metrics {
  margin-top: 1.6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(230, 251, 240, 0.92));
  border: 1px solid rgba(29, 143, 57, 0.22);
  box-shadow: 0 18px 36px rgba(29, 143, 57, 0.14);
}

.hero-metrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 143, 57, 0.2), rgba(29, 143, 57, 0.75), rgba(29, 143, 57, 0.2));
}

.hero-metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(29, 143, 57, 0.07), transparent 60%);
  pointer-events: none;
}

.metrics-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(29, 143, 57, 0.22);
  box-shadow: 0 12px 20px rgba(29, 143, 57, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mini-card::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(29, 143, 57, 0.6);
  box-shadow: 0 0 0 4px rgba(29, 143, 57, 0.12);
}

.metric-value {
  margin: 0 0 0.2rem;
  font-weight: 700;
  color: #0f2b1e;
  letter-spacing: 0.04rem;
}

.metric-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

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

.hero-panel .panel-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(230, 251, 240, 0.9));
  border: 1px solid rgba(29, 143, 57, 0.22);
  box-shadow: 0 18px 36px rgba(29, 143, 57, 0.14);
}

.hero-panel .panel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 143, 57, 0.2), rgba(29, 143, 57, 0.75), rgba(29, 143, 57, 0.2));
}

.hero-panel .panel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(29, 143, 57, 0.08), transparent 55%);
  pointer-events: none;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  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;
  margin: 0 0 0.6rem;
}

.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: 2rem;
  margin-bottom: 0.5rem;
}

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

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

.system-intelligence {
  margin: 0 2rem 4rem;
  padding: 3rem 2rem;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(125, 201, 118, 0.15));
  border: 1px solid rgba(29, 143, 57, 0.35);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3), 0 25px 50px rgba(20, 80, 34, 0.15);
}

.system-intelligence .section-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  justify-content: center;
  column-gap: 2%;
  row-gap: 2rem;
}

.intelligence-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 252, 244, 0.9));
  border-radius: 22px;
  padding: 1.7rem 1.6rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid rgba(29, 143, 57, 0.16);
  box-shadow: 0 16px 32px rgba(20, 80, 34, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  grid-column: span 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.intelligence-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 143, 57, 0.15), rgba(29, 143, 57, 0.6), rgba(29, 143, 57, 0.15));
}

.intelligence-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(20, 80, 34, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.intelligence-grid article:nth-child(5) {
  grid-column: 2 / span 2;
}

.intelligence-grid h3 {
  font-size: 1rem;
  margin: 0;
  color: #175b2a;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  position: relative;
  padding-left: 1.1rem;
}

.intelligence-grid h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #1d8f39;
  box-shadow: 0 0 0 3px rgba(29, 143, 57, 0.15);
}

.intelligence-grid p {
  margin: 0;
  color: #1f2c1d;
  line-height: 1.65;
}

.intelligence-footer {
  margin-top: 2rem;
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(233, 252, 240, 0.92));
  padding: 1.9rem 2rem 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(29, 143, 57, 0.2);
  box-shadow: 0 18px 32px rgba(20, 80, 34, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.intelligence-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(29, 143, 57, 0.8), rgba(29, 143, 57, 0.25));
}

.intelligence-footer .footer-label {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.75rem;
  color: #1d8f39;
}

.intelligence-footer .footer-text {
  margin: 0;
  color: #193321;
  line-height: 1.7;
  font-size: 1rem;
}

.frentes {
  margin: 0 2rem 3rem;
  padding: 3rem 2.5rem;
  border-radius: 26px;
  border: 1px solid rgba(18, 88, 45, 0.25);
  background: linear-gradient(145deg, rgba(236, 255, 248, 0.95), rgba(210, 242, 224, 0.7));
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.45), 0 25px 40px rgba(20, 64, 36, 0.12);
}

.frentes-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  justify-content: center;
  column-gap: 2.4%;
  row-gap: 2.2rem;
  margin-top: 2.2rem;
}

.frente-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 252, 244, 0.9));
  border-radius: 30px;
  padding: 2.3rem 1.85rem;
  border: 1.5px solid rgba(18, 88, 45, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 230px;
  box-shadow: 0 16px 32px rgba(20, 64, 36, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
}

.frentes-grid .frente-card:nth-child(5) {
  grid-column: 3 / span 2;
}

.frente-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px rgba(18, 88, 45, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.frente-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 143, 57, 0.15), rgba(29, 143, 57, 0.6), rgba(29, 143, 57, 0.15));
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  border: 1.8px solid rgba(29, 143, 57, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c2f1a;
  background: #f6fffa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.card-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
}

.frente-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #0f2b1e;
  position: relative;
  padding-left: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}

.frente-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #1d8f39;
  box-shadow: 0 0 0 3px rgba(29, 143, 57, 0.15);
}

.service-subtitle {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.65rem;
  color: #1e5a3b;
}

.service-body {
  margin: 0;
  color: #1f2c1d;
  line-height: 1.65;
  font-size: 0.95rem;
}

.service-highlight {
  margin: 0;
  color: #20652f;
  font-weight: 700;
  line-height: 1.4;
}

.service-link {
  margin-top: auto;
  align-self: stretch;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid rgba(29, 143, 57, 0.55);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.6rem;
  line-height: 1.3;
  color: #1f3b22;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.service-link:hover {
  background: #1f3b22;
  color: #f1ffd0;
  transform: translateY(-2px);
}

.card-subtitle {
  margin: 0;
  color: #2c4f3b;
  font-weight: 600;
  line-height: 1.4;
}


.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-highlights {
  margin-top: 1.6rem;
}

.highlight-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

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

.fullcare-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.fullcare-cards > * {
  height: 100%;
}

.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-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(6, 35, 11, 0.28);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  z-index: 2;
  opacity: 0.8;
}

.carousel-arrow.prev {
  left: 6px;
}

.carousel-arrow.next {
  right: 6px;
}

.carousel-arrow:hover {
  background: rgba(6, 35, 11, 0.45);
  transform: translateY(-50%) scale(1.04);
  opacity: 1;
}

.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);
}


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

.panel-card.fullcare-card {
  border-color: rgba(29, 143, 57, 0.22);
}

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

.stats-card {
  padding: 1.2rem 1.4rem;
}

.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-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.contact {
  margin: 0 2.5rem 3rem;
  padding: 2.5rem;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(29, 143, 57, 0.25);
}

.contact-notice {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(29, 143, 57, 0.35);
  background: rgba(74, 183, 92, 0.08);
  color: var(--accent-strong);
  font-weight: 600;
}

.contact-notice.error {
  border-color: rgba(224, 38, 47, 0.5);
  background: rgba(224, 38, 47, 0.08);
  color: var(--accent-red);
}

.contact-notice:empty {
  display: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact input,
.contact textarea {
  border-radius: 12px;
  border: 1px solid rgba(29, 143, 57, 0.3);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: #f9fff7;
}

.contact textarea {
  min-height: 120px;
  resize: vertical;
}

.contact button {
  width: fit-content;
}

.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: linear-gradient(120deg, #0b3f32, #031f20 60%, #041626);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8f9f4;
}

.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(248, 249, 244, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-column a {
  color: #8adbb3;
}

.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;
  }

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

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

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

@media (max-width: 1200px) {
  .frentes-grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 3%;
    row-gap: 1.6rem;
  }

  .frentes-grid .frente-card:nth-child(5) {
    grid-column: auto;
  }

  .intelligence-grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 3%;
    row-gap: 1.6rem;
  }

  .intelligence-grid article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .frentes-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4%;
    row-gap: 1.4rem;
  }

  .frentes-grid .frente-card:nth-child(5) {
    grid-column: auto;
  }

  .intelligence-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4%;
    row-gap: 1.4rem;
  }

  .intelligence-grid article:nth-child(5) {
    grid-column: auto;
  }

  .fullcare-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .frentes-grid {
    grid-template-columns: 100%;
    row-gap: 1.2rem;
  }

  .frentes-grid .frente-card:nth-child(5) {
    grid-column: auto;
  }

  .intelligence-grid {
    grid-template-columns: 100%;
    row-gap: 1.2rem;
  }

  .intelligence-grid article:nth-child(5) {
    grid-column: auto;
  }
}
