/* FiT48 — shared site styles */
:root {
  --blue: #0089ba;
  --blue-dark: #005f82;
  --black: #000000;
  --white: #fcfcfc;
  --green-light: #5fb563;
  --green-mid: #4a9051;
  --green-dark: #346c40;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--white);
  background: #001821;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(95, 181, 99, 0.3); color: var(--white); }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease-out-quart);
  opacity: 0; transform: translateY(-10px); pointer-events: none;
}
.nav.visible {
  opacity: 1; transform: translateY(0); pointer-events: all;
  background: rgba(0, 24, 33, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 137, 186, 0.1);
}
.nav.always-on { opacity: 1; transform: translateY(0); pointer-events: all;
  background: rgba(0, 24, 33, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 137, 186, 0.1); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--green-light); text-decoration: none; letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(252, 252, 252, 0.7); text-decoration: none;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--green-light);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.2rem; border-radius: 50px;
  background: var(--green-mid); color: var(--white);
  font-size: 0.8rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s ease; border: none;
}
.nav-cta:hover { background: var(--green-light); transform: translateY(-1px); }

/* HERO (home) */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  filter: brightness(0.45) saturate(0.9);
  transform: scale(1); animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 137, 186, 0.25) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0, 24, 33, 0.2) 0%, rgba(0, 24, 33, 0.5) 60%, rgba(0, 24, 33, 0.95) 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem 1.5rem 6rem; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.4rem; border: 1px solid rgba(95, 181, 99, 0.35);
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-light);
  margin-bottom: 2rem; backdrop-filter: blur(12px); background: rgba(95, 181, 99, 0.06);
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light); box-shadow: 0 0 8px var(--green-light);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 600; line-height: 1.1;
  margin-bottom: 1.4rem; color: var(--white); letter-spacing: -0.02em;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--green-light); font-weight: 500; }
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem); font-weight: 300; line-height: 1.8;
  color: rgba(252, 252, 252, 0.75); max-width: 520px; margin: 0 auto 2.6rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out-expo) 0.6s forwards;
}
.hero-cta-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out-expo) 0.8s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.4s var(--ease-out-expo);
  cursor: pointer; border: none; line-height: 1; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); color: var(--white);
  box-shadow: 0 4px 24px rgba(74, 144, 81, 0.3), 0 0 0 1px rgba(95, 181, 99, 0.2);
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(95, 181, 99, 0.4), 0 0 0 1px rgba(95, 181, 99, 0.3);
}
.btn-outline {
  background: rgba(252, 252, 252, 0.03); color: var(--white);
  border: 1.5px solid rgba(252, 252, 252, 0.25); backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(252, 252, 252, 0.6); background: rgba(252, 252, 252, 0.08); transform: translateY(-3px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; position: relative; z-index: 1; }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(252, 252, 252, 0.4);
}
.scroll-hint svg { width: 20px; height: 20px; color: rgba(252, 252, 252, 0.4); animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* SECTIONS */
section { padding: 7rem 1.5rem; position: relative; }
.container { max-width: 1040px; margin: 0 auto; }
.container-wide { max-width: 1180px; margin: 0 auto; }

.section-header { margin-bottom: 4rem; max-width: 600px; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--green-light); opacity: 0.6; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 600; line-height: 1.2; color: var(--white); letter-spacing: -0.01em;
  text-wrap: pretty;
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ABOUT */
.about { background: linear-gradient(180deg, #001821 0%, #002a3a 50%, #003447 100%); position: relative; overflow: hidden; }
.about::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 137, 186, 0.08) 0%, transparent 70%); pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { font-size: 1.05rem; font-weight: 300; line-height: 1.9; color: rgba(252, 252, 252, 0.75); margin-bottom: 1.4rem; }
.about-text p strong { color: var(--green-light); font-weight: 500; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: rgba(0, 137, 186, 0.06); border: 1px solid rgba(0, 137, 186, 0.12);
  border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
  transition: all 0.5s var(--ease-out-expo); position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-mid), transparent);
  opacity: 0; transition: opacity 0.5s ease;
}
.stat-card:hover { border-color: rgba(95, 181, 99, 0.25); transform: translateY(-4px); background: rgba(0, 137, 186, 0.1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
.stat-card:hover::before { opacity: 1; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--green-light); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat-label { font-size: 0.8rem; font-weight: 500; color: rgba(252, 252, 252, 0.55); letter-spacing: 0.02em; line-height: 1.4; }

/* SERVICES grid */
.services { background: linear-gradient(180deg, #003447 0%, #00455e 100%); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.services-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.service-card {
  background: rgba(0, 24, 33, 0.4); border: 1px solid rgba(0, 137, 186, 0.1);
  border-radius: 24px; padding: 2.5rem 2rem;
  transition: all 0.5s var(--ease-out-expo); position: relative; overflow: hidden;
  backdrop-filter: blur(10px); text-decoration: none; color: inherit; display: block;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(95, 181, 99, 0.08), transparent 40%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light), var(--green-dark));
  opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover { border-color: rgba(95, 181, 99, 0.2); transform: translateY(-6px); background: rgba(0, 24, 33, 0.6); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(95, 181, 99, 0.12), rgba(95, 181, 99, 0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem; color: var(--green-light);
  border: 1px solid rgba(95, 181, 99, 0.15); transition: all 0.4s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
  background: linear-gradient(135deg, rgba(95, 181, 99, 0.2), rgba(95, 181, 99, 0.08));
  box-shadow: 0 8px 24px rgba(95, 181, 99, 0.15);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.8rem; color: var(--white); letter-spacing: -0.01em; }
.service-card p { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: rgba(252, 252, 252, 0.6); }
.service-card .more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.4rem; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-light); font-weight: 600;
}
.service-card .more svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.service-card:hover .more svg { transform: translateX(4px); }

/* WHY */
.why { background: linear-gradient(180deg, #00455e 0%, #005a7a 100%); text-align: center; position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 181, 99, 0.06) 0%, transparent 70%); pointer-events: none;
}
.why .section-header { margin-left: auto; margin-right: auto; }
.why .section-label { justify-content: center; }
.why .section-label::before { display: none; }
.why-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; position: relative; z-index: 1; }
.why-item {
  padding: 2rem 1rem; border-radius: 20px;
  background: rgba(0, 24, 33, 0.2); border: 1px solid rgba(0, 137, 186, 0.08);
  transition: all 0.4s var(--ease-out-expo);
}
.why-item:hover { transform: translateY(-4px); background: rgba(0, 24, 33, 0.35); border-color: rgba(95, 181, 99, 0.15); }
.why-icon { font-size: 2.2rem; margin-bottom: 1.2rem; display: block; filter: saturate(0.8); transition: transform 0.4s ease; }
.why-item:hover .why-icon { transform: scale(1.15); filter: saturate(1); }
.why-item h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--white); }
.why-item p { font-size: 0.85rem; font-weight: 300; color: rgba(252, 252, 252, 0.6); line-height: 1.65; }

/* LOCATION */
.location { background: linear-gradient(180deg, #005a7a 0%, #004d6b 100%); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; margin-top: 3rem; }
.location-info { padding-top: 1rem; }
.location-info h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 1.2rem; color: var(--white); }
.location-info p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: rgba(252, 252, 252, 0.75); margin-bottom: 2rem; }
.location-info .btn { font-size: 0.85rem; padding: 0.9rem 1.8rem; }
.map-wrapper {
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(0, 137, 186, 0.15);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 137, 186, 0.1);
  aspect-ratio: 4/3; position: relative; transition: transform 0.5s var(--ease-out-expo);
}
.map-wrapper:hover { transform: translateY(-4px); }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.7) contrast(1.1); }

/* CTA */
.cta {
  background: linear-gradient(135deg, #3d7a43 0%, #2d5e33 50%, #1e4526 100%);
  text-align: center; padding: 6rem 1.5rem; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(95, 181, 99, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(95, 181, 99, 0.1) 0%, transparent 50%);
}
.cta .container { position: relative; z-index: 1; }
.cta .section-title { margin-bottom: 1.2rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta p { font-size: 1.1rem; font-weight: 300; color: rgba(252, 252, 252, 0.85); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta .btn-whatsapp {
  background: var(--white); color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-size: 1rem; padding: 1.1rem 2.8rem; font-weight: 600;
}
.cta .btn-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.cta .btn-whatsapp svg { color: var(--green-mid); }

/* FOOTER */
footer { background: #00131a; border-top: 1px solid rgba(0, 137, 186, 0.08); padding: 4rem 1.5rem 2.5rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; max-width: 1180px; margin: 0 auto; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--green-light); margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.footer-brand p { font-size: 0.9rem; font-weight: 300; color: rgba(252, 252, 252, 0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(252, 252, 252, 0.35); margin-bottom: 1.2rem; }
.footer-col a {
  display: block; font-size: 0.9rem; font-weight: 400; color: rgba(252, 252, 252, 0.6);
  text-decoration: none; margin-bottom: 0.7rem; transition: all 0.3s ease;
  position: relative; width: fit-content;
}
.footer-col a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--green-light);
  transition: width 0.3s var(--ease-out-expo);
}
.footer-col a:hover { color: var(--green-light); }
.footer-col a:hover::after { width: 100%; }
.footer-bottom { max-width: 1180px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(0, 137, 186, 0.06); text-align: center; font-size: 0.8rem; color: rgba(252, 252, 252, 0.25); letter-spacing: 0.05em; }

.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 137, 186, 0.15), transparent); border: none; margin: 0; }

/* ============= SERVICE PAGE TEMPLATE ============= */
.page-hero {
  position: relative; padding: 10rem 1.5rem 5rem; overflow: hidden;
  background: linear-gradient(180deg, #001821 0%, #002a3a 100%);
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 137, 186, 0.12) 0%, transparent 70%); pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -40%; left: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 181, 99, 0.08) 0%, transparent 70%); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(252, 252, 252, 0.5);
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: rgba(252, 252, 252, 0.65); text-decoration: none; transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--green-light); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 600; line-height: 1.12;
  margin: 0 0 1.4rem; color: var(--white); letter-spacing: -0.02em;
  max-width: 820px; text-wrap: pretty;
}
.page-hero h1 em { font-style: italic; color: var(--green-light); font-weight: 500; }
.page-hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 300; line-height: 1.75;
  color: rgba(252, 252, 252, 0.8); max-width: 720px; margin-bottom: 2.4rem;
}
.page-hero .hero-cta-group { justify-content: flex-start; animation: none; opacity: 1; transform: none; }

/* meta strip */
.meta-strip {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem;
}
.meta-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.9rem; border-radius: 50px;
  border: 1px solid rgba(0, 137, 186, 0.25);
  background: rgba(0, 137, 186, 0.08);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(252, 252, 252, 0.85);
}
.meta-pill svg { width: 14px; height: 14px; color: var(--green-light); }

/* content section */
.content-section {
  background: linear-gradient(180deg, #002a3a 0%, #003447 100%);
  padding: 6rem 1.5rem;
}
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.content-grid .prose p { font-size: 1.02rem; font-weight: 300; line-height: 1.85; color: rgba(252, 252, 252, 0.78); margin-bottom: 1.2rem; }
.content-grid .prose p strong { color: var(--green-light); font-weight: 500; }
.content-grid .prose h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); margin: 2rem 0 1rem; letter-spacing: -0.01em; }
.content-grid .prose ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.content-grid .prose ul li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.7rem;
  font-size: 0.98rem; line-height: 1.7; color: rgba(252, 252, 252, 0.78); font-weight: 300;
}
.content-grid .prose ul li::before {
  content: ''; position: absolute; left: 0; top: 0.7rem;
  width: 8px; height: 1px; background: var(--green-light);
}
.content-grid .prose ul li strong { color: var(--white); font-weight: 500; }

.fact-card {
  position: sticky; top: 6rem;
  border-radius: 24px; padding: 2.2rem 2rem;
  background: rgba(0, 137, 186, 0.07); border: 1px solid rgba(0, 137, 186, 0.18);
  backdrop-filter: blur(10px);
}
.fact-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-light); margin-bottom: 1.2rem; letter-spacing: -0.01em; }
.fact-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.fact-list li {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(0, 137, 186, 0.12);
  font-size: 0.88rem; color: rgba(252, 252, 252, 0.85);
}
.fact-list li:last-child { border-bottom: 0; }
.fact-list li .lbl { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(95, 181, 99, 0.85); font-weight: 600; }
.fact-list li .val { font-weight: 400; line-height: 1.5; }

/* benefits grid */
.benefits {
  background: linear-gradient(180deg, #003447 0%, #00455e 100%);
  padding: 6rem 1.5rem;
}
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.benefit-card {
  background: rgba(0, 24, 33, 0.4); border: 1px solid rgba(0, 137, 186, 0.12);
  border-radius: 20px; padding: 2rem 1.8rem;
  transition: all 0.5s var(--ease-out-expo);
}
.benefit-card:hover { border-color: rgba(95, 181, 99, 0.22); transform: translateY(-4px); background: rgba(0, 24, 33, 0.6); }
.benefit-card .num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--green-light); margin-bottom: 0.8rem; letter-spacing: -0.02em;
  display: block;
}
.benefit-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--white); }
.benefit-card p { font-size: 0.92rem; font-weight: 300; line-height: 1.7; color: rgba(252, 252, 252, 0.65); }

/* process timeline */
.process { background: linear-gradient(180deg, #00455e 0%, #005a7a 100%); padding: 6rem 1.5rem; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; counter-reset: step; }
.process-step {
  position: relative; padding: 2.2rem 1.8rem;
  background: rgba(0, 24, 33, 0.3); border: 1px solid rgba(0, 137, 186, 0.12);
  border-radius: 20px;
}
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.18em;
  color: var(--green-light); display: block; margin-bottom: 1rem; font-weight: 600;
}
.process-step h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.7rem; color: var(--white); }
.process-step p { font-size: 0.92rem; font-weight: 300; line-height: 1.7; color: rgba(252, 252, 252, 0.65); }

/* FAQ */
.faq { background: linear-gradient(180deg, #005a7a 0%, #004d6b 100%); padding: 6rem 1.5rem; }
.faq-list { max-width: 820px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0, 137, 186, 0.18);
  padding: 1.6rem 0;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--white); letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-body); font-size: 1.4rem; font-weight: 300;
  color: var(--green-light); transition: transform 0.4s var(--ease-out-expo);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green-light); }
.faq-item p {
  margin-top: 1rem; font-size: 0.98rem; font-weight: 300; line-height: 1.8;
  color: rgba(252, 252, 252, 0.72);
}

/* related */
.related {
  background: linear-gradient(180deg, #004d6b 0%, #003447 100%);
  padding: 6rem 1.5rem;
}
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.related-card {
  background: rgba(0, 24, 33, 0.5); border: 1px solid rgba(0, 137, 186, 0.12);
  border-radius: 18px; padding: 1.6rem 1.4rem; text-decoration: none;
  transition: all 0.4s var(--ease-out-expo); display: block;
}
.related-card:hover { border-color: rgba(95, 181, 99, 0.25); transform: translateY(-4px); background: rgba(0, 24, 33, 0.75); }
.related-card .lbl {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-light); font-weight: 600; margin-bottom: 0.7rem; display: block;
}
.related-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; line-height: 1.3; }
.related-card p { font-size: 0.82rem; font-weight: 300; color: rgba(252, 252, 252, 0.55); line-height: 1.55; }

/* REVIEWS */
.reviews { background: linear-gradient(180deg, #004d6b 0%, #003d55 100%); text-align: center; }
.reviews-summary { font-size: 1.05rem; font-weight: 300; color: rgba(252, 252, 252, 0.7); margin-top: 1rem; }
.reviews-summary strong { color: var(--green-light); font-weight: 600; font-size: 1.2rem; }
.reviews-link { color: var(--green-light); text-decoration: none; font-weight: 500; transition: opacity 0.3s ease; }
.reviews-link:hover { opacity: 0.7; }
.reviews-track { display: flex; gap: 1.4rem; margin-top: 3rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; scrollbar-width: thin; scrollbar-color: rgba(0,137,186,0.3) transparent; }
.reviews-track::-webkit-scrollbar { height: 4px; }
.reviews-track::-webkit-scrollbar-thumb { background: rgba(0,137,186,0.3); border-radius: 2px; }
.review-card { flex: 0 0 300px; scroll-snap-align: start; background: rgba(0, 24, 33, 0.5); border: 1px solid rgba(0, 137, 186, 0.12); border-radius: 20px; padding: 2rem 1.6rem; text-align: left; transition: all 0.4s var(--ease-out-expo); }
.review-card:hover { border-color: rgba(95, 181, 99, 0.2); transform: translateY(-4px); }
.review-stars { color: #f5c518; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text { font-size: 0.92rem; font-weight: 300; line-height: 1.75; color: rgba(252, 252, 252, 0.75); font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: 0.78rem; font-weight: 500; color: rgba(252, 252, 252, 0.45); letter-spacing: 0.04em; }

/* WORKING HOURS */
.working-hours { margin: 1.5rem 0 2rem; padding: 1.2rem 1.4rem; background: rgba(0, 137, 186, 0.07); border: 1px solid rgba(0, 137, 186, 0.15); border-radius: 16px; }
.hours-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.8rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.35rem 0; font-size: 0.9rem; font-weight: 300; color: rgba(252, 252, 252, 0.7); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid, .services-grid.cols-5 { grid-template-columns: 1fr 1fr; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
  .nav-links { display: none; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fact-card { position: static; }
  .benefits-grid, .process-list { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 5rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-wrapper { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { padding: 1.5rem 1.25rem 5rem; }
  .nav { padding: 1rem 1.25rem; }
  .page-hero { padding: 8rem 1.25rem 4rem; }
  .content-section, .benefits, .process, .faq, .related { padding: 4.5rem 1.25rem; }
}
@media (max-width: 540px) {
  .services-grid, .services-grid.cols-5 { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; gap: 1rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; padding: 1.05rem 1.5rem; }
  .about-stats { gap: 0.8rem; }
  .stat-card { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2rem; }
  .service-card { padding: 2rem 1.5rem; }
  .map-wrapper { aspect-ratio: 4/3; }
  .cta { padding: 4.5rem 1.25rem; }
  .benefits-grid, .process-list, .related-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 260px; }
  .page-hero .hero-cta-group { align-items: stretch; }
}
