:root {
  --yellow:       #F5B800;
  --yellow-light: #FFE082;
  --yellow-deep:  #C58A00;
  --yellow-glow:  #FFF6D6;
  --blue:         #1E9FD8;
  --blue-deep:    #0D6FA8;
  --blue-darker:  #094E78;
  --red:          #E63946;
  --red-deep:     #C42836;
  --ink:          #1A1A1A;
  --ink-soft:     #4A4A4A;
  --cream:        #FAF6EC;
  --cream-deep:   #F4EFE0;
  --paper:        #FFFFFF;
  --border:       #E4DFC9;
  --lobster:      #eb5078;
  --lobster-light: #FEF1F4;
  --green:        #16A34A;
  --whatsapp:     #25D366;

  --display: 'Bricolage Grotesque', -apple-system, sans-serif;
  --body:    'Plus Jakarta Sans', -apple-system, sans-serif;
  --mono:    'JetBrains Mono', 'SF Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TOP MARQUEE ===== */
.top-marquee {
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 2px solid var(--yellow);
}
.top-marquee-track {
  display: inline-block;
  animation: scroll-left 40s linear infinite;
  padding-left: 100%;
}
.top-marquee span { margin: 0 32px; }
.top-marquee .dot { color: var(--red); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ===== NAV ===== */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
  padding: 14px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 32px;
  row-gap: 0;
}
.nav-center { display: flex; justify-content: center; align-items: center; }
.nav-right { display: flex; align-items: center; gap: 28px; justify-self: end; }
.logo-wrap {
  display: inline-block;
  line-height: 0;
}
.logo-wrap img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a { position: relative; padding: 4px 0; color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-right: 1px solid var(--border);
  padding-right: 14px;
}
.lang-opt {
  display: inline-flex;
  align-items: center;
  padding: 4px 2px 5px;
  cursor: pointer;
  line-height: 0;
  border-bottom: 2px solid transparent;   /* spazio riservato: nessuno shift fra attiva/inattiva */
}
/* Solo la sottolineatura gialla indica la lingua attiva; bandiere sempre a colori pieni, nessun hover */
.lang-opt.active { border-bottom-color: var(--yellow); }
.lang-flag {
  display: block;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(26, 26, 26, 0.14);   /* stacca il bianco della UK dal nav bianco */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
}
.nav-cta {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: var(--paper);
  padding: 13px 32px 11px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.01em;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: cta-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-shimmer {
  0%   { left: -120%; }
  42%, 100% { left: 150%; }
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.cta-short { display: none; }

/* ===== HAMBURGER + MOBILE NAV ===== */
.nav-hamburger {
  display: none;
  grid-column: 3;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
  width: 34px;
  align-self: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 6px 0 18px;
  margin-top: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* ===== HERO ===== */
.hero {
  background: var(--yellow);
  position: relative;
  padding: 100px 40px 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.35) 5deg, transparent 12deg, transparent 24deg, rgba(255,255,255,0.25) 30deg, transparent 38deg, transparent 50deg, rgba(255,255,255,0.3) 56deg, transparent 64deg, transparent 76deg, rgba(255,255,255,0.22) 82deg, transparent 90deg, transparent);
  border-radius: 50%;
  opacity: 0.9;
  animation: rotate-slow 90s linear infinite;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }

/* wrapper hero+trust per la ragazza absolute che sfora (redesign 2026-06-02) */
.hero-trust-wrapper { position: relative; }

.hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
/* il testo occupa la sinistra; lo spazio destro è riservato alla ragazza */
.hero-content { max-width: 760px; }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 999px;
}
.hero-eyebrow::before { content: "●"; color: var(--red); font-size: 10px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(60px, 8vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero h1 .light {
  font-weight: 300;
  color: var(--ink-soft);
}
.hero h1 .accent {
  color: var(--blue-darker);
}
/* riga 2 del titolo su una sola riga: niente wrap su "island" (solo >1024px) */
.hero h1 .h1-line2 { display: block; white-space: nowrap; }
.hero-lede {
  max-width: 520px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px,-2px); }
.btn-primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--yellow); }

/* ===== RAGAZZA HERO (redesign 2026-06-02) ===== */
/* Desktop (>1024px): absolute, sfora hero+trust. Il PNG guarda a sinistra -> scaleX(-1). */
.hero-girl {
  position: absolute;
  right: max(40px, calc((100% - 1480px) / 2));
  bottom: -13px;
  height: 720px;
  width: auto;
  z-index: 30;
  pointer-events: none;
  transform: scaleX(-1);
}
/* Mobile/tablet (<=1024px): in-flow sotto il testo. Nascosta di default su desktop. */
.hero-girl-mob { display: none; }
/* <picture> (WebP + fallback PNG) trasparente al layout: l'<img> resta figlio diretto,
   così .hero-girl (absolute) e .hero-girl-mob (block) si comportano come prima */
.hero-trust-wrapper picture { display: contents; }
/* la ragazza (z-index:30) passa sopra la trust strip della home ma sotto il testo cliccabile;
   scopato al wrapper per NON toccare la trust-strip di about/product */
.hero-trust-wrapper .trust-strip { position: relative; z-index: 0; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--paper);
  padding: 48px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.trust-item:hover .trust-icon {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.trust-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.trust-text strong {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.trust-text strong .stat {
  color: var(--red);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust-text > span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--cream);
  padding: 120px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.section-header {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--red);
}
.section-header h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.section-header h2 .light {
  font-weight: 300;
  color: var(--ink-soft);
}
.section-header h2 .accent {
  color: var(--blue-darker);
}
.section-header p {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-bottom: 8px;
}

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
}
.product-card.featured-yellow {
  background: var(--yellow);
}
.product-card.featured-blue {
  background: var(--blue-deep);
  color: var(--paper);
}
.product-card.featured-blue .product-name,
.product-card.featured-blue .product-speed { color: var(--yellow); }
.product-card.featured-blue .product-price { color: var(--yellow); }

.product-type {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-type::before {
  content: "●";
  color: var(--red);
}
.product-card.featured-blue .product-type::before { color: var(--yellow); }

.product-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.product-name .tier { font-weight: 400; color: var(--blue-deep); }
.product-card.featured-yellow .product-name .tier { color: var(--ink); opacity: 0.7; }
.product-card.featured-blue .product-name .tier { color: var(--paper); opacity: 0.7; }

.product-speed {
  font-family: var(--display);
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
  margin: 16px 0;
}
.product-card.featured-yellow .product-speed { color: var(--ink); }
.product-speed sup {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: top;
  margin-left: 4px;
  opacity: 0.55;
}

.product-desc {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.75;
  flex-grow: 1;
  color: inherit;
}

.product-price-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  opacity: 0.95;
}
.product-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--red);
}
.product-card.featured-yellow .product-price { color: var(--ink); }
.product-price small {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  margin-left: 4px;
  opacity: 0.7;
  color: inherit;
}
.product-arrow {
  font-size: 22px;
  transform: rotate(-45deg);
  transition: transform 0.3s;
  color: inherit;
}
.product-card:hover .product-arrow { transform: rotate(0deg) translateX(4px); }

/* ===== LOBSTER SIM ===== */
.lobster {
  background: var(--lobster-light);
  padding: 120px 40px;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.lobster::before {
  content: "SIM";
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(200px, 28vw, 420px);
  letter-spacing: -0.07em;
  color: rgba(235,80,120,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.lobster-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lobster-intro {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.lobster-mascot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.lobster-mascot img {
  width: 210px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(235,80,120,0.25));
}
.lobster-eyebrow {
  color: var(--lobster) !important;
}
.lobster-eyebrow::before {
  background: var(--lobster) !important;
}
.lobster-lead h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 24px;
}
.lobster-lead h2 .lobster-name {
  color: var(--lobster);
}
.lobster-lead h2 .light {
  font-weight: 300;
  color: var(--ink-soft);
}
.lobster-kicker {
  font-family: var(--body);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 20px;
}
.lobster-desc p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.lobster-desc p:last-child { margin-bottom: 0; }

.lobster-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lobster-card {
  border: 1.5px solid rgba(235,80,120,0.25);
  border-radius: 14px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(235,80,120,0.04);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}
.lobster-card:hover {
  border-color: rgba(235,80,120,0.5);
  background: rgba(235,80,120,0.08);
  box-shadow: 0 6px 28px rgba(235,80,120,0.12);
}
.lobster-card.lob-spain {
  background: rgba(26,26,26,0.03);
  border-style: dashed;
  border-color: rgba(26,26,26,0.18);
}
.lobster-card.lob-spain:hover {
  background: rgba(26,26,26,0.06);
  border-color: rgba(26,26,26,0.32);
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
}
.lobster-card.lob-spain .lob-badge {
  background: rgba(26,26,26,0.07);
  color: var(--ink-soft);
}
.lobster-card.lob-spain .lob-divider {
  background: rgba(26,26,26,0.1);
}
.lob-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  background: rgba(235,80,120,0.12);
  color: var(--lobster);
  margin-bottom: 20px;
}
.lob-data {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.lob-data sup {
  font-size: 0.38em;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: super;
  opacity: 0.6;
}
.lob-calls {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.lob-divider {
  height: 1px;
  background: rgba(235,80,120,0.2);
  margin-bottom: 20px;
}
.lob-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lobster);
}
.lob-price .cents {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: baseline;
  letter-spacing: -0.02em;
}
.lob-period {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
  margin-top: 6px;
}

.lob-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1.5px solid rgba(235,80,120,0.18);
}
.lob-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lob-perk-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(235,80,120,0.1);
  color: var(--lobster);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lob-perk-body strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.lob-perk-body p {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== FAQ TEASER ===== */
.faq-teaser {
  background: var(--cream);
  color: var(--ink);
  padding: 100px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.faq-inner { max-width: 1400px; margin: 0 auto; }
.faq-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}
.faq-header h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.faq-header h2 .light { font-weight: 300; color: var(--ink-soft); }
.faq-header h2 .accent { color: var(--blue-darker); }
.faq-header a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 999px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.faq-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--yellow-glow);
}
.faq-item h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.faq-item p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== CROSS BANNER ===== */
.cross-banner {
  background: var(--red);
  color: var(--paper);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid var(--ink);
}
.cross-banner::before, .cross-banner::after {
  content: "ELECTRATEL · ELECTRATEL · ELECTRATEL · ELECTRATEL · ELECTRATEL · ";
  position: absolute; left: 0;
  white-space: nowrap;
  color: rgba(255,255,255,0.14);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4em;
}
.cross-banner::before { top: 12px; }
.cross-banner::after { bottom: 12px; }
.cross-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cross-banner-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}
.cross-banner-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cross-banner-text .accent { color: var(--yellow); font-weight: 500; }
.cross-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--red);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s;
}
.cross-banner-link:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }

/* ===== FOOTER ===== */
footer {
  background: var(--blue-deep);
  color: var(--paper);
  padding: 80px 40px 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(245,184,0,0.15) 5deg, transparent 12deg, transparent 24deg, rgba(245,184,0,0.12) 30deg, transparent 38deg);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.footer-logo-wrapper {
  background: var(--paper);
  padding: 18px 22px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo-wrapper img { width: 240px; height: auto; display: block; }
.footer-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 380px;
  line-height: 1.55;
  font-family: var(--body);
  font-weight: 400;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 2.1;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
}
.footer-lang-note {
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--cream);
  padding: 18px 40px;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 12px; color: var(--red); }
.breadcrumb .current { color: var(--ink); }

/* ===== INFO BLOCK TITLE ===== */
.info-block-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block-title::before { content: ""; width: 24px; height: 2px; background: var(--red); }

/* ===== COVERAGE HERO ===== */
.contact-hero {
  background: var(--yellow);
  padding: 90px 40px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid var(--ink);
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 600px; height: 600px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.35) 5deg, transparent 12deg, transparent 24deg, rgba(255,255,255,0.25) 30deg, transparent 38deg, transparent 50deg, rgba(255,255,255,0.3) 56deg, transparent 64deg);
  border-radius: 50%;
  animation: rotate-slow 90s linear infinite;
}
.contact-hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.contact-hero .hero-eyebrow { margin-bottom: 24px; }
.contact-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-hero h1 .light { font-weight: 300; color: var(--ink-soft); }
.contact-hero h1 .accent { color: var(--blue-darker); }
.contact-hero-lede {
  max-width: 540px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.85;
}
.hero-stats {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.8;
}
.hero-stat-big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--blue-darker);
  opacity: 1;
  margin-bottom: 10px;
}

/* ===== TWO TECHNOLOGIES ===== */
.tech-section {
  background: var(--paper);
  padding: 80px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.tech-inner { max-width: 1400px; margin: 0 auto; }
.tech-head { max-width: 720px; margin-bottom: 44px; }
.tech-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--ink);
}
.tech-head h2 .light { font-weight: 300; color: var(--ink-soft); }
.tech-head h2 .accent { color: var(--blue-darker); }
.tech-head p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tech-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tech-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--ink);
}
.tech-card .tech-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 22px;
}
.tech-card .tech-icon.blue { background: var(--blue); color: white; }
.tech-card .tech-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.tech-card .tech-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.tech-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.tech-card p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 14px; }
.tech-card p:last-child { margin-bottom: 0; }
.tech-cta { margin-top: 48px; display: flex; justify-content: center; }
.tech-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px 13px;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.tech-cta-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

/* ===== CHECK CTA (coverage) ===== */
.check-cta {
  background: var(--ink);
  padding: 100px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.check-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.check-cta-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-cta-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--yellow); }
.check-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 16px;
}
.check-cta h2 .accent { color: var(--yellow); }
.check-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}
.check-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--ink);
  padding: 20px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--yellow);
  box-shadow: 4px 4px 0 var(--yellow-deep);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.check-cta-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--yellow-deep); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  nav.main-nav { padding: 14px 24px; gap: 16px; }
  .nav-links { gap: 22px; font-size: 13px; }

  /* HOME redesign — da tablet in giù: ragazza in-flow sotto il testo, testo full-width */
  .hero { padding: 80px 32px 0; }
  .hero-content { max-width: 100%; }
  .hero h1 .h1-line2 { white-space: normal; } /* consenti il wrap: niente clipping */
  .hero-girl { display: none; }               /* via la versione absolute */
  /* larghezza limitata + centrata: evita l'over-zoom del cover a tutta larghezza su tablet
     (mostra testa→petto, non solo la fronte). Su mobile il cap viene rimosso (vedi @720). */
  .hero-girl-mob {
    display: block;
    width: 100%;
    max-width: 480px;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    transform: scaleX(-1);
    margin: 32px auto 0;
  }
  /* trust della home a 3 colonne (3 item, niente cella vuota); about resta a 4 (no wrapper) */
  .hero-trust-wrapper .trust-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  nav.main-nav {
    grid-template-columns: auto 1fr auto;
    padding: 12px 18px;
    column-gap: 12px;
  }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .logo-wrap img { height: 40px; }
  .lang-switcher { padding-right: 10px; font-size: 11px; gap: 6px; }
  .nav-cta { padding: 8px 16px; font-size: 12px; font-weight: 700; }
  .cta-full { display: none; }
  .cta-short { display: inline; }

  .hero { padding: 48px 20px 0; }               /* padding-bottom 0: la ragazza chiude il giallo */
  .hero h1 { font-size: clamp(48px, 12vw, 80px); }
  .hero-girl-mob { max-width: none; height: 320px; margin: 24px auto 0; } /* telefono: full-width, band corta */
  .hero-eyebrow { font-size: 10px; padding: 6px 12px; }
  .btn { padding: 14px 22px; font-size: 14px; }

  .trust-strip { padding: 32px 20px; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; }       /* INVARIATA: protegge about.php */
  .hero-trust-wrapper .trust-inner { grid-template-columns: 1fr; }  /* solo home: 1 colonna */
  .trust-icon { width: 44px; height: 44px; }
  .trust-icon svg { width: 22px; height: 22px; }
  .trust-text strong { font-size: 13px; }
  .trust-text span { font-size: 9px; }

  .products { padding: 64px 20px; }
  .section-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .section-header p { padding-bottom: 0; }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card { padding: 24px; }
  .product-name { font-size: 28px; }
  .product-speed { font-size: 56px; margin: 8px 0; }

  .lobster { padding: 64px 20px; }
  .lobster-intro { grid-template-columns: 1fr; gap: 32px; }
  .lobster-mascot { display: none; }
  .lobster-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lobster::before { display: none; }
  .lob-perks { grid-template-columns: 1fr; gap: 16px; }

  .faq-teaser { padding: 64px 20px; }
  .faq-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .faq-header h2 { font-size: 40px; }
  .faq-list { grid-template-columns: 1fr; gap: 12px; }
  .faq-item { padding: 24px; }

  .cross-banner { padding: 40px 20px; }
  .cross-banner-inner { grid-template-columns: 1fr; gap: 18px; }
  .cross-banner-link { justify-self: start; }

  footer { padding: 56px 20px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-logo-wrapper img { width: 180px; }
  .footer-tagline { font-size: 13px; }
}

/* ===== CONTACT METHODS ===== */
.methods-section {
  background: var(--paper);
  padding: 80px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.methods-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.method-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: block;
  color: inherit;
}
.method-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.method-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 20px;
}
.method-icon.whatsapp { background: var(--whatsapp); color: white; }
.method-icon.blue { background: var(--blue); color: white; }
.method-icon.red { background: var(--red); color: white; }
.method-icon svg { width: 26px; height: 26px; stroke-width: 2; }
.method-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.method-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
  word-break: break-word;
}
.method-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* ===== INFO + FORM ===== */
.info-form-section {
  background: var(--cream);
  padding: 80px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.info-form-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.info-block { margin-bottom: 36px; }
.info-block:last-child { margin-bottom: 0; }
.info-block h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--ink);
}
.info-block h2 .accent { color: var(--blue-darker); }
.info-block p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 12px; }

.hours-table {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { background: var(--yellow-glow); position: relative; }
.hours-row.today::after {
  content: attr(data-today);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hours-row.today .day-hours { padding-right: 60px; }
.hours-row.closed .day-hours { color: var(--ink-soft); opacity: 0.6; }
.day-name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}
.day-hours { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.day-hours.closed-text { color: var(--ink-soft); opacity: 0.5; font-weight: 400; font-style: italic; }

.lang-block { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lang-chip .level {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: none;
  background: var(--green);
  color: white;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.contact-form {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
}
.form-badge {
  position: absolute;
  top: -14px; left: 36px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
}
.form-h2 { font-family: var(--display); font-weight: 800; font-size: 32px; letter-spacing: -0.03em; margin-bottom: 8px; }
.form-h2 .accent { color: var(--blue-darker); font-weight: 400; }
.form-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 28px; }
.form-section-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title::before { content: ""; width: 18px; height: 2px; background: var(--red); }
.form-section-title:first-of-type { margin-top: 0; }

.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.topic-pill {
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topic-pill:hover { border-color: var(--ink); }
.topic-pill.active { background: var(--yellow-glow); border-color: var(--ink); }
.topic-pill .topic-icon {
  width: 28px; height: 28px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topic-pill .topic-icon svg { width: 16px; height: 16px; stroke-width: 2; }
.topic-pill .topic-text { font-family: var(--body); font-weight: 700; font-size: 13px; color: var(--ink); line-height: 1.2; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: var(--paper);
  transition: border-color 0.15s;
  font-family: var(--body);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--ink); }
.form-field textarea { resize: vertical; min-height: 120px; }

.privacy-row {
  margin-top: 20px;
  padding: 14px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.privacy-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--ink); }
.privacy-row a { color: var(--blue-deep); text-decoration: underline; }

.submit-row { margin-top: 24px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.submit-btn {
  background: var(--red);
  color: var(--paper);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.submit-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.submit-note {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== STORY ===== */
.story {
  background: var(--cream);
  padding: 140px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.story-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-text h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.story-text h2 .light { font-weight: 300; color: var(--ink-soft); }
.story-text h2 .accent { color: var(--blue-darker); }
.story-text p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 16px; }
.story-text .signature {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.story-visual { display: flex; align-items: center; justify-content: center; }
.story-visual img { width: 100%; height: auto; display: block; }

/* ===== HOW WE CONNECT ===== */
.connect {
  background: var(--cream);
  padding: 120px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.connect-header {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.connect-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.connect-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--red); }
.connect-header h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.connect-header h2 .light { font-weight: 300; color: var(--ink-soft); }
.connect-header h2 .accent { color: var(--blue-darker); }
.connect-header p { max-width: 320px; font-size: 15px; line-height: 1.55; color: var(--ink-soft); padding-bottom: 8px; }
.connect-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.connect-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.connect-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.connect-card-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 6px;
}
.connect-card-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.connect-card-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.connect-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.connect-card h3 .accent { color: var(--blue-darker); font-weight: 400; }
.connect-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); flex-grow: 1; }
.connect-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}
.connect-card-cta:hover { color: var(--red); }
.connect-card-cta.plain { color: var(--ink-soft); cursor: default; }

/* ===== FIND US ===== */
.findus {
  background: var(--paper);
  padding: 120px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.findus-inner { max-width: 1400px; margin: 0 auto; }
.findus-panel {
  background: var(--blue-deep);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.findus-panel::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(245,184,0,0.18) 5deg, transparent 12deg, transparent 24deg, rgba(245,184,0,0.14) 30deg, transparent 38deg, transparent 50deg, rgba(245,184,0,0.16) 56deg, transparent 64deg);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
  animation: rotate-slow 90s linear infinite;
}
.findus-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.findus-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.findus-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--yellow); }
.findus-panel h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.findus-panel h2 .light { font-weight: 300; color: rgba(255,255,255,0.65); }
.findus-panel h2 .accent { color: var(--yellow); }
.findus-panel p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 12px; }
.findus-address {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 18px;
  line-height: 1.8;
}
.findus-ctas { display: flex; flex-direction: column; gap: 14px; }
.findus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.findus-btn.primary { background: var(--red); color: var(--paper); box-shadow: 4px 4px 0 var(--ink); }
.findus-btn.primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.findus-btn.secondary { background: var(--paper); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.findus-btn.secondary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* ===== RESPONSIVE — coverage page ===== */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  .breadcrumb { padding: 14px 20px; font-size: 10px; }

  .contact-hero { padding: 56px 20px 56px; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { text-align: left; }
  .hero-stat-big { font-size: 72px; }

  .tech-section { padding: 48px 20px; }
  .tech-card { padding: 28px 22px; box-shadow: 4px 4px 0 var(--ink); }
  .tech-card h3 { font-size: 26px; }

  .check-cta { padding: 56px 20px; }
  .check-cta-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== RESPONSIVE — about page ===== */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .connect-grid { grid-template-columns: 1fr; }
  .connect-header { grid-template-columns: 1fr; gap: 24px; }
  .findus-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .story { padding: 64px 20px; }
  .story-visual { aspect-ratio: 5/4; }
  .connect { padding: 64px 20px; }
  .connect-header { margin-bottom: 32px; }
  .connect-header p { padding-bottom: 0; }
  .connect-grid { gap: 14px; }
  .connect-card { padding: 28px 24px; }
  .connect-card h3 { font-size: 26px; }
  .findus { padding: 56px 20px; }
  .findus-panel { padding: 40px 24px; box-shadow: 5px 5px 0 var(--ink); }
  .findus-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== RESPONSIVE — contact page ===== */
@media (max-width: 1024px) {
  .methods-grid { grid-template-columns: repeat(2, 1fr); }
  .info-form-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .methods-section { padding: 48px 20px; }
  .methods-grid { grid-template-columns: 1fr; gap: 14px; }
  .method-card { padding: 22px 20px; }
  .info-form-section { padding: 48px 20px; }
  .contact-form { padding: 24px 18px; box-shadow: 4px 4px 0 var(--ink); }
  .form-h2 { font-size: 26px; }
  .info-block h2 { font-size: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .topic-grid { grid-template-columns: 1fr; }
}
