/*
Theme Name:  La Tête dans le Cloud
Theme URI:   https://latetedanslecloud.fr
Author:      Remy DE FREITAS
Author URI:  https://latetedanslecloud.fr
Description: Thème sur-mesure pour LTDLC — aide informatique à domicile. Design tech accessible, optimisé seniors, SEO local Douai.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: ltdlc
*/

/* ============================================================
   VARIABLES — Palette LTDLC (logo validé 23/06/2026)
============================================================ */
:root {
  --blue:        #1B74CC;   /* Bleu LTDLC principal */
  --blue-dark:   #155FA0;   /* Bleu foncé — hover boutons */
  --navy:        #1B2D52;   /* Bleu nuit — header, hero, titres */
  --navy-light:  #243A6A;   /* Navy plus clair */
  --white:       #FFFFFF;
  --bg:          #F4F8FD;   /* Fond page */
  --bg-section:  #EEF5FC;   /* Sections alternées */
  --border:      #C5DCF5;
  --text:        #1E293B;   /* Corps de texte */
  --text-muted:  #5B7A9A;
  --text-light:  #94A3B8;
  --green:       #16A34A;
  --green-bg:    #DCFCE7;
  --orange:      #EA580C;
  --orange-bg:   #FFF7ED;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 2px 12px rgba(27,45,82,0.08);
  --shadow-md: 0 4px 24px rgba(27,45,82,0.12);
  --transition: all 0.2s ease;

  --container: 1160px;
  --gutter:    clamp(16px, 4vw, 32px);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }
ul { list-style: none; }

h1,h2,h3,h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(28px,4vw,48px); }
h2 { font-size: clamp(22px,3vw,34px); }
h3 { font-size: clamp(18px,2.5vw,24px); }
h4 { font-size: 18px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(48px, 7vw, 80px);
}
.section--alt { background: var(--bg-section); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-section);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section--navy .section-label {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #7DD3FC;
}

.section-header { margin-bottom: clamp(28px,5vw,48px); }
.section-header p { font-size: 18px; color: var(--text-muted); margin-top: 12px; }
.section--navy .section-header p { color: rgba(255,255,255,0.7); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,116,204,0.35);
}
.btn--secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--bg-section);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn svg { flex-shrink: 0; }

/* ============================================================
   HEADER & NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27,45,82,0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.site-logo img { height: 44px; width: auto; }
.site-logo__text { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.site-logo__text span { color: var(--blue); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none !important;
}
.site-nav a:hover, .site-nav a.current-menu-item {
  background: var(--bg-section);
  color: var(--blue);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none !important;
}
.header-phone:hover { color: var(--blue); }
.header-phone svg { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--navy);
  padding-block: clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

/* Grille tech en arrière-plan */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,116,204,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,116,204,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,116,204,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero__content { max-width: 640px; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7DD3FC;
  background: rgba(27,116,204,0.2);
  border: 1px solid rgba(109,186,245,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7DD3FC;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.3); }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero__proof-item svg { color: #7DD3FC; flex-shrink: 0; }

/* Badge flottant côté droit */
.hero__badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 24px;
  width: 260px;
  flex-shrink: 0;
}
.hero__badge-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.hero__badge-item:last-child { border-bottom: none; }
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7DD3FC;
  flex-shrink: 0;
}
.hero__badge-dot.orange { background: #FB923C; }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 20px;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ============================================================
   SERVICE CARDS
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  border-radius: 3px 3px 0 0;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--blue);
}
.service-card__icon svg { color: var(--blue); transition: var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--white); }

.service-card__price {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--bg-section);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.service-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card__link:hover { gap: 8px; text-decoration: none; }

/* ============================================================
   FEATURES (3 colonnes arguments)
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(27,116,204,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { color: #7DD3FC; }
.feature-body h3 { font-size: 17px; color: var(--white); margin-bottom: 6px; }
.feature-body p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 0; }

/* ============================================================
   STEPS (Comment ça marche)
============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 16px;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--border);
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

/* ============================================================
   TARGETS (Pour qui ?)
============================================================ */
.targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 20px;
}
.target-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.target-card__emoji { font-size: 36px; margin-bottom: 14px; }
.target-card h3 { font-size: 18px; margin-bottom: 10px; }
.target-card p { font-size: 15px; color: var(--text-muted); margin-bottom: 0; }

/* ============================================================
   PRICE TABLE
============================================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15px;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-table td { padding: 14px 18px; border-bottom: 1px solid var(--bg-section); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg); }
.price-highlight { font-weight: 700; color: var(--blue); font-size: 17px; }
.price-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* ============================================================
   ABOUT / À PROPOS
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-photo img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.about-badge svg { color: var(--blue); }
.about-badge__text { font-size: 13px; font-weight: 600; color: var(--navy); }

.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; margin-bottom: 28px; }
.about-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-section);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============================================================
   ZONE
============================================================ */
.zone-box {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.zone-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zone-icon svg { color: var(--white); }
.zone-box h3 { font-size: 18px; margin-bottom: 6px; }
.zone-box p { font-size: 15px; color: var(--text-muted); margin-bottom: 0; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.zone-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #243A6A 100%);
  padding-block: clamp(48px,6vw,72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,116,204,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,116,204,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 32px; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,116,204,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}
.form-check label { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info__title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { color: var(--white); }
.contact-item__label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.contact-item__value { font-size: 16px; font-weight: 700; color: var(--navy); }
.contact-item a { color: var(--navy); text-decoration: none !important; }
.contact-item a:hover { color: var(--blue); }

/* ============================================================
   PAGE INNER
============================================================ */
.page-hero {
  background: var(--navy);
  padding-block: 60px 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,116,204,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,116,204,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero__intro { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 680px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.page-content { padding-block: 56px; }
.content-prose { max-width: 760px; }
.content-prose h2 { font-size: 26px; margin-top: 40px; margin-bottom: 14px; border-bottom: 2px solid var(--bg-section); padding-bottom: 10px; }
.content-prose h3 { font-size: 20px; margin-top: 28px; margin-bottom: 10px; }
.content-prose p { color: var(--text); margin-bottom: 16px; }
.content-prose ul { margin: 0 0 16px 0; }
.content-prose ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
  font-size: 16px;
}
.content-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* Alert / Notice boxes */
.notice {
  border-left: 4px solid var(--blue);
  background: var(--bg-section);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
  font-size: 15px;
}
.notice--warn { border-color: #F59E0B; background: #FFF9EB; }
.notice--ok { border-color: var(--green); background: var(--green-bg); }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { color: var(--green); }
.checklist__text { font-size: 15px; color: var(--text); }
.checklist__text strong { color: var(--navy); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-block: 56px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand__name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-brand__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-brand__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.footer-brand__contact a:hover { color: #7DD3FC; }
.footer-brand__contact svg { color: #7DD3FC; flex-shrink: 0; }

.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom__links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   FLOATING CTA (mobile)
============================================================ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.float-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(27,116,204,0.4);
  text-decoration: none;
  animation: float-bounce 3s ease-in-out infinite;
}
@keyframes float-bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .steps::before { display: none; }
}

@media (max-width: 640px) {
  .site-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .float-cta { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Mobile nav open */
.mobile-nav-open .site-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--gutter);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.mobile-nav-open .site-nav a {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   ACCESSIBILITY
============================================================ */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ============================================================
   MESSAGES
============================================================ */
.form-success {
  display: none;
  background: var(--green-bg);
  border: 1px solid #86EFAC;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #166534;
  font-weight: 600;
  margin-top: 16px;
}
.form-error {
  display: none;
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #991B1B;
  margin-top: 16px;
}
