/* A-DOOR Belux — page layout (tokens live in brand.css) */

/* ============ HEADER ============ */
.brand-header-brand{ display: flex; align-items: center; flex-shrink: 0; }

.header-nav{ display: none; gap: 34px; }
@media (min-width: 940px){ .header-nav{ display: flex; } }
.header-nav a{
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand-ink);
  padding: 4px 0;
  transition: color .2s var(--brand-ease);
}
.header-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
  transition: width .28s var(--brand-ease);
}
.header-nav a:hover{ color: var(--brand-navy); }
.header-nav a:hover::after{ width: 100%; }

.header-right{ display: flex; align-items: center; gap: 12px; }
.header-phone-btn{ padding: 12px 20px; font-size: 14px; display: none; }
@media (min-width: 620px){ .header-phone-btn{ display: inline-flex; } }

.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: var(--brand-white);
  cursor: pointer;
  color: var(--brand-ink);
}
@media (min-width: 940px){ .nav-toggle{ display: none; } }

.mobile-nav{
  display: none;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-white);
  padding: 10px 24px 20px;
}
.mobile-nav.is-open{ display: block; }
@media (min-width: 940px){ .mobile-nav.is-open{ display: none; } }
.mobile-nav a{
  display: block;
  padding: 13px 4px;
  font-weight: 600;
  color: var(--brand-ink);
  border-bottom: 1px solid var(--brand-border);
}
.mobile-nav a:last-child{ border-bottom: none; }

/* ============ HERO ============ */
.hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 90px 0 150px;
  background-size: cover;
  background-position: center 62%;
  color: var(--brand-white);
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(13,24,52,.95) 0%, rgba(13,24,52,.88) 32%, rgba(13,24,52,.55) 56%, rgba(13,24,52,.12) 100%);
}
.hero::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to top, var(--brand-white), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-inner{ position: relative; z-index: 2; }
/* Panel sits left so the dark overlay doesn't fall on the garage door, which is on the right of the hero photo */
.hero-panel{ max-width: 620px; }

.hero-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
  margin-bottom: 26px;
}
.hero-tag span.dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(243,100,31,.25);
}

.hero h1{
  font-size: clamp(38px, 6.2vw, 68px);
  font-weight: 700;
  color: var(--brand-white);
  margin: 0 0 22px;
  letter-spacing: -.03em;
}
.hero h1 .accent{
  color: var(--brand-orange-soft);
  display: inline-block;
}
.hero-sub{
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  max-width: 52ch;
  margin: 0 0 34px;
}
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 14px; }

/* floating trust bar overlapping the next section */
.trust-bar{
  position: relative;
  z-index: 5;
  margin-top: -80px;
  margin-bottom: 10px;
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 4px;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
  overflow: hidden;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
}
.trust-item + .trust-item{ box-shadow: inset 1px 0 0 var(--brand-border); }
.trust-item svg{
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: var(--brand-orange);
}
.trust-item strong{
  display: block;
  font-family: var(--brand-font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--brand-ink);
  line-height: 1.3;
}
.trust-item span{ font-size: 13px; color: var(--brand-muted); }

/* ============ SERVICES ============ */
.services{ padding: 92px 0 96px; }
.section-head{ max-width: 660px; margin-bottom: 52px; }
.section-head--center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .brand-eyebrow{ justify-content: center; }

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 22px;
}
.service-card{
  position: relative;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  padding: 30px 26px 28px;
  overflow: hidden;
  transition: transform .35s var(--brand-ease), box-shadow .35s var(--brand-ease),
              border-color .35s var(--brand-ease);
}
.service-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--brand-ease);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--brand-shadow);
  border-color: transparent;
}
.service-card:hover::before{ transform: scaleX(1); }
.service-card .icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39,69,149,.1), rgba(243,100,31,.12));
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .35s var(--brand-ease), color .35s var(--brand-ease);
}
.service-card:hover .icon{ background: var(--brand-navy); color: var(--brand-white); }
.service-card .icon svg{ width: 25px; height: 25px; }
.service-card h3{
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 9px;
}
.service-card p{
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--brand-body);
  margin: 0;
}

/* ============ RÉALISATIONS ============ */
.gallery{
  padding: 92px 0 100px;
  background: var(--brand-bg);
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 860px){
  .gallery-grid{
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1){ grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4){ grid-column: span 2; }
}
.gallery-item{
  position: relative;
  border-radius: var(--brand-radius);
  overflow: hidden;
  min-height: 190px;
  box-shadow: var(--brand-shadow-sm);
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--brand-ease);
}
.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,24,52,.72) 0%, rgba(13,24,52,.05) 55%);
  opacity: .85;
  transition: opacity .4s var(--brand-ease);
}
.gallery-item:hover img{ transform: scale(1.07); }
.gallery-item:hover::after{ opacity: 1; }
.gallery-caption{
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  color: var(--brand-white);
  font-family: var(--brand-font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}

/* ============ WHY US ============ */
.why{ padding: 96px 0; }
.why-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px){
  .why-inner{ grid-template-columns: .95fr 1.05fr; gap: 64px; }
}
/* z-index:0 makes this a stacking context so the ::before accent frame (z-index:-1) paints behind the photo instead of behind the page background */
.why-visual{ position: relative; z-index: 0; }
.why-visual img{
  width: 100%;
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.why-visual::before{
  content: "";
  position: absolute;
  left: -18px; top: -18px;
  width: 130px; height: 130px;
  border: 3px solid var(--brand-orange);
  border-radius: var(--brand-radius-lg);
  z-index: -1;
}
.why-badge{
  position: absolute;
  right: -14px; bottom: 28px;
  background: var(--brand-white);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow-lg);
  padding: 18px 22px;
  max-width: 220px;
}
.why-badge strong{
  display: block;
  font-family: var(--brand-font-display);
  font-size: 16px;
  color: var(--brand-ink);
  margin-bottom: 2px;
}
.why-badge span{ font-size: 13px; color: var(--brand-muted); line-height: 1.5; display: block; }

.why-list{
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px 26px;
}
.why-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-ink);
}
.why-list svg{
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand-orange);
}

/* ============ PROCESS ============ */
.process{
  padding: 92px 0 100px;
  background: var(--brand-bg);
}
.process-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
  counter-reset: step;
}
.process-step{
  position: relative;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  padding: 32px 26px 28px;
  transition: transform .35s var(--brand-ease), box-shadow .35s var(--brand-ease);
}
.process-step:hover{ transform: translateY(-5px); box-shadow: var(--brand-shadow); }
.process-step .num{
  font-family: var(--brand-font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(39,69,149,.28);
  margin-bottom: 14px;
}
.process-step h3{ font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.process-step p{ font-size: 14.5px; line-height: 1.65; color: var(--brand-body); margin: 0; }

/* ============ PARTNERS ============ */
.partners{ padding: 58px 0; border-bottom: 1px solid var(--brand-border); }
.partners-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.partners-label{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 6px;
}
.partners-logos{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 4px; }
.partners-logo{ width: 150px; height: auto; }
.partners-logo--sesame{ width: 120px; }
.partners-text{ color: var(--brand-body); font-size: 15px; max-width: 40ch; margin: 0; }
.partners-seal{ display: flex; flex-direction: column; align-items: center; gap: 8px; }
.partners-sigle{ width: 170px; height: auto; }
.partners-badge{ width: 150px; height: auto; }
@media (max-width: 760px){
  .partners-inner{ flex-direction: column; align-items: flex-start; }
  .partners-seal{ align-items: flex-start; }
}

/* ============ PRODUCTS ============ */
.products{ padding: 92px 0 96px; background: var(--brand-bg); }
.spec-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 52px;
}
@media (min-width: 560px){ .spec-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .spec-grid{ grid-template-columns: repeat(4, 1fr); } }
.spec{
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-left: 3px solid var(--brand-orange);
  border-radius: var(--brand-radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec strong{ font-family: var(--brand-font-display); font-size: 17px; color: var(--brand-navy); }
.spec span{ font-size: 14px; color: var(--brand-body); line-height: 1.5; }
.products-subtitle{ font-size: 21px; font-weight: 600; margin: 0 0 20px; }
.panel-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
.panel-card{
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  overflow: hidden;
  transition: transform .3s var(--brand-ease), box-shadow .3s var(--brand-ease);
}
.panel-card:hover{ transform: translateY(-4px); box-shadow: var(--brand-shadow); }
.panel-card img{ width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; padding: 10px; }
.panel-card figcaption{ padding: 0 14px 14px; display: flex; flex-direction: column; gap: 2px; }
.panel-card strong{ font-family: var(--brand-font-display); font-size: 16px; color: var(--brand-navy); }
.panel-card span{ font-size: 13.5px; color: var(--brand-body); line-height: 1.45; }
.products-columns{ display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 900px){ .products-columns{ grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.finish-list{ display: grid; gap: 14px; }
.finish{
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 18px;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  overflow: hidden;
}
.finish img{ width: 150px; height: 84px; object-fit: cover; }
.finish div{ display: flex; flex-direction: column; gap: 2px; padding-right: 14px; }
.finish strong{ font-family: var(--brand-font-display); font-size: 16px; color: var(--brand-ink); }
.finish span{ font-size: 14px; color: var(--brand-body); }
.color-list{ list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.color-list li{ display: flex; align-items: center; gap: 14px; font-weight: 500; color: var(--brand-ink); }
.swatch{
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--brand-border);
  flex-shrink: 0;
}
.swatch--other{ background: conic-gradient(#b5322d, #d9a441, #4f7a3a, #2f5d8a, #6b4a8a, #b5322d); }

/* ============ TIPS ============ */
.tips{ padding: 92px 0 96px; }
.tips-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  counter-reset: tip;
}
.tip{
  position: relative;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  padding: 30px 26px 24px 26px;
  counter-increment: tip;
  display: flex;
  flex-direction: column;
}
.tip::before{
  content: counter(tip);
  position: absolute;
  top: -16px; left: 22px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-family: var(--brand-font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(243,100,31,.3);
}
.tip h3{ font-size: 18px; font-weight: 600; margin: 4px 0 10px; }
.tip p{ font-size: 14.5px; line-height: 1.65; color: var(--brand-body); margin: 0 0 14px; flex: 1; }
.tip a{ font-size: 14px; font-weight: 600; color: var(--brand-navy); }
.tip a:hover{ color: var(--brand-orange); }

/* ============ CTA ============ */
.cta{
  position: relative;
  padding: 92px 0;
  background: linear-gradient(120deg, var(--brand-navy-deep), var(--brand-navy) 60%, #2f52ad);
  color: var(--brand-white);
  overflow: hidden;
}
.cta::before{
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,100,31,.35), transparent 68%);
}
.cta-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 960px){
  .cta-inner{ grid-template-columns: 1fr 1.1fr; gap: 64px; }
}
.cta-copy h2{
  font-size: clamp(28px, 3.8vw, 42px);
  color: var(--brand-white);
  margin: 0 0 14px;
}
.cta-copy p{
  color: rgba(255,255,255,.82);
  font-size: 17px;
  max-width: 46ch;
  margin: 0 0 28px;
}
.cta-phone{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--brand-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--brand-white);
  letter-spacing: -.02em;
  margin-bottom: 26px;
  transition: color .25s var(--brand-ease);
}
.cta-phone:hover{ color: var(--brand-orange-soft); }
.cta-phone svg{ width: 34px; height: 34px; color: var(--brand-orange-soft); }
.cta-copy .cta-or{ font-size: 15.5px; color: rgba(255,255,255,.7); margin: 0; }

/* ============ QUOTE FORM ============ */
.devis-form{
  background: var(--brand-white);
  color: var(--brand-ink);
  border-radius: var(--brand-radius-lg);
  padding: 30px 28px;
  box-shadow: var(--brand-shadow-lg);
}
.devis-form h3{ font-size: 21px; margin: 0 0 20px; }
/* The Turnstile widget is a fixed 300px wide; on phones the card's padding would push it
   past the screen edge, so the card and its section give that width back below 480px. */
.devis-form{ min-width: 0; }
@media (max-width: 480px){
  .cta .brand-container{ padding-left: 12px; padding-right: 12px; }
  .devis-form{ padding: 24px 16px; }
}
.form-row{ display: grid; grid-template-columns: 1fr; gap: 0 14px; }
@media (min-width: 560px){ .form-row{ grid-template-columns: 1fr 1fr; } }
.form-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-ink);
}
.form-field input, .form-field select, .form-field textarea{
  font: inherit;
  font-weight: 400;
  font-size: 15px;
  color: var(--brand-ink);
  padding: 11px 13px;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-bg);
  transition: border-color .2s var(--brand-ease), box-shadow .2s var(--brand-ease), background .2s var(--brand-ease);
}
.form-field textarea{ resize: vertical; min-height: 96px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none;
  border-color: var(--brand-navy);
  background: var(--brand-white);
  box-shadow: 0 0 0 3px rgba(39,69,149,.15);
}
.form-group{ border: 0; padding: 0; margin: 0 0 16px; min-width: 0; }
.form-group legend{ padding: 0; margin-bottom: 8px; font-size: 13.5px; font-weight: 600; color: var(--brand-ink); }
.form-group .form-field{ margin-bottom: 6px; font-weight: 500; }
.form-hint{ margin: 0; font-size: 12.5px; color: var(--brand-muted); line-height: 1.5; }
.choice-row{ display: flex; flex-wrap: wrap; gap: 8px; }
.choice{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: var(--brand-bg);
  font-size: 14px;
  color: var(--brand-ink);
  cursor: pointer;
  transition: border-color .2s var(--brand-ease), background .2s var(--brand-ease);
}
.choice input{ accent-color: var(--brand-orange); margin: 0; }
.choice:has(input:checked){ border-color: var(--brand-navy); background: var(--brand-white); }
.form-other{
  display: block;
  width: 100%;
  margin-top: 10px;
  font: inherit;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-bg);
}
.form-other:focus{ outline: none; border-color: var(--brand-navy); background: var(--brand-white); box-shadow: 0 0 0 3px rgba(39,69,149,.15); }
.form-hp{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--brand-body);
  margin: 2px 0 16px;
}
.form-consent input{ margin-top: 3px; accent-color: var(--brand-orange); flex-shrink: 0; }
.form-consent a{ color: var(--brand-navy); text-decoration: underline; }
.cf-turnstile{ min-height: 65px; margin-bottom: 16px; }
.devis-form .brand-btn{ width: 100%; }
.devis-form .brand-btn:disabled{ opacity: .6; cursor: wait; transform: none; }
.devis-form .form-status{ margin: 14px 0 0; font-size: 14px; font-weight: 500; color: var(--brand-body); }
.devis-form .form-status:empty{ display: none; }
.devis-form .form-status[data-kind="success"]{ color: #1a7f4b; }
.devis-form .form-status[data-kind="error"]{ color: #c0392b; }

/* ============ FOOTER ============ */
.footer-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 62px;
  padding-bottom: 40px;
}
@media (min-width: 780px){
  .footer-inner{ grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
}
.footer-col h4{
  color: var(--brand-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col p{ margin: 0 0 10px; font-size: 14.5px; line-height: 1.7; }
.footer-col a{ font-size: 14.5px; transition: color .2s var(--brand-ease); }
.footer-col a:hover{ color: var(--brand-orange-soft); }
.footer-logo{ height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-links{ display: flex; flex-direction: column; gap: 11px; }
.footer-contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14.5px;
}
.footer-contact-item svg{ width: 17px; height: 17px; color: var(--brand-orange); flex-shrink: 0; }
.footer-contact-item--top{ align-items: flex-start; }
.footer-contact-item--top svg{ margin-top: 4px; }
.footer-contact-item address{ font-style: normal; line-height: 1.6; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-align: center;
}

/* ============ LEGAL PAGES ============ */
.legal{ padding: 56px 0 80px; }
.legal-inner{ max-width: 780px; }
.legal h1{ font-size: clamp(30px, 4vw, 42px); margin: 0 0 8px; }
.legal-updated{ color: var(--brand-muted); font-size: 14px; margin: 0 0 32px; }
.legal h2{ font-size: 20px; margin: 32px 0 10px; }
.legal p{ margin: 0 0 14px; line-height: 1.75; }
.legal a{ color: var(--brand-navy); text-decoration: underline; }

/* ============ FLOATING MOBILE CALL ============ */
.floating-call{
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(243,100,31,.45);
  animation: pulse 2.6s infinite;
}
.floating-call svg{ width: 24px; height: 24px; }
@media (min-width: 620px){ .floating-call{ display: none; } }
@keyframes pulse{
  0%   { box-shadow: 0 12px 30px rgba(243,100,31,.45), 0 0 0 0 rgba(243,100,31,.45); }
  70%  { box-shadow: 0 12px 30px rgba(243,100,31,.45), 0 0 0 16px rgba(243,100,31,0); }
  100% { box-shadow: 0 12px 30px rgba(243,100,31,.45), 0 0 0 0 rgba(243,100,31,0); }
}
@media (prefers-reduced-motion: reduce){ .floating-call{ animation: none; } }
