/* ============================================================
   home-page-draft-2.css
   Standalone styles for /home-page-draft-2/ draft concept.
   Builds on the existing brand palette (style.css variables)
   but applies a lighter, more editorial, premium feel.
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.d2-body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2035;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #005BAA; text-decoration: none; transition: color 0.2s; }
a:hover { color: #2CC1EC; }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.25;
  color: #004282;
}

p { margin-bottom: 1rem; }

/* --- Container --------------------------------------------- */
.d2-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons ----------------------------------------------- */
.d2-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}

.d2-btn-gold {
  background: #FFCC4E;
  color: #004282;
}
.d2-btn-gold:hover {
  background: #ffe082;
  color: #004282;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 78, 0.4);
}

.d2-btn-outline {
  background: transparent;
  color: #005BAA;
  border: 2px solid #005BAA;
}
.d2-btn-outline:hover {
  background: #005BAA;
  color: #fff;
  transform: translateY(-2px);
}

.d2-btn-white {
  background: #fff;
  color: #004282;
}
.d2-btn-white:hover {
  background: #f0f4f8;
  color: #004282;
  transform: translateY(-2px);
}

.d2-btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

/* --- 1. Compliance Trust Bar ------------------------------- */
.d2-trust-bar {
  background: #1a2035;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 0;
  text-align: center;
}

.d2-trust-bar .d2-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
}

.d2-trust-bar strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.d2-trust-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* --- Draft Notice ------------------------------------------ */
.d2-draft-notice {
  background: #fff3cd;
  color: #856404;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0.4rem 1rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #ffc107;
}

/* --- 2. Header / Nav --------------------------------------- */
.d2-header {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.d2-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.d2-nav-brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.d2-brand-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #004282;
  line-height: 1.2;
}

.d2-brand-sub {
  font-size: 0.72rem;
  color: #6c757d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.d2-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.d2-nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: #004282;
  white-space: nowrap;
}
.d2-nav-phone:hover { color: #2CC1EC; }

.d2-nav-lang {
  font-size: 0.8rem;
  color: #6c757d;
  background: #f1f3f5;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.d2-nav-lang:hover { background: #e9ecef; color: #004282; }

.d2-hamburger {
  display: none;
  background: none;
  border: 1px solid #dee2e6;
  color: #004282;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
}

/* Mobile nav */
.d2-mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #e9ecef;
  padding: 1rem 0;
}
.d2-mobile-nav.is-open { display: block; }
.d2-mobile-nav a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  color: #1a2035;
  border-bottom: 1px solid #f1f3f5;
}
.d2-mobile-nav a:hover { background: #f8f9fa; color: #005BAA; }
.d2-mobile-nav .d2-mobile-cta {
  margin: 0.75rem 1.5rem 0;
  display: block;
  text-align: center;
  background: #FFCC4E;
  color: #004282;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.7rem;
}

/* --- 3. Hero Section --------------------------------------- */
.d2-hero {
  background: linear-gradient(160deg, #f0f6ff 0%, #fff 60%);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.d2-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44, 193, 236, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.d2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

/* Hero text */
.d2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8f4fd;
  color: #005BAA;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.d2-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #004282;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.d2-hero-sub {
  font-size: 1.1rem;
  color: #3d4a5c;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 540px;
}

.d2-hero-fit {
  font-size: 0.88rem;
  color: #6c757d;
  font-style: italic;
  padding: 0.75rem 1rem;
  border-left: 3px solid #FFCC4E;
  background: #fffdf0;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2rem;
}

.d2-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.d2-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.d2-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #3d4a5c;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Hero photo */
.d2-hero-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.d2-photo-frame {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #004282 0%, #0074d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 66, 130, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Initials shown when photo is missing */
.d2-photo-frame .d2-photo-initials {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.d2-photo-frame .d2-photo-todo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  padding: 0.4rem;
  letter-spacing: 0.05em;
}

.d2-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

/* Hide placeholder when real image loads */
.d2-photo-frame.has-photo .d2-photo-initials,
.d2-photo-frame.has-photo .d2-photo-todo {
  display: none;
}

.d2-photo-stats {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.d2-photo-stat {
  text-align: center;
  padding: 0.85rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
}

.d2-photo-stat strong {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #004282;
}

.d2-photo-stat span {
  font-size: 0.72rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Rates strip below hero */
.d2-rates-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.d2-rates-strip .d2-rates-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.d2-rates-strip .d2-rate-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #3d4a5c;
  white-space: nowrap;
}

.d2-rates-strip .d2-rate-item strong {
  color: #005BAA;
  font-size: 1rem;
  font-weight: 700;
}

.d2-rates-note {
  font-size: 0.75rem;
  color: #6c757d;
  flex: 1;
  min-width: 200px;
  text-align: right;
}

.d2-rates-note a {
  color: #005BAA;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- 4. Situations Section --------------------------------- */
.d2-situations {
  padding: 5.5rem 0;
  background: #fff;
}

.d2-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #005BAA;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.d2-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #004282;
  margin-bottom: 0.75rem;
}

.d2-section-sub {
  font-size: 1.05rem;
  color: #3d4a5c;
  max-width: 600px;
  margin-bottom: 3rem;
}

.d2-situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.d2-situation-card {
  background: #fff;
  border: 1.5px solid #e9ecef;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.d2-situation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #FFCC4E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}

.d2-situation-card:hover {
  border-color: #005BAA;
  box-shadow: 0 10px 40px rgba(0, 91, 170, 0.12);
  transform: translateY(-4px);
}

.d2-situation-card:hover::before {
  transform: scaleX(1);
}

.d2-situation-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.d2-situation-card h3 {
  font-size: 1.15rem;
  color: #004282;
}

.d2-situation-card p {
  font-size: 0.9rem;
  color: #3d4a5c;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.d2-situation-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #005BAA;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.d2-situation-link:hover { color: #2CC1EC; }

/* --- 5. Why Philippe Section ------------------------------- */
.d2-why {
  padding: 5.5rem 0;
  background: linear-gradient(160deg, #f0f6ff 0%, #f8f9fa 100%);
}

.d2-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.d2-why-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.d2-why-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.d2-why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f4fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.d2-why-point-text h3 {
  font-size: 1.05rem;
  color: #004282;
  margin-bottom: 0.35rem;
}

.d2-why-point-text p {
  font-size: 0.9rem;
  color: #3d4a5c;
  line-height: 1.65;
  margin: 0;
}

/* Testimonials */
.d2-testimonials-title {
  font-size: 1.2rem;
  color: #004282;
  margin-bottom: 1.25rem;
}

.d2-testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.d2-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}

.d2-testimonial-stars {
  color: #FFCC4E;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.d2-testimonial-quote {
  font-size: 0.92rem;
  color: #3d4a5c;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.d2-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.d2-testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #004282;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.d2-testimonial-meta {
  font-size: 0.78rem;
  color: #6c757d;
  line-height: 1.3;
}

.d2-testimonial-meta strong {
  display: block;
  color: #3d4a5c;
  font-size: 0.82rem;
}

/* --- 6. Eastern Ontario Region Section -------------------- */
.d2-region {
  padding: 5.5rem 0;
  background: #fff;
}

.d2-region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.d2-region-intro p {
  font-size: 1rem;
  color: #3d4a5c;
  line-height: 1.7;
}

.d2-region-tagline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: #005BAA;
  font-style: italic;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #FFCC4E;
  background: #fffdf0;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  line-height: 1.45;
}

.d2-towns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.d2-town-tag {
  background: #f0f4f8;
  color: #004282;
  border: 1px solid #d0dce8;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.18s;
  text-decoration: none;
  display: inline-block;
}

.d2-town-tag:hover {
  background: #004282;
  color: #fff;
  border-color: #004282;
}

.d2-region-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #3d4a5c;
}

.d2-area-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.d2-area-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.d2-hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.d2-hub-card {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #d9e6f2;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 66, 130, 0.08);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.d2-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 66, 130, 0.12);
  border-color: #8db7dc;
  color: inherit;
}

.d2-hub-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #005BAA;
  background: #e8f4fd;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  margin-bottom: 0.9rem;
}

.d2-hub-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.d2-hub-card p {
  font-size: 0.88rem;
  color: #3d4a5c;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.d2-hub-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: #005BAA;
}

.d2-area-towns {
  background: #f8fafc;
  border: 1px solid #e3ebf3;
  border-radius: 16px;
  padding: 1.35rem;
}

.d2-town-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.d2-town-group {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 12px;
  padding: 1rem;
}

.d2-town-group h3 {
  font-size: 0.98rem;
  color: #004282;
  margin-bottom: 0.75rem;
}

/* --- 7. How It Works Section ------------------------------- */
.d2-process {
  padding: 5.5rem 0;
  background: #f0f4f8;
}

.d2-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

/* Connector line between steps */
.d2-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 1.25rem);
  right: calc(16.66% + 1.25rem);
  height: 2px;
  background: linear-gradient(90deg, #FFCC4E, #005BAA);
  z-index: 0;
}

.d2-process-step {
  background: #fff;
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid #e9ecef;
}

.d2-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFCC4E;
  color: #004282;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px #fff, 0 0 0 8px #FFCC4E;
}

.d2-process-step h3 {
  font-size: 1.1rem;
  color: #004282;
  margin-bottom: 0.6rem;
}

.d2-process-step p {
  font-size: 0.9rem;
  color: #3d4a5c;
  line-height: 1.65;
  margin: 0;
}

/* --- 8. Best Fit / Not Fit Section ------------------------ */
.d2-fit {
  padding: 5.5rem 0;
  background: #fff;
}

.d2-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.d2-fit-box {
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border: 1.5px solid;
}

.d2-fit-box-yes {
  background: #f0fff4;
  border-color: #52c41a;
}

.d2-fit-box-no {
  background: #fff8f8;
  border-color: #e9ecef;
}

.d2-fit-box-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.d2-fit-box-header h3 {
  font-size: 1.1rem;
  color: #004282;
}

.d2-fit-icon {
  font-size: 1.25rem;
}

.d2-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.d2-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #3d4a5c;
  line-height: 1.5;
}

.d2-fit-check {
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.d2-fit-box-yes .d2-fit-check { color: #52c41a; }
.d2-fit-box-no .d2-fit-check { color: #adb5bd; }

.d2-fit-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #004282 0%, #005BAA 100%);
  border-radius: 16px;
}

.d2-fit-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

/* --- Final CTA Section ------------------------------------ */
.d2-final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #004282 0%, #005BAA 60%, #0074d9 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.d2-final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 193, 236, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.d2-final-cta .d2-container { position: relative; z-index: 1; }

.d2-final-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.d2-final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.d2-final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.d2-final-cta .d2-cta-alt-text {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.d2-final-cta .d2-cta-alt-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Footer ----------------------------------------------- */
.d2-footer {
  background: #1a2035;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 0;
}

.d2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.d2-footer-brand .d2-brand-name {
  color: #fff;
  font-size: 1.3rem;
}

.d2-footer-brand .d2-brand-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.d2-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.d2-footer-contact-list li {
  font-size: 0.85rem;
}

.d2-footer-contact-list a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.d2-footer-contact-list a:hover { color: #FFCC4E; }

.d2-footer-nav-title {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.d2-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.d2-footer-nav-list a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.15s;
}
.d2-footer-nav-list a:hover { color: rgba(255, 255, 255, 0.9); }

.d2-footer-disclosure {
  padding: 1.5rem 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.d2-footer-disclosure a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.d2-footer-disclosure-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.d2-each-office {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .d2-hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
  }
  .d2-photo-frame {
    width: 300px;
    height: 300px;
  }
  .d2-photo-initials { font-size: 5rem; }
  .d2-situations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .d2-why-grid {
    gap: 3rem;
  }
  .d2-hubs-grid,
  .d2-town-groups {
    grid-template-columns: 1fr;
  }
  .d2-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .d2-nav-actions .d2-nav-phone { display: none; }
  .d2-nav-actions .d2-btn { display: none; }
  .d2-nav-actions .d2-nav-lang { display: none; }
  .d2-hamburger { display: block; }

  /* Hero */
  .d2-hero {
    padding: 3rem 0 2.5rem;
  }
  .d2-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .d2-hero-photo-col {
    order: -1;
  }
  .d2-photo-frame {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  .d2-photo-initials { font-size: 3.5rem; }
  .d2-photo-stats { flex-direction: column; align-items: center; }
  .d2-hero h1 { font-size: 2rem; }
  .d2-hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Situations */
  .d2-situations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Why */
  .d2-why-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Region */
  .d2-region-grid { grid-template-columns: 1fr; gap: 2rem; }
  .d2-area-towns { padding: 1rem; }
  .d2-hub-card,
  .d2-town-group { padding: 1rem; }

  /* Process */
  .d2-process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .d2-process-grid::before { display: none; }

  /* Fit */
  .d2-fit-grid { grid-template-columns: 1fr; }

  /* Footer */
  .d2-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Rates strip */
  .d2-rates-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .d2-rates-note { text-align: left; }
}

@media (max-width: 480px) {
  .d2-hero { padding: 2rem 0 2rem; }
  .d2-hero h1 { font-size: 1.7rem; }
  .d2-section-title { font-size: 1.5rem; }
  .d2-trust-bar .d2-container {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  .d2-final-cta { padding: 4rem 0; }
  .d2-final-cta h2 { font-size: 1.65rem; }
  .d2-final-cta-actions { flex-direction: column; }
}
