/* ==========================================================================
   Restauro Persiane Mantova — Design System "Laghi e Gonzaga"
   Palette: blu lago #2F5D6E · terracotta #C46A3B · sabbia #8A7A5F
            avorio #F8F4EC · testo #22333B
   Font: Marcellus (titoli) + Jost (corpo)
   Forme: raggi piccoli (6px), doppi bordi, onde dei laghi, bottoni squadrati
   ========================================================================== */

:root {
  --bg: #F8F4EC;
  --surface: #FFFFFF;
  --text: #22333B;
  --text-2: #55676F;
  --lake: #2F5D6E;
  --lake-dark: #244855;
  --terra: #C46A3B;
  --terra-dark: #A5552C;
  --terra-light: #DA8B5F;
  --sand: #8A7A5F;
  --sand-soft: rgba(138, 122, 95, 0.14);
  --line: #E3DACA;
  --shadow: 0 12px 32px rgba(34, 51, 59, 0.11);
  --radius: 6px;
  --font-head: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--terra-dark); text-decoration: none; }
a:hover { color: var(--lake); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.18;
  color: var(--lake);
  margin: 0 0 0.55em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-top: 1.6em; }
h3 { font-size: 1.28rem; margin-top: 1.4em; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: 0.35em; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: 3.6rem 0; }
.section-alt { background: var(--surface); }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}

.section-title { margin-top: 0; }
.section-lead { color: var(--text-2); max-width: 60ch; }

/* Divisore a onda — il motivo dei tre laghi */
.wave-divider {
  line-height: 0;
  margin-bottom: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 56px;
  display: block;
}

.wave-divider path { fill: var(--lake-dark); }

/* ==========================================================================
   Buttons — squadrati, maiuscoli, letter-spacing
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none !important;
  line-height: 1.2;
}

.btn svg { flex: 0 0 auto; }

.btn-terra {
  background: var(--terra);
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(196, 106, 59, 0.32);
}
.btn-terra:hover {
  background: var(--lake);
  box-shadow: 0 6px 16px rgba(47, 93, 110, 0.32);
  transform: translateY(-1px);
}

.btn-lake {
  background: var(--lake);
  color: #fff !important;
}
.btn-lake:hover { background: var(--terra-dark); transform: translateY(-1px); }

.btn-outline {
  border-color: currentColor;
  color: #fff !important;
  background: transparent;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Top bar + Header — nav con sottolineatura animata
   ========================================================================== */

.topbar {
  background: var(--lake-dark);
  color: #DCE6E2;
  font-size: 0.85rem;
}

.topbar-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0;
}

.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--terra-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-in {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--lake) !important;
  text-decoration: none !important;
  flex: 0 0 auto;
}

.brand-logo { width: 42px; height: 42px; flex: 0 0 auto; }

.brand-name {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.22rem;
  line-height: 1.05;
}

.brand-name strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.58em;
  letter-spacing: 0.32em;
  color: var(--terra);
  margin-top: 0.15em;
}

.main-nav { margin-left: auto; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li { position: relative; margin: 0; }

.main-nav a,
.drop-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.main-nav a::after,
.drop-toggle::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.drop-toggle:hover { color: var(--lake); text-decoration: none; }

.main-nav a:hover::after,
.drop-toggle:hover::after { transform: scaleX(1); }

.drop-toggle svg { transition: transform 0.2s ease; }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 290px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  display: none;
  z-index: 110;
}

.dropdown li { margin: 0; }

.dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--text-2);
}

.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--bg); color: var(--terra-dark); }

@media (min-width: 1025px) {
  .has-drop:hover .dropdown,
  .has-drop:focus-within .dropdown { display: block; }
  .has-drop:hover .drop-toggle svg { transform: rotate(180deg); }
}

.header-phone { padding: 0.6rem 1.2rem; flex: 0 0 auto; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  flex: 0 0 auto;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--lake);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero — overlay gradiente blu lago
   ========================================================================== */

.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(31, 56, 66, 0.93) 0%, rgba(47, 93, 110, 0.70) 55%, rgba(47, 93, 110, 0.40) 100%),
    url('../img/hero-restauro-persiane-mantova.jpg') center / cover no-repeat;
  color: #fff;
  padding: 4.5rem 0;
}

.hero-in {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero .hero-lead { font-size: 1.13rem; color: #EDF1EA; max-width: 52ch; }

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-weight: 500;
  color: #F3F1E8;
}

.hero-points svg { flex: 0 0 auto; }

.hero-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 4px;
  border-top: 4px solid var(--terra);
  padding: 1.7rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.45rem;
}

.hero-card .form-note { font-size: 0.85rem; color: var(--text-2); margin-bottom: 1.1rem; }

/* ==========================================================================
   Forms
   ========================================================================== */

.lead-form { display: grid; gap: 0.85rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.lead-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.25rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196, 106, 59, 0.18);
}

.lead-form textarea { resize: vertical; min-height: 90px; }

.form-privacy { font-size: 0.8rem; color: var(--text-2); margin: 0; }

/* ==========================================================================
   Trust bar — icone in riquadri sabbia
   ========================================================================== */

.trustbar { background: var(--lake-dark); color: #fff; }

.trustbar-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.3rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item svg {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 11px;
  box-sizing: border-box;
  border-radius: var(--radius);
  background: var(--lake);
}

/* ==========================================================================
   Cards & grids — doppio bordo sottile
   ========================================================================== */

.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 3px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.card-img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }

.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }

.card-body h3 { margin: 0; font-size: 1.18rem; }
.card-body h3 a { color: var(--lake); text-decoration: none; }
.card-body h3 a:hover { color: var(--terra-dark); }

.card-body p { margin: 0; font-size: 0.93rem; color: var(--text-2); flex: 1; }

.card-link {
  margin-top: 0.7rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-link:hover { color: var(--lake); }

/* Why-us cards */
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 3px;
  border-radius: var(--radius);
  padding: 1.5rem;
}

.why-card .why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--sand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.why-card h3 { font-size: 1.18rem; margin: 0 0 0.4rem; }
.why-card p { margin: 0; font-size: 0.93rem; color: var(--text-2); }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 1.1rem 0 0;
}

.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb li + li::before { content: '›'; color: var(--terra); }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--terra-dark); }
.breadcrumb [aria-current] { color: var(--terra-dark); font-weight: 600; }

/* ==========================================================================
   Content blocks
   ========================================================================== */

.page-head { padding: 1.4rem 0 0.6rem; }

.content-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 1.6rem 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.lead { font-size: 1.08rem; color: var(--text-2); }

/* ==========================================================================
   Tables — header blu lago
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin: 1.4rem 0;
}

table.price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table caption {
  text-align: left;
  padding: 1rem 1.2rem 0.4rem;
  font-weight: 400;
  color: var(--lake);
  font-family: var(--font-head);
  font-size: 1.15rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table thead th {
  background: var(--lake);
  color: #F8F4EC;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table tbody tr:nth-child(even) { background: #FAF6ED; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td.price { font-weight: 600; color: var(--terra-dark); white-space: nowrap; }

.table-note { font-size: 0.85rem; color: var(--text-2); margin-top: 0.6rem; }

/* ==========================================================================
   Process steps — numeri in riquadri terracotta
   ========================================================================== */

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--terra);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.step h3 { font-size: 1.12rem; margin: 0 0 0.35rem; }
.step p { margin: 0; font-size: 0.9rem; color: var(--text-2); }

/* ==========================================================================
   Zone chips — squadrate
   ========================================================================== */

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }

.chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.15s ease;
}

.chip:hover {
  background: var(--lake);
  border-color: var(--lake);
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list { display: grid; gap: 0.7rem; margin-top: 1.4rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item.open { border-left-color: var(--terra); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: none;
  border: 0;
  font-family: var(--font-head);
  font-size: 1.12rem;
  color: var(--lake);
  text-align: left;
  cursor: pointer;
}

.faq-q svg { flex: 0 0 auto; }
.faq-q svg line { transition: opacity 0.2s ease; }
.faq-item.open .faq-q svg line:first-child { opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-2);
  font-size: 0.95rem;
}

.faq-a-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CTA sections — blu lago con accento terracotta
   ========================================================================== */

.cta {
  background:
    radial-gradient(circle at 88% 15%, rgba(196, 106, 59, 0.24) 0%, rgba(196, 106, 59, 0) 55%),
    linear-gradient(120deg, var(--lake-dark), var(--lake));
  color: #fff;
  border-radius: 0;
  padding: 3.2rem 0;
}

.cta h2 { color: #fff; margin-top: 0; }
.cta p { color: #D6E0DC; max-width: 58ch; }

.cta-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.cta-phone-big {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: #fff !important;
}

.cta-phone-big:hover { color: var(--terra-light) !important; }

/* CTA with form (bottom of service pages) */
.cta-form { background: var(--surface); border-top: 1px solid var(--line); }

.cta-form-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ==========================================================================
   Footer — blu lago profondo
   ========================================================================== */

.site-footer {
  background: var(--lake-dark);
  color: #BFCFC9;
  font-size: 0.92rem;
  padding: 3.2rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 2.2rem;
  padding-bottom: 2.2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.site-footer a { color: #BFCFC9; }
.site-footer a:hover { color: var(--terra-light); }

.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name strong { color: var(--terra-light); }

.footer-contact li { display: flex; gap: 0.5rem; align-items: baseline; }
.footer-contact strong { color: #fff; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

/* ==========================================================================
   Satellite (minimal) pages
   ========================================================================== */

.sat-cta-box {
  background: var(--surface);
  border: 1px solid var(--terra);
  outline: 1px solid var(--terra);
  outline-offset: 3px;
  border-radius: var(--radius);
  padding: 1.6rem;
  margin: 2rem 0;
}

.sat-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }

.footer-minimal {
  background: var(--lake-dark);
  color: #BFCFC9;
  padding: 2rem 0;
  font-size: 0.9rem;
  text-align: center;
}

.footer-minimal a { color: #fff; font-weight: 600; margin: 0 0.5rem; }
.footer-minimal a:hover { color: var(--terra-light); }
.footer-minimal p { margin: 0.4rem 0; }

/* ==========================================================================
   Utility pages (grazie / 404)
   ========================================================================== */

.utility-hero {
  text-align: center;
  padding: 4.5rem 0 3rem;
}

.utility-hero h1 { margin-bottom: 0.4em; }

.utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.check-badge {
  width: 74px;
  height: 74px;
  border-radius: var(--radius);
  background: var(--lake);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.popular-links {
  max-width: 640px;
  margin: 2.5rem auto 0;
  text-align: left;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    background: var(--surface);
    box-shadow: -12px 0 34px rgba(34, 51, 59, 0.18);
    transform: translateX(105%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    padding: 4.4rem 1.1rem 2rem;
    z-index: 99;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }

  .main-nav a, .drop-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.8rem;
    font-size: 1rem;
  }

  .main-nav a::after, .drop-toggle::after { display: none; }

  .has-drop { border-bottom: 1px solid var(--line); }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--terra);
    border-radius: 0;
    max-height: none;
    overflow: visible;
    padding: 0.2rem 0 0.6rem 0.9rem;
    min-width: 0;
  }

  .has-drop.open .dropdown { display: block; }
  .has-drop.open .drop-toggle svg { transform: rotate(180deg); }

  .header-in { gap: 0.7rem; }
  .header-phone { margin-left: auto; }
  .header-phone .phone-label { display: none; }

  .hero-in { grid-template-columns: 1fr; gap: 2.2rem; }
  .trustbar-in { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .cta-form-in { grid-template-columns: 1fr; gap: 2rem; }
  .split { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 2rem); }
  .topbar-in span { display: none; }
  .topbar-in { justify-content: center; }
  .hero { padding: 3rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .trustbar-in { grid-template-columns: 1fr 1fr; }
  .trust-item { font-size: 0.87rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .cta-in { flex-direction: column; align-items: flex-start; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .header-phone { padding: 0.55rem 0.8rem; }
}
