:root {
  --primary:    #0A1F3D;
  --accent:     #D52B1E;
  --gold:       #C9A84C;
  --bg:         #F4F5F7;
  --text:       #1A1A1A;
  --text-light: #6B7280;
  --white:      #FFFFFF;
  --success:    #00875A;
  --border:     #E5E7EB;
  --shadow:     0 18px 36px rgba(10,31,61,.16);
  --shadow-soft:0 10px 24px rgba(10,31,61,.10);
  --radius:     4px;
  --space:      8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
  background: var(--white);
}

/* ──────────────────────────────
   Images
────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ──────────────────────────────
   Typography
────────────────────────────── */
h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ──────────────────────────────
   Container & Grid
────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: calc(var(--space) * 3);
}

/* CSS Grid 12 colonnes — mobile-first */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.row > * {
  min-width: 0;
}

.g-4 { gap: calc(var(--space) * 4); }
.g-5 { gap: calc(var(--space) * 5); }

/* Spans mobiles par défaut */
.col-12 { grid-column: span 12; }
.col-6  { grid-column: span 6; }

/* Sur mobile, pas de colonne-gap : 11 × 32px déborderait le viewport */
@media (max-width: 767px) {
  .row { column-gap: 0 !important; }
  /* Masquer sur mobile UNIQUEMENT — ne conflicte pas avec .d-md-block à 768px+ */
  .d-none { display: none !important; }
}

/* md ≥ 768px */
@media (min-width: 768px) {
  .col-md-3 { grid-column: span 3; }
  .col-md-4 { grid-column: span 4; }
  .col-md-6 { grid-column: span 6; }
  .col-md-8 { grid-column: span 8; }
  .d-md-none  { display: none !important; }
  .d-md-block { display: block !important; }
}

/* lg ≥ 992px */
@media (min-width: 992px) {
  .col-lg-3 { grid-column: span 3; }
  .col-lg-4 { grid-column: span 4; }
  .col-lg-5 { grid-column: span 5; }
  .col-lg-7 { grid-column: span 7; }
  .col-lg-8 { grid-column: span 8; }
}

.text-end           { text-align: right; }
.text-center        { text-align: center; }
.align-items-center { align-items: center; }
.align-items-start  { align-items: start; }
.w-100              { width: 100%; }

/* ──────────────────────────────
   Buttons
────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #b82318;
  border-color: #b82318;
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  font-size: 14px;
  padding: 10px 16px;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  text-decoration: none;
}

/* ──────────────────────────────
   Header
────────────────────────────── */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.header .container {
  padding-block: calc(var(--space) * 2);
}

@media (max-width: 767px) {
  .header .container { padding-block: calc(var(--space) * 1.5); }
  /* Sur mobile : le header utilise flex pour garantir logo + actions sur 1 ligne */
  .header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 20px;
  flex-shrink: 0;
}

.logo-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--primary);
  line-height: 1;
}

.logo .tagline {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.logo h1 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--primary);
  line-height: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: calc(var(--space) * 4);
  justify-content: center;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.header-accent {
  height: 4px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-switch {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 5px 10px;
  text-decoration: none;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.lang-switch:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile nav */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,31,61,.9);
  z-index: 200;
}

.mobile-menu-overlay.is-open {
  display: flex;
  align-items: flex-start;
}

.mobile-menu {
  background: var(--white);
  width: min(320px, 90%);
  height: 100vh;
  padding: 32px 24px;
  overflow-y: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}

.mobile-menu nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu nav a {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

/* ──────────────────────────────
   Sections
────────────────────────────── */
.section {
  padding-block: calc(var(--space) * 12);
  overflow-x: clip;
}

.section-tight {
  padding-block: calc(var(--space) * 4);
}

.section-light {
  background: var(--bg);
}

.section-head {
  margin-bottom: calc(var(--space) * 6);
}

.section-head p {
  color: var(--text-light);
  max-width: 640px;
  margin-top: 12px;
}

/* ──────────────────────────────
   Hero
────────────────────────────── */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,31,61,.93) 45%, rgba(10,31,61,.65)),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding-block: calc(var(--space) * 12);
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: calc(var(--space) * 3);
  flex-wrap: wrap;
  margin-bottom: calc(var(--space) * 5);
}

.hero .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,.1);
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-swiss {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius);
}

/* ──────────────────────────────
   Page Hero (inner pages)
────────────────────────────── */
.page-hero {
  background:
    linear-gradient(rgba(10,31,61,.90), rgba(10,31,61,.88)),
    url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
  padding-block: calc(var(--space) * 10);
}

.page-hero .eyebrow { }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
}

.page-hero p {
  color: rgba(255,255,255,.75);
  max-width: 600px;
  font-size: 17px;
}

/* ──────────────────────────────
   Photo banner (about)
────────────────────────────── */
.photo-banner {
  width: 100%;
  height: clamp(260px, 40vw, 480px);
  overflow: hidden;
  position: relative;
}

.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ──────────────────────────────
   Visual strip (photo + text overlay)
────────────────────────────── */
.visual-strip {
  position: relative;
  background:
    linear-gradient(to right, rgba(10,31,61,.92) 48%, rgba(10,31,61,.50)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
  padding-block: calc(var(--space) * 16);
  color: var(--white);
}

.visual-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.visual-strip p {
  color: rgba(255,255,255,.80);
  max-width: 520px;
  font-size: 17px;
  margin-bottom: 32px;
}

.visual-strip .btn-primary {
  font-size: 16px;
  padding: 14px 32px;
}

/* ──────────────────────────────
   Product Cards
────────────────────────────── */
.product-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: calc(var(--space) * 4);
  transition: border-color .22s, transform .22s, box-shadow .22s;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.product-card i {
  font-size: 28px;
  color: var(--primary);
}

.product-card h3 {
  font-size: 20px;
}

.product-card .rate {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

.product-card ul {
  list-style: none;
  flex: 1;
}

.product-card ul li::before {
  content: '— ';
  color: var(--accent);
  font-weight: 700;
}

.product-card ul li + li {
  margin-top: 8px;
}

/* ──────────────────────────────
   Stats Section
────────────────────────────── */
.stats-section {
  background: var(--primary);
  color: var(--white);
}

.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ──────────────────────────────
   Feature Blocks
────────────────────────────── */
.feature-block {
  padding-left: calc(var(--space) * 3);
  border-left: 4px solid var(--accent);
}

.feature-block h3 {
  margin-bottom: 8px;
}

/* ──────────────────────────────
   Testimonials Carousel
────────────────────────────── */
.testimonial-carousel {
  position: relative;
  max-width: 640px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 19px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.55;
}

.testimonial span {
  font-weight: 600;
  color: var(--text-light);
  font-size: 14px;
}

.verified {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--success);
  border: 1px solid var(--success);
  padding: 2px 8px;
  border-radius: 20px;
}

.carousel-controls {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

/* ──────────────────────────────
   Simulator
────────────────────────────── */
.sim-widget {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--space) * 3);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sim-widget { padding: calc(var(--space) * 5); }
}

.sim-widget-large {
  padding: calc(var(--space) * 3);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sim-widget-large { padding: calc(var(--space) * 6); }
}

label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--primary);
}

input[type="range"] {
  width: 100%;
  max-width: 100%;
  display: block;
  accent-color: var(--accent);
  height: 4px;
  cursor: pointer;
}

.range-value {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.range-value strong {
  color: var(--primary);
}

.sim-result {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: calc(var(--space) * 4);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

.sim-result p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}

.sim-result h3 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}

.sim-result ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.sim-result ul li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.sim-result ul li strong {
  color: var(--white);
  white-space: nowrap;
}

.chart-wrap {
  margin-top: calc(var(--space) * 6);
  max-height: 300px;
  overflow: hidden;
}

.chart-wrap canvas {
  max-height: 300px !important;
}

/* ──────────────────────────────
   Contact Form — redesign élégant
────────────────────────────── */

/* Fond section */
.contact-section {
  background: #F4F5F7;
}
.contact-form fieldset {
  border: none;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(10,31,61,.07), 0 0 0 1px rgba(10,31,61,.06);
  padding: 32px 36px;
  margin-bottom: 24px;
  position: relative;
}

/* Légende avec pastille numérotée */
.contact-form legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  width: 100%;
  letter-spacing: -.2px;
}
.contact-form fieldset:nth-of-type(1) legend::before { content: '1'; }
.contact-form fieldset:nth-of-type(2) legend::before { content: '2'; }
.contact-form legend::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Grille champs */
.form-row {
  margin-bottom: 0;
}
.form-row + .form-row {
  margin-top: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .contact-form fieldset { padding: 24px 20px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .form-row-2 .form-group + .form-group { margin-top: 20px; }
}

/* Groupe champ — label flottant */
.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
  margin-top: 0;
  transition: color .18s;
}

.form-group:focus-within label {
  color: var(--primary);
}

.form-group input:not([type="checkbox"]):not([type="range"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E0E3E9;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #FAFBFC;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
  border-color: #B8BDC8;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,31,61,.08);
}

/* Select — flèche custom */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

/* Textarea */
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B7C3;
  font-size: 14px;
}

/* Checkbox custom */
.form-group-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #F8F9FB;
  border: 1.5px solid #E0E3E9;
  border-radius: 8px;
  transition: border-color .2s;
}
.form-group-check:has(input:checked) {
  border-color: var(--primary);
  background: rgba(10,31,61,.03);
}

.form-group-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-group-check label {
  margin: 0;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.form-group-check label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* Bouton soumettre */
.contact-form > .btn {
  margin-top: 8px;
  padding: 15px 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: 8px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contact-form > .btn::after {
  content: ' →';
  transition: opacity .2s, transform .2s;
}

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ──────────────────────────────
   About box / sidebar
────────────────────────────── */
.about-box {
  background: var(--primary);
  border-radius: 12px;
  padding: calc(var(--space) * 5);
  color: rgba(255,255,255,.85);
  position: sticky;
  top: 100px;
}

.about-box h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.about-box ul,
.about-box ol {
  padding-left: 0;
  list-style: none;
  counter-reset: step;
}

.about-box ol li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
}

.about-box ol li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-box li + li {
  margin-top: 16px;
}

/* ──────────────────────────────
   Legal / Prose
────────────────────────────── */
.content-prose h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.content-prose p,
.content-prose ul {
  margin-bottom: 16px;
}

.content-prose ul {
  padding-left: 20px;
}

.legal-warning {
  background: #FEF2F2;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-block: 24px;
}

/* ──────────────────────────────
   Flash messages
────────────────────────────── */
.flash {
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.flash-success {
  background: #ECFDF5;
  color: var(--success);
  border: 1px solid #A7F3D0;
}

.flash-error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FCA5A5;
}

/* ──────────────────────────────
   Footer
────────────────────────────── */
.site-footer {
  background: var(--primary);
  padding-block: calc(var(--space) * 10);
  margin-top: auto;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}

.footer-grid a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,.4);
}

.legal-banner {
  margin-top: calc(var(--space) * 8);
  padding-top: calc(var(--space) * 4);
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

.copyright {
  margin-top: calc(var(--space) * 3);
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ──────────────────────────────
   Responsive overrides
────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-block: calc(var(--space) * 8);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn { width: 100%; text-align: center; }

  .sim-widget { padding: calc(var(--space) * 3); }
}

@media (max-width: 576px) {
  .col-6 { grid-column: span 12; }
}
