:root {
  --navy: #08263b;
  --navy-2: #0b334d;
  --blue: #0879b9;
  --cyan: #24b4cc;
  --teal: #0d8f87;
  --orange: #ef7b32;
  --cream: #f5f1e8;
  --paper: #fbfcfd;
  --ink: #12212b;
  --muted: #5e6c76;
  --line: #dbe4e9;
  --white: #fff;
  --success: #177a55;
  --shadow-sm: 0 8px 28px rgba(6, 36, 55, .10);
  --shadow-lg: 0 28px 80px rgba(6, 36, 55, .18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(36, 180, 204, .55); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #70dce4; }
h1, h2, h3 { margin: 0 0 .55em; line-height: 1.08; letter-spacing: -.03em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1em; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.28rem); line-height: 1.7; }
.section-dark .lead { color: rgba(255,255,255,.74); }
.max-copy { max-width: 720px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(8, 38, 59, .22); }
.btn-primary { background: var(--orange); color: #1f130c; }
.btn-primary:hover { background: #ff914c; }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-outline { background: transparent; color: currentColor; border-color: currentColor; }
.btn-lg { min-height: 60px; padding: 16px 26px; font-size: 1.06rem; }
.btn-block { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(251, 252, 253, .92);
  border-bottom: 1px solid rgba(219, 228, 233, .8);
  backdrop-filter: blur(18px);
}
.site-header.header-overlay {
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgba(2, 18, 29, .74), rgba(2,18,29,0));
  border: 0;
  color: var(--white);
  backdrop-filter: none;
}
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 950; letter-spacing: -.025em; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(8, 121, 185, .25);
}
.brand-mark svg { width: 27px; height: 27px; }
.brand-copy { line-height: 1; }
.brand-copy small { display: block; margin-top: 5px; font-size: .63rem; letter-spacing: .19em; opacity: .68; }
.desktop-nav { display: flex; align-items: center; gap: 7px; }
.desktop-nav a { padding: 10px 13px; border-radius: 999px; text-decoration: none; font-weight: 760; font-size: .94rem; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { background: rgba(8, 121, 185, .09); }
.header-overlay .desktop-nav a:hover { background: rgba(255,255,255,.14); }
.header-cta { min-height: 44px; padding: 10px 17px; }
.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  z-index: 99;
  top: var(--header-height);
  left: 0;
  right: 0;
  padding: 12px 18px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.mobile-menu a { display: block; padding: 14px 12px; border-radius: 12px; color: var(--navy); text-decoration: none; font-weight: 800; }
.mobile-menu a:hover { background: #eef7fa; }

/* Homepage split chooser */
.split-page { min-height: 100svh; background: var(--navy); }
.split-chooser { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; }
.split-choice {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
  text-decoration: none;
  transition: flex .45s ease, filter .45s ease;
}
.split-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--choice-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  transition: transform .7s ease;
}
.split-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(4, 24, 37, .93) 0%, rgba(4,24,37,.3) 55%, rgba(4,24,37,.18) 100%);
  transition: background .35s ease;
}
.split-choice:hover::before { transform: scale(1.06); }
.split-choice:hover::after { background: linear-gradient(to top, rgba(4, 24, 37, .94), rgba(8, 121, 185, .18)); }
.choice-content { width: 100%; padding: 120px clamp(26px, 5vw, 78px) clamp(52px, 8vw, 92px); }
.choice-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.choice-kicker::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
.choice-title { max-width: 620px; font-size: clamp(2.6rem, 5vw, 5.5rem); margin-bottom: 14px; }
.choice-description { max-width: 510px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.45vw, 1.2rem); }
.choice-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.choice-meta span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(6, 31, 47, .34); backdrop-filter: blur(8px); font-weight: 800; font-size: .88rem; }
.choice-arrow { width: 58px; height: 58px; display: grid; place-items: center; margin-top: 28px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; transition: transform .2s, background .2s; }
.split-choice:hover .choice-arrow { transform: translateX(8px); background: var(--white); color: var(--navy); }
.split-question {
  position: absolute;
  z-index: 4;
  top: 95px;
  left: 50%;
  width: min(92%, 760px);
  transform: translateX(-50%);
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(4, 26, 40, .62);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.38rem);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.split-footer {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 16px;
  display: flex;
  gap: 14px;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
}
.split-footer a { text-decoration: none; }

/* Inner pages */
.page-hero {
  position: relative;
  min-height: min(760px, 84svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center/cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 27, 42, .96) 0%, rgba(4,27,42,.78) 48%, rgba(4,27,42,.18) 100%);
}
.hero-inner { padding: 150px 0 74px; }
.hero-copy { max-width: 760px; }
.hero-copy p { max-width: 650px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-badges span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); font-weight: 850; }
.breadcrumbs { margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: .9rem; }
.breadcrumbs a { text-decoration: none; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8,38,59,.055);
}
.card h3 { margin-top: 16px; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eaf8fa;
  color: var(--teal);
}
.card-icon svg { width: 27px; height: 27px; }
.media-card { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--navy); }
.media-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.media-card figcaption { padding: 16px 20px; color: rgba(255,255,255,.72); font-size: .9rem; }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.stat { padding: 24px; background: var(--white); }
.stat strong { display: block; color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.3rem); line-height: 1.1; }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-weight: 720; }

.process-list { counter-reset: step; display: grid; gap: 18px; }
.process-step { position: relative; padding: 22px 22px 22px 86px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { margin: 0; color: var(--muted); }

.check-list { display: grid; gap: 13px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: #dbf5ed; color: var(--success); font-size: .83rem; font-weight: 950; }
.notice { padding: 20px 22px; border-left: 5px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: #fff5ed; color: #4a2d1d; }
.notice strong { display: block; margin-bottom: 4px; }

.price-box { padding: clamp(28px, 4vw, 46px); border-radius: var(--radius-lg); background: linear-gradient(140deg, var(--navy), var(--navy-2)); color: var(--white); box-shadow: var(--shadow-lg); }
.price-box .price { margin: 14px 0 8px; font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 950; line-height: 1; letter-spacing: -.05em; }
.price-box .price small { font-size: .28em; letter-spacing: 0; }
.price-box p { color: rgba(255,255,255,.72); }
.estimator { margin-top: 26px; }
.estimator-row { display: flex; gap: 10px; }
.estimator input { min-width: 0; flex: 1; min-height: 54px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.26); border-radius: 14px; background: rgba(255,255,255,.1); color: var(--white); }
.estimator input::placeholder { color: rgba(255,255,255,.56); }
.estimate-output { min-height: 55px; margin-top: 14px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.09); color: rgba(255,255,255,.82); }

.service-card { display: flex; flex-direction: column; min-height: 100%; }
.service-card .btn { margin-top: auto; align-self: flex-start; }
.service-tag { display: inline-flex; align-self: flex-start; margin-bottom: 15px; padding: 6px 10px; border-radius: 999px; background: #eaf8fa; color: var(--teal); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.faq-list { display: grid; gap: 12px; }
details.faq { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
details.faq summary { position: relative; padding: 20px 56px 20px 20px; cursor: pointer; list-style: none; font-weight: 850; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #eaf3f7; color: var(--navy); font-size: 1.2rem; }
details.faq[open] summary::after { content: "−"; }
details.faq .faq-answer { padding: 0 20px 20px; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: clamp(28px, 5vw, 54px); border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--navy), #0b4f69); color: var(--white); overflow: hidden; }
.cta-panel p { max-width: 680px; color: rgba(255,255,255,.72); }
.cta-panel .actions { margin: 0; justify-content: flex-end; }

/* Forms */
.form-shell { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #cbd8df;
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(36,180,204,.13); outline: none; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 3px; flex: 0 0 auto; }
.contact-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .card-icon { width: 44px; height: 44px; border-radius: 13px; }
.contact-row strong { display: block; }
.contact-row a { text-decoration: none; }

/* Footer */
.site-footer { padding: 58px 0 24px; background: #051b2a; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 46px; }
.footer-copy { max-width: 430px; color: rgba(255,255,255,.62); }
.footer-title { margin-bottom: 14px; font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.48); }
.footer-links { display: grid; gap: 9px; }
.footer-links a, .footer-links button { padding: 0; border: 0; background: none; color: rgba(255,255,255,.74); text-align: left; text-decoration: none; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .84rem; }

/* Floating actions */
.floating-actions { position: fixed; z-index: 80; right: 18px; bottom: 18px; display: grid; gap: 10px; }
.float-btn { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: var(--white); text-decoration: none; box-shadow: 0 12px 28px rgba(0,0,0,.22); transition: transform .18s; }
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-call { background: var(--blue); }
.float-whatsapp { background: #19a867; }
.float-btn .icon { width: 25px; height: 25px; }

/* Cookie consent */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: min(100% - 36px, 980px);
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: #071f30;
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}
.cookie-banner[hidden], .cookie-modal[hidden], .cookie-backdrop[hidden] { display: none !important; }
.cookie-banner-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cookie-banner h2 { margin-bottom: 7px; font-size: 1.25rem; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.68); font-size: .93rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-actions .btn { min-height: 44px; padding: 10px 15px; font-size: .88rem; }
.cookie-backdrop { position: fixed; z-index: 1001; inset: 0; background: rgba(2, 13, 21, .7); backdrop-filter: blur(6px); }
.cookie-modal {
  position: fixed;
  z-index: 1002;
  left: 50%;
  top: 50%;
  width: min(calc(100% - 28px), 650px);
  max-height: min(820px, calc(100svh - 28px));
  overflow: auto;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 100px rgba(0,0,0,.34);
}
.cookie-modal-head { display: flex; justify-content: space-between; gap: 20px; padding: 24px; border-bottom: 1px solid var(--line); }
.cookie-modal-head h2 { margin: 0; font-size: 1.45rem; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; }
.cookie-modal-body { padding: 24px; }
.cookie-category { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cookie-category:last-child { border-bottom: 0; }
.cookie-category h3 { margin: 0 0 4px; font-size: 1rem; }
.cookie-category p { margin: 0; color: var(--muted); font-size: .88rem; }
.switch { position: relative; width: 52px; height: 30px; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #aebbc2; cursor: pointer; transition: .2s; }
.switch span::after { content: ""; position: absolute; width: 22px; height: 22px; left: 4px; top: 4px; border-radius: 50%; background: var(--white); transition: .2s; box-shadow: 0 2px 8px rgba(0,0,0,.22); }
.switch input:checked + span { background: var(--teal); }
.switch input:checked + span::after { transform: translateX(22px); }
.switch input:disabled + span { opacity: .68; cursor: not-allowed; }
.cookie-modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 20px 24px; border-top: 1px solid var(--line); }

.legal-copy { max-width: 840px; }
.legal-copy h2 { margin-top: 1.5em; font-size: 1.7rem; }
.legal-copy h3 { margin-top: 1.4em; font-size: 1.18rem; }
.legal-copy ul { padding-left: 22px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #eef5f7; }
tr:last-child td { border-bottom: 0; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .site-header.header-overlay .menu-button { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.1); color: var(--white); }
  .grid-3, .cards { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 48px 0; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy small { display: none; }
  .header-cta { display: none; }
  .split-chooser { grid-template-columns: 1fr; }
  .split-choice { min-height: 50svh; }
  .split-question { position: fixed; top: 82px; width: calc(100% - 28px); font-size: .96rem; }
  .choice-content { padding: 150px 24px 34px; }
  .choice-title { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .choice-description { font-size: .98rem; }
  .choice-arrow { width: 49px; height: 49px; margin-top: 18px; }
  .split-footer { display: none; }
  .page-hero { min-height: 720px; }
  .page-hero::after { background: linear-gradient(to top, rgba(4,27,42,.96) 0%, rgba(4,27,42,.72) 60%, rgba(4,27,42,.24)); }
  .hero-inner { padding: 128px 0 50px; }
  .grid-2, .grid-3, .cards { grid-template-columns: 1fr; }
  .grid-2 { gap: 34px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .process-step { padding: 20px 18px 20px 74px; }
  .process-step::before { left: 16px; top: 19px; width: 42px; height: 42px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 18px; }
  .cookie-actions { justify-content: flex-start; }
  .cookie-actions .btn { flex: 1 1 auto; }
  .cookie-modal-foot { flex-wrap: wrap; }
  .cookie-modal-foot .btn { flex: 1 1 180px; }
  .floating-actions { bottom: 14px; right: 14px; }
  .float-btn { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .choice-meta { gap: 7px; }
  .choice-meta span { font-size: .78rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .actions .btn { width: 100%; }
  .estimator-row { flex-direction: column; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; width: calc(100% - 20px); padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .btn:first-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========================================================
   OPTIMIZARE V2 — imagini vizibile, selector compact, WhatsApp
   ========================================================= */

/* Imaginile din selector sunt elemente reale, nu fundaluri ascunse. */
.split-page {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}
.split-chooser {
  height: 100svh;
  min-height: 100svh;
}
.split-choice {
  height: 100svh;
  min-height: 100svh;
}
.choice-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .7s ease;
}
.split-choice-manual .choice-image { object-position: 62% 50%; }
.split-choice-mechanized .choice-image { object-position: 50% 50%; }
.split-choice::before { display: none; }
.split-choice::after {
  z-index: 1;
  background: linear-gradient(to top, rgba(3, 22, 34, .94) 0%, rgba(3, 22, 34, .42) 54%, rgba(3, 22, 34, .12) 100%);
}
.split-choice:hover .choice-image { transform: scale(1.045); }
.choice-content {
  position: relative;
  z-index: 2;
}

/* Hero interior: fotografia este vizibilă imediat și are dimensiune controlată. */
.detail-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 180, 204, .15), transparent 30%),
    linear-gradient(135deg, #061e30, var(--navy));
  color: var(--white);
}
.detail-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 82px);
}
.detail-hero-copy { min-width: 0; }
.detail-hero-copy .eyebrow { color: #71dce5; }
.detail-hero-copy h1 { font-size: clamp(2.7rem, 5.5vw, 5.3rem); }
.detail-hero-copy p {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.72;
}
.detail-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: #061a28;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
}
.detail-hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.detail-hero-media-manual img { object-position: 50% 51%; }
.detail-hero-media-mechanized img { object-position: 50% 50%; }
.detail-hero-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background: rgba(3, 22, 34, .78);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  backdrop-filter: blur(12px);
}

/* Fotografia secundară nu mai ocupă aproape tot ecranul pe telefon. */
.media-card-compact {
  width: 100%;
  max-width: 590px;
  margin: 0 auto;
}
.media-card-compact img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 51%;
}
.media-card-compact figcaption { padding: 13px 17px; }

.form-help {
  margin: 10px 4px 0;
  color: var(--muted);
  text-align: center;
  font-size: .86rem;
  line-height: 1.45;
}
.field input:invalid:not(:placeholder-shown),
.field select:invalid:focus {
  border-color: #ba3a3a;
}

@media (max-width: 760px) {
  /* Exact ca selectorul din exemplu: ambele opțiuni se văd simultan. */
  .split-chooser {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100svh;
    min-height: 100svh;
  }
  .split-choice {
    height: 100svh;
    min-height: 100svh;
  }
  .split-question {
    position: absolute;
    top: 82px;
    width: calc(100% - 22px);
    padding: 11px 12px;
    font-size: .9rem;
  }
  .choice-content {
    padding: 142px 10px 24px;
  }
  .choice-kicker,
  .choice-description { display: none; }
  .choice-title {
    margin-bottom: 12px;
    font-size: clamp(1.34rem, 7vw, 1.95rem);
    line-height: .98;
    letter-spacing: -.055em;
    text-transform: uppercase;
  }
  .choice-meta {
    display: grid;
    gap: 6px;
    margin-top: 0;
  }
  .choice-meta span {
    width: 100%;
    padding: 6px 7px;
    border-radius: 11px;
    font-size: clamp(.62rem, 2.7vw, .75rem);
    line-height: 1.2;
    text-align: center;
  }
  .split-choice-manual .meta-diameter,
  .split-choice-mechanized .meta-offer { display: none; }
  .choice-arrow {
    width: 43px;
    height: 43px;
    margin-top: 12px;
  }
  .choice-arrow .icon { width: 19px; height: 19px; }
  .split-choice-manual .choice-image { object-position: 64% 50%; }
  .split-choice-mechanized .choice-image { object-position: 50% 50%; }
  .split-choice::after {
    background: linear-gradient(to top, rgba(3, 22, 34, .95) 0%, rgba(3, 22, 34, .40) 58%, rgba(3, 22, 34, .16) 100%);
  }

  .detail-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 14px 44px;
  }
  .detail-hero-media {
    order: -1;
    border-radius: 22px;
  }
  .detail-hero-media img {
    height: 285px;
  }
  .detail-hero-media-manual img { object-position: 50% 50%; }
  .detail-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .detail-hero-copy p { font-size: 1rem; line-height: 1.62; }
  .detail-hero-copy .actions .btn { width: 100%; }
  .detail-hero-media figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: .74rem;
  }
  .media-card-compact img { aspect-ratio: 16 / 9; }
}

@media (max-width: 390px) {
  .choice-content { padding-inline: 8px; padding-bottom: 18px; }
  .choice-title { font-size: 1.28rem; }
  .choice-meta span { font-size: .62rem; }
  .choice-arrow { width: 39px; height: 39px; }
  .detail-hero-media img { height: 250px; }
}

@media (max-height: 650px) and (max-width: 760px) {
  .split-question { top: 74px; }
  .choice-content { padding-top: 118px; padding-bottom: 12px; }
  .choice-arrow { margin-top: 8px; }
  .choice-meta .meta-offer,
  .choice-meta .meta-diameter { display: none; }
}


/* =====================================================================
   OPTIMIZĂRI — mobil, viteză, lizibilitate
   Bloc adăugat la final: suprascrie regulile de mai sus.
   ===================================================================== */

/* Imaginile își păstrează locul înainte să se încarce (fără salt de conținut) */
.media-card-compact img { aspect-ratio: 16 / 10; }

/* Butoanele plutitoare: respectă zona sigură și nu se suprapun peste cookie-uri */
.floating-actions {
  bottom: calc(18px + env(safe-area-inset-bottom));
  right: calc(16px + env(safe-area-inset-right));
  transition: opacity .2s ease;
}
body:has(.cookie-banner:not([hidden])) .floating-actions { opacity: 0; visibility: hidden; }

@media (max-width: 760px) {
  /* Bannerul de cookie ocupa jumătate de ecran; acum e o bandă mică jos */
  .cookie-banner {
    left: 8px; right: 8px; bottom: 8px; width: auto;
    padding: 14px 14px 12px; border-radius: 18px;
    max-height: 60svh; overflow-y: auto;
  }
  .cookie-banner-inner { gap: 12px; }
  .cookie-banner h2 { margin-bottom: 4px; font-size: 1.02rem; }
  .cookie-banner p { font-size: .84rem; line-height: 1.45; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .cookie-actions .btn { min-height: 46px; padding: 9px 10px; font-size: .86rem; }
  .cookie-actions .btn:first-child { grid-column: 1 / -1; }

  /* Titlurile din selector rămân vizibile, nu mai stau lipite de marginea de jos */
  .split-choice { align-items: center; }
  .choice-content { padding: 92px 14px 76px; }
  .split-choice-manual .choice-image { object-position: 74% 46%; }
  .split-choice-mechanized .choice-image { object-position: 50% 42%; }
  .choice-title { letter-spacing: -.03em; }

  /* Mai puțin scroll: secțiunile erau foarte înalte pe telefon */
  .section { padding: 54px 0; }
  .section-sm { padding: 38px 0; }
  .site-footer { padding: 44px 0 calc(86px + env(safe-area-inset-bottom)); }

  /* Titlu mai potrivit pentru ecran mic */
  .detail-hero-copy h1 { font-size: clamp(2.05rem, 9.5vw, 2.9rem); }
  .detail-hero-copy p { font-size: .98rem; }
  .stat-strip .stat strong { font-size: 1.25rem; }
}

@media (max-width: 390px) {
  .choice-content { padding: 84px 8px 70px; }
}

/* Zone de atingere mai mari pe telefon (minim ~44px, cât recomandă Google) */
@media (max-width: 900px) {
  .site-footer a, .site-footer button,
  .footer-links a, .footer-bottom a, .footer-bottom button {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .breadcrumbs a { display: inline-flex; align-items: center; min-height: 40px; }
  main a:not(.btn):not(.brand):not(.choice-arrow) { padding-block: 7px; }
  input[type="checkbox"], input[type="radio"] { width: 22px; height: 22px; }
  label:has(input[type="checkbox"]) { display: flex; gap: 10px; align-items: center; min-height: 44px; }
}
.brand { min-height: 46px; }
.estimator input, .field input, .field select, .field textarea { min-height: 50px; }

/* ==================================================================
   ALEGEREA NUMĂRULUI DE TELEFON (2 numere)
   ================================================================== */
body.phone-sheet-open { overflow: hidden; }

.phone-sheet {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.phone-sheet[hidden] { display: none; }

.phone-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 29, .62);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .22s ease;
}
.phone-sheet.is-open .phone-sheet-backdrop { opacity: 1; }

.phone-sheet-panel {
  position: relative;
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  background: var(--white, #fff);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, .35);
  transform: translateY(16px);
  opacity: 0;
  transition: transform .24s cubic-bezier(.2, .8, .3, 1), opacity .2s ease;
}
.phone-sheet.is-open .phone-sheet-panel { transform: translateY(0); opacity: 1; }

.phone-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.phone-sheet-head h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--navy, #08263b);
}
.phone-sheet-head p {
  margin: 5px 0 0;
  font-size: .9rem;
  color: var(--muted, #5b6b78);
}
.phone-sheet-close {
  flex: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8, 38, 59, .14);
  border-radius: 50%;
  background: transparent;
  color: var(--navy, #08263b);
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s ease;
}
.phone-sheet-close:hover { background: rgba(8, 38, 59, .07); }

.phone-sheet-options { display: grid; gap: 10px; }

.phone-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px 16px;
  border: 1px solid rgba(8, 38, 59, .12);
  border-radius: 18px;
  background: #f5f9fc;
  text-decoration: none;
  color: var(--navy, #08263b);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.phone-option:hover,
.phone-option:focus-visible {
  background: #eaf4fb;
  border-color: rgba(8, 121, 185, .45);
  transform: translateY(-1px);
}
.phone-option-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, #0879b9, #0b4d78);
  color: #fff;
}
.phone-option-icon svg { width: 21px; height: 21px; fill: currentColor; }
.phone-option-copy { display: flex; flex-direction: column; min-width: 0; }
.phone-option-copy strong { font-size: 1.24rem; letter-spacing: .01em; font-variant-numeric: tabular-nums; }
.phone-option-copy small { margin-top: 2px; font-size: .8rem; color: var(--muted, #5b6b78); }
.phone-option-arrow { margin-left: auto; color: rgba(8, 38, 59, .35); }
.phone-option-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.phone-sheet-wa {
  display: block;
  margin-top: 12px;
  padding: 13px 16px;
  border-radius: 16px;
  background: #e8f7ee;
  color: #14663a;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: .93rem;
}
.phone-sheet-wa:hover { background: #ddf1e5; }
.phone-sheet-hours {
  margin: 12px 0 0;
  text-align: center;
  font-size: .82rem;
  color: var(--muted, #5b6b78);
}

@media (min-width: 720px) {
  .phone-sheet { align-items: center; }
  .phone-sheet-panel { border-radius: 26px; padding: 24px; }
}

/* Numerele afișate pe pagina de contact */
.phone-list { display: flex; flex-direction: column; gap: 2px; }
.phone-list .phone-line {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}

/* ==================================================================
   GALERIE FOTO + VIDEO DIN TEREN
   ================================================================== */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.media-gallery figure { margin: 0; }
.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #061a28;
  border: 1px solid rgba(8, 38, 59, .12);
  box-shadow: 0 18px 44px rgba(4, 24, 37, .16);
}
.media-item img,
.media-item video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #061a28;
}
.media-item video { object-fit: contain; }
.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(3, 22, 34, .8);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.media-gallery figcaption {
  margin-top: 10px;
  color: var(--muted, #5b6b78);
  font-size: .85rem;
  line-height: 1.5;
}
.section-dark .media-gallery figcaption,
.section-cream .media-gallery figcaption { color: inherit; opacity: .8; }

@media (max-width: 560px) {
  .media-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .media-gallery figcaption { font-size: .78rem; }
  .media-item { border-radius: 16px; }
}

/* Logo-ul real în header și subsol */
.brand-mark-logo {
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.brand-mark-logo img { width: 42px; height: 42px; display: block; }

/* Videoclipurile păstrează formatul vertical original, fără benzi negre */
.media-item.media-video video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.media-gallery { align-items: start; }

/* <picture> nu trebuie să strice layout-ul selectorului */
.split-choice picture { display: contents; }

/* Încadrare pentru noile fotografii ale clientului */
.split-choice-manual .choice-image { object-position: 50% 42%; }
.split-choice-mechanized .choice-image { object-position: 50% 40%; }
@media (max-width: 760px) {
  .split-choice-manual .choice-image { object-position: 50% 34%; }
  .split-choice-mechanized .choice-image { object-position: 50% 32%; }
}
.detail-hero-media-manual img { object-position: 50% 46%; }
.detail-hero-media-mechanized img { object-position: 50% 44%; }
