/* =========================================================
   EDILNEWGEN — Design system
   Colori estratti da logo.png: navy #003551, ciano #009FE3
   Accento caldo (CTA/urgenza): #EDB300
   ========================================================= */

:root{
  --navy: #003551;
  --navy-dark: #002031;
  --navy-soft: #005A84;
  --teal: #009FE3;
  --teal-light: #40B7EA;
  --accent: #EDB300;
  --accent-dark: #BD8F00;
  --bg: #F6F8FA;
  --bg-alt: #FFFFFF;
  --ink: #12202B;
  --muted: #5B6B76;
  --border: #E2E7EB;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --sec: 96px;
  --radius: 14px;
  --shadow: 0 20px 45px -20px rgba(0, 32, 49, .25);
  --shadow-sm: 0 8px 24px -12px rgba(0, 32, 49, .2);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-alt);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4{
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p{ margin: 0 0 1em; color: var(--muted); line-height: 1.7; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

.container{
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad{ padding: var(--sec) 0; }
.bg-alt{ background: var(--bg); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-head);
  font-weight:700;
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--teal);
  background: rgba(0,159,227,.1);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px; border-radius:50%;
  background: var(--accent);
}

.section-head{
  max-width: 680px;
  margin: 0 0 52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); }
.section-head p{ font-size: 1.05rem; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-head);
  font-weight:700;
  font-size: .95rem;
  padding: 16px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--accent{
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 14px 30px -10px rgba(237,179,0,.55);
}
.btn--accent:hover{ background: var(--accent-dark); transform: translateY(-2px); }
.btn--outline{
  border-color: rgba(255,255,255,.55);
  color:#fff;
}
.btn--outline:hover{ background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--navy{
  background: var(--navy);
  color:#fff;
}
.btn--navy:hover{ background: var(--navy-dark); transform: translateY(-2px); }
.btn--sm{ padding: 11px 20px; font-size: .82rem; border-radius: 8px; }
.btn--block{ width:100%; }

/* =========================================================
   HEADER
   ========================================================= */
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 28px;
  height: 38px;
}
.topbar a{ display:flex; align-items:center; gap:7px; }
.topbar a:hover{ color:#fff; }
.topbar svg{ width:14px; height:14px; }

header.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 84px;
}
.logo{ flex-shrink:0; }
.logo img{ height: 24px; width:auto; flex-shrink:0; }

.nav-menu{
  display:flex;
  align-items:center;
  gap: 22px;
}
.nav-menu a{
  font-family: var(--font-head);
  font-weight:600;
  font-size: .8rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-menu a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--accent);
  transition: width .2s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  display:flex;
  flex-direction:column;
  line-height:1.15;
  font-family: var(--font-head);
}
.nav-phone small{ font-size:.68rem; color: var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:.06em; }
.nav-phone strong{ color: var(--navy); font-size:.95rem; }

.burger{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
  align-items:center;
  justify-content:center;
}
.burger span, .burger span::before, .burger span::after{
  content:""; display:block;
  width:20px; height:2px; background: var(--navy);
  position:relative; transition: all .2s ease;
}
.burger span::before{ position:absolute; top:-6px; }
.burger span::after{ position:absolute; top:6px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(100deg, rgba(0,32,49,.94) 20%, rgba(0,53,81,.82) 55%, rgba(0,159,227,.55) 100%);
  z-index:1;
}
.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:0;
}
.hero .container{ position:relative; z-index:2; }
.hero-inner{ max-width: 700px; }
.hero-inner .eyebrow{ background: rgba(255,255,255,.14); color:#fff; }
.hero-inner .eyebrow::before{ background: var(--accent); }
.hero h2{
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  color:#fff;
  margin-bottom:.4em;
}
.hero h2 span{ color: var(--teal-light); }
.hero p.lead{
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top: 32px;
}
.hero-badges{
  display:flex;
  gap:26px;
  margin-top: 56px;
  flex-wrap:wrap;
}
.hero-badge{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-head);
  font-weight:700;
  font-size:.85rem;
  color: rgba(255,255,255,.92);
}
.hero-badge svg{ width:20px; height:20px; color:var(--teal-light); flex-shrink:0; }

.scroll-indicator{
  position:absolute;
  bottom: 28px; left:50%;
  transform: translateX(-50%);
  z-index:2;
  display:flex; flex-direction:column; align-items:center;
  gap:8px;
  color: rgba(255,255,255,.7);
  font-size:.7rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-family: var(--font-head);
  font-weight:600;
}
.scroll-indicator .line{
  width:1px; height:34px;
  background: rgba(255,255,255,.5);
  overflow:hidden;
  position:relative;
}
.scroll-indicator .line::after{
  content:"";
  position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: #fff;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine{ to{ top:100%; } }

/* =========================================================
   PROMO STRIP
   ========================================================= */
.promo-strip{
  background: linear-gradient(90deg, var(--accent), #F1C233);
  color: var(--navy);
}
.promo-strip .container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding: 14px 24px;
  text-align:center;
  font-size:.92rem;
  font-weight:600;
  flex-wrap:wrap;
}
.promo-strip strong{ font-family: var(--font-head); }
.promo-strip svg{ width:18px; height:18px; flex-shrink:0; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar{
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 64px 0;
}
.stat-item{ position:relative; text-align:center; padding: 0 20px; }
.stat-item:not(:last-child)::after{
  content:"";
  position:absolute; top:12%; bottom:12%; right:-2px;
  width:1px;
  background: rgba(255,255,255,.15);
}
.stat-item .num{
  font-family: var(--font-head);
  font-weight:900;
  font-size: clamp(2.2rem,3.6vw,3rem);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.stat-item .num small{ font-size:1.6rem; color: var(--accent); }
.stat-item .label{
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  font-weight:600;
  margin-top:10px;
}

/* =========================================================
   PERCHE' SCEGLIERCI — bento cards
   ========================================================= */
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card .icon{
  width:52px; height:52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.why-card .icon svg{ width:26px; height:26px; color:#fff; }
.why-card h3{ font-size: 1.08rem; color: var(--navy); }
.why-card p{ font-size:.92rem; margin-bottom:0; }

/* =========================================================
   SERVIZI
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
  display:flex;
  flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .thumb{
  height:190px;
  overflow:hidden;
  position:relative;
}
.service-card .thumb img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.service-card:hover .thumb img{ transform: scale(1.08); }
.service-card .thumb::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,32,49,.55));
}
.service-card .num-badge{
  position:absolute; top:14px; left:14px; z-index:2;
  width:34px; height:34px;
  border-radius:8px;
  background: var(--accent);
  color: var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:800; font-size:.85rem;
}
.service-card .body{ padding: 22px 22px 26px; flex:1; display:flex; flex-direction:column; }
.service-card h3{ font-size: 1.12rem; color: var(--navy); }
.service-card p{ font-size:.92rem; }
.service-card .tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; padding-top:10px; }
.service-card .tags span{
  font-size:.72rem; font-weight:600;
  background: var(--bg);
  color: var(--teal);
  padding: 5px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
}
.service-card.featured{
  grid-column: span 2;
}
.service-card.featured .thumb{ height:260px; }
@media (min-width:769px){
  .service-card.featured{ flex-direction: row; }
  .service-card.featured .thumb{ width:46%; height:auto; }
  .service-card.featured .body{ width:54%; justify-content:center; }
}

/* =========================================================
   MARCHIO DIVIDER
   ========================================================= */
.brand-divider{
  position:relative;
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-soft) 55%, var(--teal) 130%);
  color:#fff;
  padding: 84px 0;
  overflow:hidden;
  text-align:center;
}
.brand-divider::before{
  content:"";
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 26px);
  pointer-events:none;
}
.brand-divider .mark{
  width: 84px;
  margin: 0 auto 26px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.25));
}
.brand-divider h3{
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color:#fff;
  max-width: 680px;
  margin: 0 auto 10px;
}
.brand-divider p{
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto;
}

/* =========================================================
   CHI SIAMO
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.about-media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.about-media img{ width:100%; height:520px; object-fit:cover; }
.about-media .founder-tag{
  position:absolute; left:20px; bottom:20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 14px 20px;
  display:flex; align-items:center; gap:12px;
  box-shadow: var(--shadow-sm);
}
.about-media .founder-tag .dot{
  width:10px;height:10px;border-radius:50%;
  background:#2CBE6B;
  box-shadow: 0 0 0 4px rgba(44,190,107,.2);
}
.about-media .founder-tag strong{ display:block; font-family: var(--font-head); color: var(--navy); font-size:.9rem; }
.about-media .founder-tag span{ font-size:.75rem; color: var(--muted); }

.about-copy h2{ color: var(--navy); font-size: clamp(1.8rem,3vw,2.5rem); }
.about-values{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 26px 0 30px;
}
.about-value{ display:flex; gap:12px; align-items:flex-start; }
.about-value svg{ width:22px; height:22px; color: var(--accent); flex-shrink:0; margin-top:2px; }
.about-value strong{ display:block; font-family: var(--font-head); font-size:.92rem; color: var(--navy); }
.about-value span{ font-size:.85rem; color: var(--muted); }

/* =========================================================
   LAVORI / PORTFOLIO — prima/dopo
   ========================================================= */
.ba-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-card{ display:flex; flex-direction:column; }
.ba-slider{
  position:relative;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--radius);
  overflow:hidden;
  cursor: ew-resize;
  user-select:none;
  box-shadow: var(--shadow-sm);
  touch-action: pan-y;
}
.ba-media{ position:absolute; inset:0; width:100%; height:100%; }
.ba-media img{ width:100%; height:100%; object-fit:cover; display:block; pointer-events:none; }
.ba-before{ clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-tag{
  position:absolute; top:14px;
  font-family: var(--font-head); font-weight:700; font-size:.7rem;
  letter-spacing:.06em; text-transform:uppercase;
  color:#fff;
  background: rgba(0,32,49,.65);
  backdrop-filter: blur(3px);
  padding: 6px 12px;
  border-radius: 999px;
  z-index:2;
  pointer-events:none;
}
.ba-tag--before{ left:14px; }
.ba-tag--after{ right:14px; background: rgba(237,179,0,.85); }
.ba-handle{
  position:absolute; top:0; bottom:0;
  left: var(--pos);
  width:0;
  z-index:3;
  pointer-events:none;
}
.ba-handle::before{
  content:"";
  position:absolute; top:0; bottom:0; left:-1px;
  width:3px;
  background:#fff;
  box-shadow: 0 0 0 1px rgba(0,32,49,.15);
}
.ba-handle svg{
  position:absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width:42px; height:42px;
  padding:10px;
  border-radius:50%;
  background:#fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.ba-caption{ padding: 20px 2px 0; }
.ba-caption h3{ font-size:1.05rem; color: var(--navy); margin-bottom:.2em; }
.ba-caption p{ font-size:.88rem; margin-bottom:0; }

/* =========================================================
   RECENSIONI
   ========================================================= */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.review-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.review-stars{ display:flex; gap:3px; margin-bottom:14px; }
.review-stars svg{ width:16px; height:16px; color:#F5A623; }
.review-card p{ color: var(--ink); font-size:.95rem; }
.review-who{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.review-avatar{
  width:42px; height:42px; border-radius:50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:.85rem;
}
.review-who strong{ display:block; font-size:.88rem; color: var(--navy); font-family: var(--font-head); }
.review-who span{ font-size:.78rem; color: var(--muted); }
.reviews-note{
  text-align:center;
  font-size:.78rem;
  color: var(--muted);
  margin-top: 22px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ max-width: 820px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  padding: 22px 4px;
  background:none;
  border:none;
  text-align:left;
  font-family: var(--font-head);
  font-weight:700;
  font-size: 1rem;
  color: var(--navy);
}
.faq-q .plus{
  width:30px; height:30px; flex-shrink:0;
  border-radius:8px;
  background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  transition: background .2s ease;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:"";
  position:absolute;
  background: var(--navy);
  transition: transform .25s ease;
}
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; }
.faq-item.open .faq-q .plus{ background: var(--accent); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{ background:#fff; }
.faq-item.open .faq-q .plus::after{ transform: rotate(90deg) scaleY(0); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
}
.faq-a p{ padding: 0 4px 22px; font-size:.95rem; max-width: 680px; }

/* =========================================================
   CTA FINALE
   ========================================================= */
.cta-final{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding: 90px 0;
  text-align:center;
}
.cta-final .bg{
  position:absolute; inset:0;
  object-fit:cover; width:100%; height:100%;
  z-index:0;
}
.cta-final::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(0,32,49,.93), rgba(0,159,227,.75));
  z-index:1;
}
.cta-final .container{ position:relative; z-index:2; }
.cta-final h2{ color:#fff; font-size: clamp(1.8rem,3.4vw,2.7rem); max-width:700px; margin:0 auto 14px; }
.cta-final p{ color: rgba(255,255,255,.82); max-width: 560px; margin:0 auto 32px; }
.cta-final .actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   CONTATTI
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:start;
}
.contact-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.field{ margin-bottom: 18px; }
.field label{
  display:block; font-size:.8rem; font-weight:700;
  font-family: var(--font-head);
  color: var(--navy); margin-bottom:6px;
}
.field input, .field select, .field textarea{
  width:100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: .92rem;
  background: var(--bg);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--teal);
}
.field textarea{ resize: vertical; min-height: 100px; }
.check-row{ display:flex; align-items:flex-start; gap:10px; margin-bottom:14px; }
.check-row input{ margin-top:3px; }
.check-row label{ font-size:.8rem; color: var(--muted); }
.form-msg{
  display:none;
  margin-top:16px;
  padding:14px 16px;
  border-radius:9px;
  background:#E8F7EE;
  color:#1E8A4C;
  font-size:.88rem;
  font-weight:600;
}
.form-msg.show{ display:block; }

.contact-info{
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color:#fff;
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}
.contact-info h3{ color:#fff; font-size:1.3rem; }
.contact-line{
  display:flex; align-items:flex-start; gap:14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.contact-line:first-of-type{ border-top:none; }
.contact-line svg{ width:20px; height:20px; color:var(--teal-light); flex-shrink:0; margin-top:2px; }
.contact-line strong{ display:block; font-family: var(--font-head); font-size:.92rem; }
.contact-line span{ font-size:.85rem; color: rgba(255,255,255,.75); }
.map-frame{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  height: 260px;
}
.map-frame iframe{ width:100%; height:100%; border:0; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img{ height:30px; margin-bottom:18px; }
.footer-brand p{ color: rgba(255,255,255,.6); font-size:.9rem; max-width: 280px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px; border-radius:9px;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease;
}
.footer-social a:hover{ background: var(--accent); }
.footer-social svg{ width:17px; height:17px; }

.footer-col h4{
  color:#fff; font-size:.85rem; text-transform:uppercase; letter-spacing:.08em;
  margin-bottom:20px;
}
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:.88rem; color: rgba(255,255,255,.65); transition: color .2s ease; }
.footer-col a:hover{ color:#fff; }
.footer-col .contact-item{ display:flex; gap:10px; align-items:flex-start; font-size:.88rem; }
.footer-col .contact-item svg{ width:16px; height:16px; color:var(--teal-light); margin-top:3px; flex-shrink:0; }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 22px 0;
  font-size:.78rem;
  color: rgba(255,255,255,.45);
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom a{ color: rgba(255,255,255,.6); }
.footer-bottom a:hover{ color:#fff; }

.footer-credit{
  text-align:center;
  padding: 16px 0 22px;
  font-size:.74rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  :root{ --sec: 72px; }
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .service-card.featured{ grid-column: span 2; }
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-media img{ height: 380px; }
  .ba-grid{ grid-template-columns: repeat(2,1fr); }
  .reviews-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px){
  :root{ --sec: 56px; }
  .topbar .container{ justify-content:center; }
  .nav-menu, .nav-phone{ display:none; }
  .burger{ display:flex; }
  .nav-wrap{ height:70px; gap:10px; }
  .logo img{ height:18px; }
  .nav-actions{ gap:10px; }
  .nav-actions .btn--sm{ padding: 9px 14px; font-size:.76rem; }

  .hero{ min-height: 86vh; text-align:left; padding: 48px 0 96px; }
  .hero-inner .eyebrow{ margin-bottom: 26px; }
  .hero-actions .btn{ width:100%; }
  .hero-actions{ flex-direction:column; }
  .hero-badges{ margin-top:36px; gap:16px; margin-bottom: 20px; }

  .stats-grid{ grid-template-columns: repeat(2,1fr); gap:36px 28px; padding: 48px 0; }
  .stat-item::after{ display:none; }
  .why-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .service-card.featured{ grid-column: span 1; }
  .service-card.featured{ flex-direction:column; }
  .service-card.featured .thumb{ width:100%; height:190px; }
  .service-card.featured .body{ width:100%; }

  .ba-grid{ grid-template-columns: 1fr; gap:36px; }

  .reviews-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap:32px; }
  .footer-bottom{ justify-content:center; text-align:center; }
  .cta-final .actions{ flex-direction:column; align-items:stretch; }
}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0;
  background: var(--navy);
  z-index: 900;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y:auto;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav a{
  display:block;
  font-family: var(--font-head);
  font-weight:700;
  font-size: 1.3rem;
  color:#fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-nav .btn{ margin-top: 30px; }
.mobile-close{
  position:absolute; top:24px; right:24px;
  width:44px; height:44px;
  border-radius:8px;
  background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  border:none;
}
.mobile-close svg{ width:20px; height:20px; color:#fff; }
