
:root {
  --bg: #07111b;
  --bg-soft: #0d1724;
  --panel: rgba(255,255,255,.05);
  --panel-strong: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.10);
  --text: #eff7f4;
  --muted: #a9bbb3;
  --green: #14c86e;
  --green-2: #69f0a5;
  --green-3: #a8ffd1;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: min(1200px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 200, 110, 0.22), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(105, 240, 165, 0.12), transparent 20%),
    linear-gradient(180deg, #08131d 0%, #07111b 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }
.site-shell { min-height: 100vh; overflow: hidden; }
.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7,17,27,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 0; }
.brand img, .footer-logo { width: 220px; border-radius: 10px; }
.nav { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.nav a {
  color: var(--muted);
  font-size: .96rem;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}
.nav a::after {
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  transform: scaleX(0); transform-origin:left; transition: transform .25s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }
.actions { display:flex; align-items:center; gap:12px; }
.actions:empty { display:none; }
.nav-toggle {
  display:none; background:none; border:1px solid rgba(255,255,255,.16); color:var(--text);
  border-radius:12px; padding:10px 12px; font-size:1rem;
}
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:999px; padding:14px 22px; font-weight:700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color:#042010; box-shadow:0 18px 40px rgba(20,200,110,.26);
}
.btn-ghost, .btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}
.btn.full { width:100%; }
.hero-section { padding: 52px 0 24px; }
.hero-grid { display:grid; grid-template-columns: 1.06fr .94fr; gap: 34px; align-items: stretch; }
.hero-grid.one-col { grid-template-columns: 1fr; }
.hero-copy {
  display:flex; flex-direction:column; justify-content:center;
  min-height: 100%; padding: 14px 0;
}
.eyebrow {
  display:inline-flex; align-items:center; gap:8px; width:max-content;
  padding:8px 14px; border-radius:999px;
  border:1px solid rgba(105,240,165,.25);
  background: rgba(20,200,110,.09);
  color: var(--green-2); font-size:12px; font-weight:800;
  text-transform: uppercase; letter-spacing:.14em;
}
.eyebrow.small { font-size: 11px; }
.hero-copy h1, .section-head h2, .copy-panel h2, .contact-box h2, .pricing-section h2 {
  margin: 18px 0 16px; line-height: .98; letter-spacing: -0.04em;
}
.hero-copy h1 { font-size: clamp(2.6rem, 5vw, 5.1rem); max-width: 12ch; }
.hero-lead, .section-head p, .section-intro, .panel-card p, .plan-card p, .footer-brand p {
  color: var(--muted); line-height: 1.75; font-size: 1.03rem;
}
.hero-cta { display:flex; flex-wrap:wrap; gap:14px; margin: 30px 0 28px; }
.hero-stats { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.stat-card, .panel-card, .service-card, .plan-card, .gallery-card, .related-link {
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.stat-card {
  padding:18px; border-radius:18px; background: rgba(255,255,255,.04);
}
.stat-card strong { display:block; color:#fff; font-size:1rem; margin-bottom:6px; }
.stat-card span { color: var(--muted); font-size:.96rem; line-height:1.45; display:block; }
.hero-media-card {
  height: 100%; min-height: 460px; overflow:hidden; border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); padding:16px;
}
.hero-media-card img { width:100%; height:100%; object-fit: cover; border-radius: 24px; }
.section-head.compact { margin-bottom: 20px; }
.services-section, .pricing-section, .info-section, .gallery-section, .related-section { padding: 20px 0 34px; }
.service-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:18px; }
.service-card {
  padding:24px; border-radius: var(--radius-lg); background: rgba(255,255,255,.04);
}
.service-card.accent-card { background: linear-gradient(180deg, rgba(20,200,110,.16), rgba(255,255,255,.04)); }
.icon-badge, .copy-index {
  width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background: rgba(20,200,110,.16); color: var(--green-2); font-weight:800; margin-bottom:18px;
}
.service-card h3, .plan-card h3, .contact-panel h3 { margin: 0 0 10px; font-size: 1.25rem; }
.inline-link { display:inline-flex; margin-top: 10px; color: var(--green-2); font-weight:700; }
.tariff-layout { display:grid; grid-template-columns: 1.3fr .7fr; gap: 22px; align-items: start; }
.tariff-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px; }
.plan-card, .panel-card {
  padding: 26px; border-radius: var(--radius-lg); background: rgba(255,255,255,.045);
}
.plan-card.featured { background: linear-gradient(180deg, rgba(20,200,110,.16), rgba(255,255,255,.06)); }
.plan-top { display:flex; flex-direction:column; gap:8px; }
.pill {
  display:inline-flex; width:max-content; padding:7px 12px; border-radius:999px;
  background: rgba(20,200,110,.14); color: var(--green-2); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.price-row { display:flex; align-items:end; gap:8px; margin: 16px 0 12px; }
.price-row strong { font-size: 2.6rem; line-height: 1; letter-spacing: -.04em; }
.price-row span { color: var(--muted); font-weight: 600; }
.detail-list {
  margin: 16px 0 0; padding-left: 18px; color: var(--muted);
}
.detail-list li { margin-bottom: 10px; line-height: 1.6; }
.info-layout { display:grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
.copy-panel, .contact-panel { min-height: 100%; }
.copy-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:16px; margin-top: 22px; }
.copy-card {
  padding: 20px; border-radius: 20px; background: rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.08);
}
.copy-card-accent { background: linear-gradient(180deg, rgba(20,200,110,.12), rgba(255,255,255,.035)); }
.copy-card p { margin:0; }
.sticky-card { position: sticky; top: 104px; }
.contact-stack {
  display:flex; flex-direction:column; gap:12px; margin-top:16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08);
}
.contact-stack a { color:#fff; font-weight: 600; }
.gallery-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px; }
.gallery-card { border-radius: 22px; overflow:hidden; background: rgba(255,255,255,.04); }
.gallery-card img { width:100%; height: 100%; object-fit: cover; min-height: 320px; }
.contact-box {
  display:grid; grid-template-columns: .8fr 1.2fr; gap:24px; border-radius: var(--radius-xl); padding: 28px;
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); box-shadow: var(--shadow);
}
.related-links { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.related-link {
  display:flex; align-items:center; justify-content:space-between; gap:12px; border-radius: 18px;
  padding: 18px 20px; background: rgba(255,255,255,.04); color: var(--muted);
}
.related-link:hover { color: var(--green-2); }
.site-footer { padding: 8px 0 40px; }
.footer-main {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items:start;
  padding: 28px 0 20px; border-top:1px solid rgba(255,255,255,.08);
}
.footer-contact { display:flex; flex-direction:column; gap:10px; color: var(--muted); }
.footer-links {
  display:flex; flex-wrap:wrap; gap:10px 16px; padding-top: 10px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--green-2); }
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats { grid-template-columns: 1fr; }
  .tariff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .hero-grid, .tariff-layout, .info-layout, .gallery-grid, .contact-box, .footer-main, .copy-grid, .related-links, .service-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display:block; }
  .nav {
    display:none; position:absolute; left:20px; right:20px; top:82px; padding:18px; border-radius:18px;
    background:#0c1724; border:1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
  }
  .nav.open { display:flex; flex-direction:column; align-items:flex-start; }
  .actions { display:none; }
  .brand img, .footer-logo { width: 180px; }
  .sticky-card { position: static; }
  .hero-copy h1 { max-width: none; }
}


/* v3 mobile/fibra refinements */
.nav { gap: 24px; }
.nav a { padding: 10px 0; }
.nav a.nav-cta {
  background: #05070a;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
}
.nav a.nav-cta::after { display:none; }
.pricing-tight { padding-top: 6px; }
.tariff-grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; }
.tariff-grid-2 { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px; }
.exact-card .price-row { margin-bottom: 18px; }
.exact-card .price-row strong { font-size: 2.9rem; }
.exact-card .plan-kicker {
  display:inline-flex; margin-bottom: 8px; color: var(--green-2);
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem;
}
.conditions-cards-section { padding: 8px 0 20px; }
.condition-chip-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.condition-chip {
  display:flex; gap: 14px; align-items:flex-start; padding: 18px 20px; border-radius: 20px;
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); box-shadow: var(--shadow);
}
.condition-chip strong { color:#fff; font-size: 1rem; line-height: 1.4; }
.condition-chip span { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.conditions-panel-section { padding: 6px 0 24px; }
.conditions-panel-full { max-width: 760px; }
.conditions-panel-full h2 { margin: 16px 0 10px; line-height: 1.1; letter-spacing: -0.03em; }
.long-note-section { padding: 4px 0 28px; }
.long-note-box {
  background: #ffffff; color: #5a5a5a; border-radius: 0; padding: 18px 24px; overflow-wrap: anywhere;
}
.long-note-box p { margin:0; font-size: .95rem; line-height: 1.55; color: #6a6a6a; }
.contact-full-section { padding: 8px 0 34px; }
.contact-wide {
  display:grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items:start;
}
.contact-wide h2 { margin: 16px 0 12px; line-height: 1.1; letter-spacing: -0.03em; }
.contact-wide-data {
  display:flex; flex-direction:column; gap:12px; padding-top: 8px;
}
.contact-wide-data a { color:#fff; font-weight:700; }
.contact-wide-data span { color: var(--muted); }
@media (max-width: 1080px) {
  .tariff-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .condition-chip-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .contact-wide, .tariff-grid-3, .tariff-grid-2 { grid-template-columns: 1fr; }
  .nav { gap: 14px; }
  .nav a.nav-cta { padding: 10px 18px; }
}


/* v4 unified commercial layout */
.service-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quick-contact-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:18px; }
.unified-card { background: linear-gradient(180deg, rgba(20,200,110,.16), rgba(255,255,255,.06)); }
.price-under {
  color: var(--green-3);
  font-size: .95rem;
  font-weight: 700;
  margin: -2px 0 12px;
  letter-spacing: .04em;
  text-transform: lowercase;
}
.plan-meta {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: .98rem;
}
.plan-note {
  margin: 12px 0 18px;
  color: var(--green-3);
  line-height: 1.55;
  font-size: .96rem;
}
.long-note-panel {
  background: rgba(255,255,255,.045);
  color: var(--muted);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.long-note-panel p { color: var(--muted); }
.contact-store { color:#fff; font-size: 1.08rem; }
.footer-links-docs {
  padding-top: 0;
  padding-bottom: 10px;
}
.footer-links-docs a {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  padding: 10px 14px;
}
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #7dffb0);
  color: #052312;
  box-shadow: 0 24px 50px rgba(37,211,102,.35);
  z-index: 120;
  font-size: 1.6rem;
  font-weight: 800;
}
.whatsapp-fab:hover { transform: translateY(-2px) scale(1.02); }
.whatsapp-fab-icon { line-height: 1; }
.contact-wide-data strong { margin-top: 4px; }
.contact-wide-data a[href^="https://wa.me/"] {
  display: inline-flex;
  width: max-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20,200,110,.12);
  border: 1px solid rgba(105,240,165,.25);
}
@media (max-width: 1080px) {
  .service-grid-3, .quick-contact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .service-grid-3, .quick-contact-grid { grid-template-columns: 1fr; }
  .whatsapp-fab { width: 58px; height: 58px; right: 16px; bottom: 16px; }
}


/* v5 design refinements */
.hero-banner-section { padding: 52px 0 24px; }
.hero-banner-card {
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.hero-banner-copy {
  width: min(620px, 100%);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-banner-copy h1 {
  margin: 18px 0 16px;
  line-height: .98;
  letter-spacing: -0.04em;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  max-width: 11ch;
}
.hero-banner-copy p {
  color: #eef7f4;
  line-height: 1.75;
  font-size: 1.06rem;
  max-width: 58ch;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(7,17,27,.44);
  backdrop-filter: blur(4px);
}
.promo-white-section { padding: 10px 0 26px; }
.promo-white-card {
  background: #ffffff;
  color: #22313d;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.promo-white-card h2 {
  margin: 10px 0 12px;
  color: #13202b;
  line-height: 1;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}
.promo-white-card p {
  margin: 0 0 20px;
  color: #51606b;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 72ch;
}
.promo-mini {
  color: #7b8a94;
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: .06em;
}
.legal-flow-panel,
.legal-flow-panel p { color: var(--muted); }
.legal-flow-panel p { margin: 0 0 14px; }
.legal-copy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-grid-wide { grid-template-columns: repeat(2, minmax(0,1fr)); }
.gallery-card-wide img { min-height: 360px; }
.feature-photo-card { overflow: hidden; }
.feature-photo {
  margin: -26px -26px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.feature-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (max-width: 1080px) {
  .legal-copy-grid, .gallery-grid-wide { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .hero-banner-card { min-height: 460px; }
  .hero-banner-copy { padding: 28px; width: 100%; }
  .hero-banner-copy p { padding: 14px 16px; }
}


/* v6 home + SEO corrections */
.info-wide-panel {
  max-width: none;
  width: 100%;
}
.home-classic-hero .hero-copy h1 { max-width: 11ch; }
.hero-square-offer {
  position: relative;
  min-height: 460px;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.offer-overlay {
  position: absolute;
  inset: 0;
  padding: 26px 24px 18px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
}
.offer-topline {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.offer-main {
  color: #fff;
  font-size: clamp(3.6rem, 8vw, 6.3rem);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 800;
  text-align: center;
  margin-top: 4px;
}
.offer-sub {
  color: rgba(255,255,255,.96);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin-top: 6px;
}
.offer-price-block {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
}
.offer-price {
  color: #0a0a0a;
  font-size: clamp(4rem, 10vw, 6.4rem);
  line-height: .86;
  font-weight: 900;
  letter-spacing: -.08em;
}
.offer-price-meta {
  color: #fff;
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 700;
  text-align: left;
  margin-top: 14px;
}
.offer-footnote {
  align-self: end;
  color: rgba(255,255,255,.92);
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
@media (max-width: 980px) {
  .hero-square-offer { min-height: 420px; }
  .offer-overlay { padding: 22px 20px 16px; }
  .offer-price-block { justify-content: center; }
}


/* v7 contact + home refinements */
.quick-contact-grid-large {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}
.contact-card-boost {
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
}
.contact-card-boost .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1rem;
  margin-bottom: 22px;
}
.contact-card-boost h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.contact-card-boost p,
.contact-card-boost p a {
  font-size: 1.18rem;
  line-height: 1.6;
  color: #f4fbf7;
}
.hero-square-offer {
  background:
    radial-gradient(circle at 18% 18%, rgba(110, 181, 126, 0.55), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.12), transparent 18%),
    linear-gradient(135deg, #17362b 0%, #20372d 22%, #6b6457 54%, #564f46 100%);
}
.offer-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.offer-grain {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .55;
}
.offer-grain-a {
  inset: 8% 10% auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 70%);
}
.offer-grain-b {
  inset: auto auto 8% 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 72%);
}
.offer-band {
  position: absolute;
  top: -4%;
  bottom: -4%;
  width: 22%;
  background: linear-gradient(180deg, rgba(143,185,98,.85), rgba(86,126,69,.88));
  filter: blur(.2px);
}
.offer-band-left { left: -6%; transform: skewX(-6deg); }
.offer-band-right { right: -6%; transform: skewX(6deg); }
.price-panel {
  position: absolute;
  right: 8%;
  top: 28%;
  width: 34%;
  height: 28%;
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.72));
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.offer-copy-new {
  position: absolute;
  inset: 0;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-kicker {
  margin-top: 2px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.offer-big {
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(3.4rem, 8vw, 5.9rem);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.07em;
  text-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.offer-mid {
  margin-top: 6px;
  color: rgba(255,255,255,.98);
  font-size: 1.5rem;
  font-weight: 700;
}
.offer-price-line {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding-right: 8%;
}
.offer-eur {
  color: #060606;
  font-size: clamp(3.8rem, 9vw, 5.8rem);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.08em;
}
.offer-iva {
  margin-top: 14px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 800;
  max-width: 90px;
  text-align: left;
}
@media (max-width: 1080px) {
  .quick-contact-grid-large { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .quick-contact-grid-large { grid-template-columns: 1fr; }
  .contact-card-boost { min-height: auto; }
  .price-panel { right: 7%; top: 33%; width: 42%; height: 24%; }
  .offer-price-line { justify-content: center; padding-right: 0; }
}


/* v8 contact and home image updates */

.contact-page-clean .services-section {
  padding-top: 56px;
}
.contact-page-clean .section-head.compact {
  max-width: 860px;
}
.contact-page-clean .section-head.compact p {
  max-width: 760px;
  color: var(--muted);
}
.quick-contact-grid-large {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}
.contact-card-boost {
  min-height: 270px;
  padding: 34px;
  border-radius: 28px;
}
.contact-card-boost .icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.contact-card-boost h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  margin-bottom: 16px;
}
.contact-card-boost p,
.contact-card-boost p a {
  font-size: 1.24rem;
  line-height: 1.6;
  color: #f4fbf7;
}
.contact-card-note {
  display: inline-block;
  margin-top: 6px;
  color: rgba(239,247,244,.72);
  font-size: .98rem;
  font-weight: 600;
}
.contact-card-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-card-actions .btn {
  min-width: 172px;
  justify-content: center;
}
.home-v8 .hero-square-offer {
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: none;
  padding: 0;
}
.hero-square-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
@media (max-width: 1080px) {
  .quick-contact-grid-large {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .contact-page-clean .services-section {
    padding-top: 28px;
  }
  .quick-contact-grid-large {
    grid-template-columns: 1fr;
  }
  .contact-card-boost {
    min-height: auto;
    padding: 28px;
  }
  .contact-card-actions .btn {
    width: 100%;
    min-width: 0;
  }
}


/* v8 nav client icon + combo + tv packs */

.nav-client-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  padding: 0 !important;
  border-radius: 999px;
}
.nav-client-link::after { display: none !important; }
.nav-client-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  background: #ffffff;
}
.combo-highlight-card {
  border-color: rgba(105,240,165,.34);
  transform: translateY(-2px);
}
.tv-pack-grid .plan-card {
  min-height: 100%;
}
.tv-channels-section {
  padding-top: 8px;
}
.tv-channel-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.tv-channel-panel {
  padding: 28px;
}
.tv-channel-panel h3 {
  margin: 14px 0 12px;
  font-size: 1.35rem;
}
.tv-channel-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
@media (max-width: 980px) {
  .nav-client-link {
    padding: 6px 0 0 !important;
  }
  .nav-client-icon {
    width: 34px;
    height: 34px;
  }
}


/* blog extension */
.blog-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
}
.blog-post-card {
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.blog-post-card h2,
.article-content h2,
.article-sidebar h3,
.blog-note h2 {
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.blog-post-card p,
.article-content p,
.article-content li,
.article-content blockquote,
.blog-note p {
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.03rem;
}
.blog-meta,
.article-meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 14px 0 4px;
}
.blog-meta span,
.article-meta span {
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color: var(--green-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article-shell {
  display:grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap:22px;
  align-items:start;
}
.article-content {
  padding: 34px;
}
.article-content h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-top: 34px;
}
.article-content h2:first-of-type {
  margin-top: 6px;
}
.article-content p {
  margin: 0 0 18px;
}
.article-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.article-content li {
  margin-bottom: 12px;
}
.article-content strong {
  color: var(--text);
}
.article-content a,
.blog-post-card a,
.article-sidebar a,
.blog-note a {
  color: var(--green-2);
}
.article-content blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid rgba(105,240,165,.8);
  background: rgba(255,255,255,.035);
  border-radius: 0 18px 18px 0;
}
.article-highlight {
  margin: 24px 0;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,200,110,.16), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08);
}
.article-sidebar {
  position: sticky;
  top: 104px;
}
.article-sidebar .panel-card {
  padding: 24px;
}
.article-sidebar ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.article-sidebar li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.source-list {
  display:grid;
  gap:12px;
  margin-top: 18px;
}
.source-list a {
  display:block;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}
.blog-note {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
@media (max-width: 980px) {
  .blog-grid, .article-shell {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .article-content {
    padding: 24px;
  }
}
