/* ===========================================================
   SOS Informatique Lyon — Style modernisé
   =========================================================== */

:root{
  --navy: #155263;       /* couleur de marque (bleu-pétrole d'origine) */
  --navy-dark: #262b2d;  /* fond du header d'origine */
  --topbar-black: #000000; /* barre du haut d'origine */
  --blue: #155263;
  --blue-light: #eaf2f2;
  --accent: #ff6f3c;     /* orange d'origine (CTA, hover, accents) */
  --accent-dark: #e85a2a;
  --ink: #0c0c0c;
  --ink-soft: #5b6469;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --white: #ffffff;
  --radius: 5px;
  --shadow-sm: 0 0 5px 0 rgba(0, 0, 0, .25);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, .18);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, .22);
  --maxw: 1180px;
  font-size: 16px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4{
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .6em;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section{ padding: 84px 0; }
.section-head{ max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p{ color: var(--ink-soft); font-size: 1.05rem; }
.section-alt{ background: var(--white); }

/* ---------- Buttons (fidèle : orange plein, contour au survol) ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  border-radius: 5px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn-primary{
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn-primary:hover{ background: transparent; color: var(--accent); }
.btn-ghost{
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-ghost:hover{ background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-outline{
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover{ border-color: var(--blue); color: var(--blue); }

/* ---------- Top bar (fidèle au site d'origine : fond noir) ---------- */
.topbar{
  background: var(--topbar-black);
  color: #ffffff;
  font-size: .85rem;
}
.topbar-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 20px;
  gap: 12px;
}
.topbar-brand{
  font-weight: 700;
  color: #fff;
  font-size: .92rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 10px 0 10px 6px;
}
.topbar-brand img{
  height: 62px;
  width: auto;
  display: block;
}
.topbar-brand:hover{ color: var(--accent); }
.topbar-brand .breadcrumb-line{
  font-size: .78rem;
  font-weight: 400;
  opacity: .8;
  width: 100%;
  text-align: left;
}
.topbar-right{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.topbar-label{
  display: inline-block;
  min-width: 40px;
}
.topbar-tel, .topbar-mobile-line{
  display: inline-flex;
}
.topbar-contact{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-mobile-line{
  color: #fff;
  font-size: .85rem;
}
.topbar-mobile-line a{ color: #fff; font-weight: 600; }
.topbar-mobile-line a:hover{ color: var(--accent); }
.topbar-tel a{ color: #fff; font-weight: 600; }
.topbar-tel a:hover{ color: var(--accent); }
.topbar-contact > a{ color: #fff; }
.topbar-contact > a:hover{ color: var(--accent); }

/* ---------- Header / nav (fidèle : fond sombre, liens blancs) ---------- */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}
header.site-header .wrap{
  max-width: 100%;
  padding: 0 32px;
}
.topbar .wrap{
  max-width: 100%;
  padding: 0 32px 0 0;
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo{
  display: flex;
  align-items: center;
}
.logo img{
  height: 46px;
  width: auto;
  display: block;
}
.logo:hover{ opacity: .9; }
.logo-badge{
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--accent);
  align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .9rem;
  vertical-align: middle;
  margin-right: 4px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a{
  padding: 10px 14px;
  font-weight: 500;
  font-size: .92rem;
  color: #ffffff;
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active{
  color: var(--accent);
}

/* ---------- Menu déroulant "Services" ---------- */
.nav-dropdown{ position: relative; }
.nav-dropdown-trigger{
  background: none;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-weight: 500;
  font-size: .92rem;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger.active{ color: var(--accent); }
.nav-dropdown-trigger .chevron{
  font-size: .7rem;
  transition: transform .15s ease;
}
.nav-dropdown.open .nav-dropdown-trigger .chevron{ transform: rotate(180deg); }
.nav-dropdown-menu{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 270px;
  padding: 6px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
  display: block;
}
.nav-dropdown-menu a{
  display: block;
  padding: 10px 12px;
  color: #ffffff;
  font-size: .88rem;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active{
  background: rgba(255,255,255,.08);
  color: var(--accent);
}

.nav-cta{ display: flex; align-items: center; gap: 14px; }
.nav-phone{
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: #ffffff;
}
.nav-phone svg{ color: var(--accent); }
.menu-toggle{ display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #ffffff; }

/* ---------- Carrousel d'accueil (comme le site d'origine) ---------- */
.hero-carousel{
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--navy-dark);
}
.carousel-slide{
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.carousel-slide.active{ display: flex; }
.carousel-slide::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.55));
}
.carousel-slide .wrap{
  position: relative;
  z-index: 2;
}
.carousel-slide .slide-content{
  max-width: 560px;
  color: #fff;
  padding: 60px 0;
}
.carousel-slide h2{
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: .4em;
}
.carousel-slide .slide-subtitle{
  color: #d3ddea;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px;
}
.carousel-slide p{
  color: #d3ddea;
  font-size: 1.08rem;
  margin-bottom: 26px;
}
.carousel-controls{
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  z-index: 3;
  transform: translateY(50%);
}
.carousel-controls button{
  width: 50px; height: 50px;
  border-radius: 0;
  border: none;
  background: #ffffff;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  transition: background .2s, color .2s;
}
.carousel-controls button:hover{ background: var(--accent); color: #ffffff; }

/* ---------- Grille de services (fidèle : boîtes avec bordure teal/orange) ---------- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-grid.cols-2{
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}
.service-grid.cols-2-wide{
  grid-template-columns: repeat(2, 1fr);
}
.service-box{
  background: var(--white);
  border-top: 6px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  transition: border-color .2s ease;
}
.service-box:hover{ border-color: var(--accent); }
.service-box .img-box{
  width: 60px; height: 60px;
  margin-bottom: 15px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.service-box .img-box img{ max-width: 100%; max-height: 100%; }
.service-box .img-box svg{ width: 100%; height: 100%; }
.service-box h5{
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}
.service-box p{ color: var(--ink-soft); font-size: .92rem; margin: 0 0 10px; text-align: justify; }
.service-box ul{ margin: 0 0 10px; }
.service-box ul li{ position: relative; padding-left: 18px; margin-bottom: 6px; color: var(--ink-soft); font-size: .92rem; }
.service-box ul li::before{
  content:"";
  position:absolute; left:0; top:.55em;
  width:6px; height:6px; border-radius:50%;
  background: var(--accent);
}
.service-box a.box-link{ color: var(--accent); font-weight: 600; font-size: .9rem; }
.service-box a.box-link:hover{ color: var(--navy); }
.service-video{
  display: block;
  width: 100%;
  max-height: 320px;
  border-radius: var(--radius);
  margin-top: 4px;
  background: #000;
}
.video-credit{
  font-size: .82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 14px;
  margin-bottom: 0;
}
.service-box .sub-heading{
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin: 18px 0 8px;
}
.software-logos{ display: flex; align-items: center; gap: 40px; margin-top: 30px; }
.software-logos .software-item{ text-align: center; color: var(--ink-soft); font-size: .85rem; }
.software-logos .software-icon{
  width: 56px; height: 56px; margin: 0 auto 8px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 700;
}

/* ---------- Statistiques chiffrées ---------- */
.stats-section{ padding: 20px 0 84px; }
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-grid > div{
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 10px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 20px;
  transition: border-color .2s ease;
}
.stats-grid > div:hover{ border-bottom-color: var(--accent); }
.stat-icon{
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #1a1a1a;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.stat-icon svg{ width: 32px; height: 32px; }
.stat-number{ font-size: 2rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.stat-label{ color: var(--ink-soft); font-size: .9rem; }

@media (max-width: 900px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}
@media (max-width: 600px){
  .service-grid{ grid-template-columns: 1fr; }
  .hero-carousel{ min-height: 460px; }
}

/* Page hero (sous-pages, plus compact) */
.page-hero{
  background: var(--navy);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1{ color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .3em; }
.page-hero p{ color: #dcebee; max-width: 620px; margin: 0 auto; }
.breadcrumb{ font-size: .85rem; color: #a9cdd6; margin-bottom: 18px; }
.breadcrumb a:hover{ color: var(--accent); }

/* ---------- Cards grid ---------- */
.grid{ display: grid; gap: 26px; }

.cities-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px 24px;
  list-style: none;
  padding: 0;
}
.cities-list li{ border-bottom: 1px solid var(--line); }
.cities-list a{
  display: block;
  padding: 10px 4px;
  color: var(--ink);
  font-size: .95rem;
}
.cities-list a:hover{ color: var(--accent); }
.cities-list .cp{ color: var(--ink-soft); font-size: .85rem; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--white);
  border-top: 10px solid var(--navy);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.card:hover{ border-color: var(--accent); }
.card .icon{
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
}
.card .icon img{ width: 100%; height: 100%; object-fit: contain; }
.card h3{ font-size: 1.05rem; font-weight: 700; text-transform: uppercase; margin-bottom: .5em; }
.card p, .card ul{ color: var(--ink-soft); font-size: .95rem; }
.card ul{ margin-top: 10px; }
.card ul li{ position: relative; padding-left: 20px; margin-bottom: 7px; }
.card ul li::before{
  content:"";
  position:absolute; left:0; top:.55em;
  width:8px; height:8px; border-radius:2px;
  background: var(--accent);
}
.card a.card-link{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; color:var(--blue); font-weight:600; font-size:.9rem; }

/* Icon-tile card (services Apple/PC listing) */
.tile{
  background: var(--white);
  border-top: 10px solid var(--navy);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.tile:hover{ border-color: var(--accent); }
.tile .tile-icon{
  height: 90px; margin: 0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  color: var(--navy); font-size: 1.6rem;
}
.tile .tile-icon img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.tile h4{ font-size: .92rem; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.tile p{ font-size: .85rem; color: var(--ink-soft); margin: 0; }

/* ---------- Nos Atouts (fond clair, comme l'original) ---------- */
.band{
  background: var(--white);
  color: var(--ink);
  padding: 84px 0;
}
.band h2{ color: var(--ink); text-align: center; }
.band p{ color: var(--ink-soft); }
.band .grid-3 .card{
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  border-bottom: 10px solid var(--navy);
  box-shadow: none;
  color: var(--ink);
  text-align: center;
}
.band .grid-3 .card:hover{ border-bottom-color: var(--accent); }
.band .card .icon{
  background: none;
  color: var(--ink);
  margin: 0 auto 18px;
  width: 60px; height: 60px;
}
.band .card .icon svg{ width: 100%; height: 100%; }
.band .card .icon img{ width: 100%; height: 100%; object-fit: contain; }
.band .card h3{ text-align: center; }
.band .card p{ color: var(--ink-soft); }

/* ---------- Avis clients (Google) ---------- */
.reviews-summary{
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
}
.reviews-summary h3{
  font-size: 1.4rem;
  margin: 0 0 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.reviews-summary .g-icon{ font-size: 1.3rem; }
.google-g{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC05 180deg 270deg, #EA4335 270deg 360deg);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  vertical-align: middle;
  margin-right: 4px;
}
.reviews-summary .rating-line{ color: var(--ink-soft); font-size: 1rem; margin-bottom: 20px; }
.reviews-summary .rating-line strong{ color: var(--ink); }
.reviews-summary .stars{ color: #fbbc04; letter-spacing: 2px; }
.btn-google{
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
}
.btn-google:hover{ background: #1558b0; }

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card{
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px;
}
.review-card .reviewer{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card .reviewer-name{ font-weight: 700; font-size: .95rem; color: var(--ink); }
.review-card .reviewer-time{ font-size: .8rem; color: var(--ink-soft); }
.review-card .stars{ color: #fbbc04; margin-bottom: 8px; display: block; }
.review-card p{ font-size: .88rem; color: var(--ink); margin-bottom: 12px; }
.google-wordmark{ font-weight: 700; font-size: .95rem; }
.google-wordmark .g1{ color:#4285F4; }
.google-wordmark .g2{ color:#EA4335; }
.google-wordmark .g3{ color:#FBBC05; }
.google-wordmark .g4{ color:#4285F4; }
.google-wordmark .g5{ color:#34A853; }
.google-wordmark .g6{ color:#EA4335; }

@media (max-width: 900px){
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

/* ---------- About / split ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img{ border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split .btn{ margin-top: 10px; }

.about-list{ margin-top: 26px; display: grid; gap: 18px; }
.about-list h4{ font-size: 1.02rem; margin-bottom: 4px; color: var(--navy); }
.about-list p{ margin:0; color: var(--ink-soft); font-size: .95rem; }

.info-box{
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 26px;
  font-size: .9rem;
  color: var(--navy);
}

/* ---------- Pricing ---------- */
.price-card{
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-bottom: 10px solid var(--navy);
  padding: 40px 34px;
  text-align: center;
  box-shadow: none;
  position: relative;
  transition: border-color .2s ease;
}
.price-card:hover{ border-bottom-color: var(--accent); }
.price-card .icon{
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.price-card .icon svg{ width: 100%; height: 100%; }
.price-card .icon img{ width: 100%; height: 100%; object-fit: contain; }
.price-card h3{ font-size: 1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.price-card .amount{ font-size: 1.05rem; color: var(--ink); font-weight: 600; margin: 0 0 12px; }
.price-card p.desc{ color: var(--ink); font-size: .95rem; }
.tax-note{
  margin-top: 40px; font-size: .82rem; color: var(--ink-soft);
  text-align: center; max-width: 720px; margin-left:auto; margin-right:auto;
}
.tax-note a{ color: var(--blue); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta{
  background: linear-gradient(120deg, var(--blue), #16437f);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta h2{ color: #fff; margin-bottom: .2em; }
.cta p{ color: #dbe8ff; margin: 0; }

/* ---------- Contact page ---------- */
.contact-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card{
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.contact-card img{ width: 100%; }
.contact-body{ padding: 30px; }
.contact-row{ display: flex; gap: 14px; align-items:flex-start; margin-bottom: 20px; }
.contact-row .ic{
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-row h4{ margin: 0 0 3px; font-size: .98rem; }
.contact-row p{ margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* ---------- Footer (fidèle : fond bleu-pétrole d'origine) ---------- */
footer{
  background: var(--navy);
  color: #ffffff;
  padding-top: 64px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-grid h4{ color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 18px; }
.footer-grid p{ font-size: .9rem; color: #ffffff; }
.footer-note{
  font-size: .78rem !important;
  font-style: italic;
  color: #cfe4e9 !important;
  margin-top: 4px;
  margin-bottom: 12px;
}
.footer-grid ul li{ margin-bottom: 8px; }
.footer-grid ul li a{ font-size: .9rem; color: #ffffff; transition: color .15s; }
.footer-grid ul li a:hover{ color: var(--accent); }
.footer-logo{ font-weight:700; font-size:1.2rem; color:#fff; margin-bottom: 14px; }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.footer-social a svg{ width: 16px; height: 16px; }
.footer-social a:hover{ background: var(--accent); color: #fff; }
.footer-grid .ft-ic{
  display: inline-flex;
  width: 15px; height: 15px;
  margin-right: 8px;
  vertical-align: -2px;
  color: #cfe4e9;
}
.footer-grid .ft-ic svg{ width: 100%; height: 100%; }
.footer-grid .ft-ic-spacer{ display: inline-block; width: 23px; }
.footer-map{
  width: 100%;
  height: 160px;
  border: none;
  border-radius: var(--radius);
  filter: grayscale(.15);
}
.footer-bottom{
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: .82rem;
  border-top: 1px solid rgba(255,255,255,.4);
  text-align: center;
}
.footer-badges{ display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-badges img{ height: 30px; width: auto; }
.footer-areas{
  font-size: .68rem;
  color: #d8e4e8;
  line-height: 1.9;
  padding: 20px 0 40px;
  text-align: justify;
}
.footer-areas a{ color: #eaf2f2; }
.footer-areas a:hover{ color: var(--accent); text-decoration: underline; }
.footer-areas a:hover{ color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; padding-top: 48px; }
  .hero-visual{ order: -1; }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .contact-wrap{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-links, .nav-phone span{ display: none; }
  .menu-toggle{ display: block; }
  .topbar-links{ display:none; }
  .logo img{ height: 38px; }
  .nav{ justify-content: space-between; }
  .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; }
  .section{ padding: 56px 0; }
  .cta{ padding: 36px; flex-direction: column; text-align: center; }
  .footer-grid{ grid-template-columns: 1fr; }
}

/* Mobile nav drawer */
.mobile-nav{
  display: none;
  position: fixed; inset: 0;
  background: var(--navy-dark);
  z-index: 100;
  padding: 24px;
  color: #fff;
}
.mobile-nav.open{ display: block; }
.mobile-nav .close-btn{ background:none; border:none; color:#fff; font-size:1.8rem; float:right; cursor:pointer; }
.mobile-nav ul{ margin-top: 60px; display:grid; gap: 8px; }
.mobile-nav ul a{ display:block; padding: 14px 6px; font-size:1.1rem; border-bottom:1px solid rgba(255,255,255,.08); }
