/*
Theme Name: Carrosserie Nantes Est
Theme URI: https://carrosserie-nantes-est.fr
Author: AI Custom Theme
Description: Thème personnalisé pour Carrosserie Nantes Est – réparation carrosserie, débosselage, peinture, pare-brise à Sainte-Luce-sur-Loire.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carrosserie-nantes-est
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

:root {
  --blue:        #004CA8;
  --blue-dark:   #003a80;
  --orange:      #D1AC56;
  --orange-dark: #b8963e;
  --primary:     #747474;
  --black:       #000;
  --text:        #2c2c2c;
  --text-light:  #666666;
  --bg-light:    #f5f5f5;
  --white:       #ffffff;
  --border:      #E4E4E4;
  --font-head:     'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --container:     1200px;
  --header-height: 70px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

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

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

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  min-height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
/* Barre d'admin WordPress : décale le sticky pour ne pas passer sous la barre */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* même gabarit que .container */
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 11px 24px;
}

/* Logo */
.site-logo img { max-height: 36px; max-width: 160px; width: auto; height: auto; }
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  line-height: 1;
}
.site-logo .logo-text span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-logo .logo-text span:last-child {
  font-size: 10px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Primary nav */
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
#primary-nav ul li a {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--primary);
  border-radius: 3px;
  transition: color .2s;
  white-space: nowrap;
}
#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item > a,
#primary-nav ul li.current-page-ancestor > a {
  color: var(--orange);
}

/* Dropdown */
#primary-nav ul li { position: relative; }
#primary-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 4px;
  min-width: 220px;
  flex-direction: column;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: 0 0 4px 4px;
  z-index: 100;
}
#primary-nav ul li:hover > ul { display: flex; }
#primary-nav ul li ul li a {
  padding: 10px 16px;
  font-size: 11px;
  border-bottom: 1px solid var(--border);
}
#primary-nav ul li ul li:last-child a { border-bottom: none; }

/* Has-children indicator */
#primary-nav ul li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  border: none;
  line-height: 1;
  width: fit-content;
  align-self: flex-start;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-arrow::after { content: ' →'; }
.link-secondary {
  display: inline-block;
  font-size: 13px;
  color: var(--blue);
  text-decoration: underline;
  margin-top: 12px;
}
.link-secondary:hover { color: var(--orange); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-number {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -1px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.15;
}
.section-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.text-orange { color: var(--orange); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  margin-top: 0;
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}
.hero-breadcrumb {
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-breadcrumb span { color: var(--primary); }
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--hero-title-color, var(--black));
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-heading em {
  font-style: normal;
  color: var(--orange);
}
.hero-text {
  font-size: 15px;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-label {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
  color: var(--black);
}
.feature-label .orange { color: var(--orange); }
.feature-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ============================================================
   SECTION 01 – SERVICES
   ============================================================ */
.services-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.services-left {
  padding: 80px 60px 80px 0;
}
.services-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  padding: 80px 0;
}
.services-left p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.services-left strong { color: var(--blue); }
.services-left .highlight {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 20px;
}

/* Accordion */
.accordion { border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background .15s;
}
.accordion-toggle:hover { background: var(--bg-light); }
.accordion-toggle.active { background: var(--bg-light); }
.accordion-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
}
.accordion-title {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.accordion-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform .25s;
}
.accordion-toggle.active .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}
.accordion-body-inner {
  padding: 10px 20px 18px 64px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   SECTION 02 – LEASING
   ============================================================ */
.leasing-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.leasing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.leasing-left p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.leasing-left .intro-strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.leasing-left .conclusion {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 20px;
  font-style: italic;
}
.leasing-features { display: flex; flex-direction: column; gap: 16px; padding-top: 24px; }
.leasing-feature {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 20px 24px;
}
.leasing-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
  font-size: 22px;
}
.leasing-feature-content h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}
.leasing-feature-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   SECTION 03 – PRÉPARER MON VÉHICULE
   ============================================================ */
.prepare-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.prepare-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.prepare-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 0;
}
.prepare-left p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.prepare-image {
  overflow: hidden;
}
.prepare-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION 04 – AVANTAGES
   ============================================================ */
.avantages-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.avantage-card {
  background: var(--white);
  padding: 28px 24px 32px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .2s;
}
.avantage-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.avantage-icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.avantage-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 12px;
}
.avantage-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   SECTION 05 – CONTACT / LOCALISATION
   ============================================================ */
.contact-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.contact-left {
  padding: 80px 80px 80px 0;
}
.contact-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.contact-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-stars .stars { color: var(--orange); font-size: 18px; letter-spacing: 2px; }
.contact-stars .review-text { font-size: 13px; color: var(--text-light); }
.contact-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact-info { margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 10px;
}
.contact-info-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }
.map-embed {
  overflow: hidden;
  flex: 1;
  min-height: 360px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}
.footer-logo img { filter: brightness(0) invert(1); }
.footer-logo .logo-text span:first-child { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col p,
.footer-col address {
  font-size: 13px;
  line-height: 1.8;
  color: #aaa;
  font-style: normal;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: #aaa;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .avantages-grid { grid-template-columns: repeat(2, 1fr); }
  .leasing-inner { gap: 48px; }
  .hero-content,
  .services-left,
  .prepare-left,
  .contact-left { padding-right: 48px; }
}

@media (max-width: 768px) {

  /* ─── Container ────────────────────────────────────────── */
  .container { padding: 0 16px; }

  /* ─── Header ────────────────────────────────────────────── */
  #site-header { min-height: var(--header-height); }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 12px 16px;
    gap: 0;
  }

  .site-logo { flex: 0 0 auto; min-width: 0; }
  .site-logo img { height: 40px; width: auto; max-width: 160px; }
  .site-logo .logo-text span:first-child { font-size: 15px; }
  .site-logo .logo-text span:last-child  { font-size: 9px; }

  #primary-nav { display: none; }

  .nav-toggle {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  /* ─── Menu dropdown mobile ──────────────────────────────── */
  #primary-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    min-width: 220px;
    background: var(--white);
    border-top: 3px solid var(--orange);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
    overflow-y: auto;
    max-height: calc(100vh - var(--header-height));
    z-index: 1001;
  }
  #primary-nav.open ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  #primary-nav.open ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }
  #primary-nav.open ul li:last-child > a { border-bottom: none; }
  #primary-nav.open ul li ul {
    display: none;
    position: static;
    background: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
  #primary-nav.open ul li.open > ul { display: block; }
  #primary-nav.open .menu-item-has-children > a::after { content: ' ▾'; }
  #primary-nav.open .menu-item-has-children.open > a::after { content: ' ▴'; }

  /* ─── Grilles de contenu ─────────────────────────────────── */
  .hero-inner,
  .services-inner,
  .leasing-inner,
  .prepare-inner,
  .contact-inner { grid-template-columns: 1fr; }

  .hero-content,
  .services-left,
  .prepare-left,
  .contact-left { padding: 40px 0 24px; }

  .services-right { border-left: none; border-top: 1px solid var(--border); }
  .contact-right  { border-left: none; border-top: 1px solid var(--border); }
  .hero-image img { height: 260px; min-height: unset; }
  .prepare-image img { height: 260px; min-height: unset; }
  .map-embed { flex: none; min-height: unset; height: 280px; }
  .map-embed iframe { height: 280px; min-height: unset; }
  .prepare-image { order: -1; }
  .features-bar-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .avantages-grid { grid-template-columns: 1fr; }

  /* ─── Footer ────────────────────────────────────────────── */
  #site-footer { padding: 32px 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 24px;
  }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .header-inner { padding-left: 12px; padding-right: 12px; }
  .hero-heading { font-size: 26px; }
  .section-number { font-size: 30px; }
  .section-title { font-size: 18px; }
}

/* ============================================================
   PAGE INTÉRIEURE — HERO
   ============================================================ */
.ip-hero {
  margin-top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ip-hero-inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.ip-hero-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}
.ip-hero-breadcrumb {
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.ip-hero-breadcrumb span { color: var(--primary); }
.ip-hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.ip-hero-title em { font-style: normal; color: var(--orange); }
.ip-hero-text {
  font-size: 15px;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.ip-hero-media {
  flex: 0 0 44%;
  overflow: hidden;
}
.ip-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   PAGE INTÉRIEURE — SECTIONS (base commune)
   ============================================================ */
.ip-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ip-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.ip-section-inner--stretch { align-items: stretch; }
.ip-section-left  { padding: 80px 60px 80px 0; }
.ip-section-right { padding: 80px 0 80px 60px; }

/* Accordéon : colonne droite avec border-left */
.ip-section-right--acc {
  border-left: 1px solid var(--border);
  padding: 80px 0;
}

.ip-section-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.ip-section-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.ip-intro-strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 16px;
}
.ip-section-subtitle {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ============================================================
   PAGE INTÉRIEURE — ENCARTS INFO
   ============================================================ */
.ip-card {
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 3px;
}
.ip-card--gold { border-top: 3px solid var(--orange); }
.ip-card--blue { border-top: 3px solid var(--blue); }
.ip-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ip-card--gold .ip-card-head,
.ip-card--gold .ip-card-head strong { color: var(--orange); }
.ip-card--blue .ip-card-head,
.ip-card--blue .ip-card-head strong { color: var(--blue); }
.ip-card-head strong { font-size: 14px; font-weight: 700; }
.ip-card-icon { flex-shrink: 0; }
.ip-card--gold p { font-size: 14px; color: var(--orange); line-height: 1.7; }
.ip-card-list { list-style: none; margin: 0; padding: 0; }
.ip-card-list li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  padding: 3px 0 3px 20px;
  position: relative;
}
.ip-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ============================================================
   PAGE INTÉRIEURE — BANDEAU PARTENAIRES
   ============================================================ */
.ip-partners {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.ip-partners-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 14px;
}
.ip-partners-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.ip-partners-row span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ip-partners-row span::before {
  content: '›';
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.ip-partners-row span:last-child { border-right: none; }

/* ============================================================
   PAGE INTÉRIEURE — SECTION 03 (IMAGE PLEINE HAUTEUR)
   ============================================================ */
.ip-section--03 .ip-section-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ip-section-right--media {
  overflow: hidden;
  padding: 0;
}
.ip-section-right--media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.ip-btn-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 2px;
  transition: background .2s, color .2s;
  line-height: 1;
  width: fit-content;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ============================================================
   PAGE INTÉRIEURE — SECTION 04 (PROCESSUS)
   ============================================================ */
.ip-section--04 { padding-top: 80px; padding-bottom: 80px; }
.ip-section--04 .section-title-wrap { margin-bottom: 40px; }
.ip-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ip-step { background: var(--white); padding: 28px 20px; }
.ip-step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 4px 8px;
  margin-bottom: 14px;
  border-radius: 2px;
}
.ip-step-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.ip-step-text { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   PAGE INTÉRIEURE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ip-section-left  { padding-right: 40px; }
  .ip-section-right { padding-left: 40px; }
  .ip-hero-inner { gap: 40px; }
}
@media (max-width: 768px) {
  .ip-hero-inner { flex-direction: column; }
  .ip-hero-media { flex: 0 0 auto; }
  .ip-section-inner { grid-template-columns: 1fr; }
  .ip-hero-content,
  .ip-section-left  { padding: 48px 0 32px; }
  .ip-section-right { padding: 32px 0 48px; border-left: none !important; }
  .ip-section-right--acc { border-top: 1px solid var(--border); }
  .ip-hero-media img,
  .ip-section-right--media img { height: 280px; min-height: unset; }
  .ip-steps { grid-template-columns: 1fr 1fr; }
  .ip-partners-row { flex-direction: column; align-items: center; }
  .ip-partners-row span {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    justify-content: center;
  }
  .ip-partners-row span:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .ip-steps { grid-template-columns: 1fr; }
  .ip-hero-title { font-size: 26px; }
  .ip-adv-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION — AVANTAGES (ip-section--adv) — Tôlerie S04
   ============================================================ */
.ip-section--adv { padding: 80px 0; }
.ip-section--adv .section-title-wrap { margin-bottom: 40px; }

.ip-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  margin-bottom: 40px;
}
.ip-adv-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 16px;
  align-items: start;
}
.ip-adv-icon {
  color: var(--orange);
  padding-top: 3px;
}
.ip-adv-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 8px;
  line-height: 1.3;
}
.ip-adv-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* Groupe de boutons horizontal (S04 Tôlerie) */
.ip-btn-group--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .ip-adv-grid { grid-template-columns: 1fr; gap: 24px; }
  .ip-btn-group--row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ALERTE BANNIÈRE — DSP
   ============================================================ */
.ip-alert-section { padding: 32px 0; border-bottom: 1px solid var(--border); }
.ip-alert-box {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: center;
  background: #EEF4FF;
  border: 1px solid #BDD0FF;
  border-radius: 4px;
  padding: 20px 24px;
  max-width: 680px;
  margin: 0 auto;
}
.ip-alert-box-icon { color: var(--orange); padding-top: 1px; }
.ip-alert-box-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  margin: 0 0 6px;
  line-height: 1.3;
}
.ip-alert-box-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   BÉNÉFICES — Section 01 DSP (colonne droite)
   ============================================================ */
.ip-section-right--ben {
  border-left: 1px solid var(--border);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
}
.ip-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 36px 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  flex: 1;
}
.ip-benefit-item:first-child { border-top: 1px solid var(--border); }
.ip-benefit-icon { color: var(--orange); }
.ip-benefit-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}

/* ============================================================
   COMPARAISON — Section 04 DSP
   ============================================================ */
.ip-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.ip-compare-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px;
}
.ip-compare-card--con { background: var(--bg-light); }
.ip-compare-card--pro { border-top: 3px solid var(--orange); }
.ip-compare-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.ip-compare-card--con .ip-compare-card-icon { color: var(--primary); }
.ip-compare-card--pro .ip-compare-card-icon { color: var(--orange); }
.ip-compare-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}
.ip-compare-card--con .ip-compare-card-title { color: var(--primary); }
.ip-compare-card--pro .ip-compare-card-title { color: var(--blue); }
.ip-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ip-compare-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid var(--border);
}
.ip-compare-list li:first-child { border-top: none; }
.ip-compare-list--con li { color: var(--primary); }
.ip-compare-list--pro li { color: var(--blue); font-weight: 500; }
.ip-compare-list--con li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
  top: 9px;
}
.ip-compare-list--pro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  top: 8px;
}

/* ── Pare-brise : liste neutre ──────────────────────────── */
.ip-compare-list--neu li { color: var(--primary); }
.ip-compare-list--neu li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
  top: 9px;
}

/* ── Pare-brise : grille prestations ────────────────────── */
.ip-prest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ip-prest-card {
  background: var(--bg-light);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ip-prest-icon { color: var(--orange); }
.ip-prest-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.ip-prest-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--primary);
  margin: 0;
}

/* ── Préparation esthétique : grille nettoyage ────────────── */
.ip-nettoyage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
}
.ip-nettoyage-col {
  background-color: #1d1d1d;
  background-size: cover;
  background-position: center;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.ip-nettoyage-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}
.ip-nettoyage-col > * { position: relative; z-index: 1; }
.ip-nettoyage-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ip-nettoyage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ip-nettoyage-list li {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.5;
  padding: 9px 0 9px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.ip-nettoyage-list li:first-child { border-top: none; }
.ip-nettoyage-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--orange);
  font-weight: 700;
}

/* ── Préparation esthétique : résultat en or ──────────────── */
.ip-section-result {
  color: var(--orange);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ── Préparation esthétique : checklist droite ────────────── */
.ip-section-right--list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ip-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  overflow: hidden;
}
.ip-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-top: 1px solid #e4e4e4;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
}
.ip-checklist li:first-child { border-top: none; }
.ip-checklist li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── Préparation esthétique : étapes finitions ────────────── */
.ip-step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ip-step-card {
  background: var(--bg-light);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ip-step-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
  margin: 0;
}
.ip-step-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
}
.ip-step-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--primary);
  margin: 0;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .ip-section-right--ben { border-left: none; border-top: 1px solid var(--border); padding: 40px 0 40px 0; }
  .ip-benefit-item { border-right: none; }
  .ip-compare-grid { grid-template-columns: 1fr; }
  .ip-alert-box { grid-template-columns: 1fr; }
  .ip-prest-grid { grid-template-columns: 1fr; }
  .ip-nettoyage-grid { grid-template-columns: 1fr; }
  .ip-section-right--list { padding-top: 0; }
  .ip-step-row { grid-template-columns: 1fr; }
  .cne-nc-layout { grid-template-columns: 1fr; gap: 40px; }
  .cne-nc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NOUS CONTACTER — Page template
   ============================================================ */
.cne-nc-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.cne-nc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cne-nc-intro {
  padding-top: 8px;
}
.cne-nc-lead {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 16px 0 0;
}
.cne-nc-form-col { min-width: 0; }

/* Formulaire */
.cne-nc-form {
  background: #f4f6fb;
  border: 1px solid var(--border);
  padding: 40px 48px;
}
.cne-nc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cne-nc-field input[type="text"],
.cne-nc-field input[type="email"],
.cne-nc-field input[type="tel"],
.cne-nc-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.cne-nc-field input:focus,
.cne-nc-form textarea:focus { border-color: var(--blue); }
.cne-nc-form textarea {
  display: block;
  height: 120px;
  resize: vertical;
  margin-bottom: 12px;
}
.cne-nc-submit-row { text-align: right; }

/* Messages */
.cne-nc-success {
  background: #eaf4ee;
  border: 1px solid #7bc89a;
  color: #1e6b3c;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}
.cne-nc-error {
  background: #fdf0f0;
  border: 1px solid #e8a0a0;
  color: #9b2c2c;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 640px;
}

/* Accessibilité */
.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;
}

/* ============================================================
   DEVIS — Template
   ============================================================ */

/* Hero — variante bénéfices */
.dv-hero-inner {
  align-items: center;
}
.dv-hero-ben-list {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  padding-left: 60px;
  align-self: stretch;
  justify-content: center;
}
.dv-hero-ben-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 76, 168, 0.15);
}
.dv-hero-ben-icon { color: var(--blue); flex-shrink: 0; }
.dv-hero-ben-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
}

/* Comment ça marche */
.dv-how-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.dv-how-section .section-title-wrap { margin-bottom: 48px; }
.dv-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.dv-how-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.dv-how-card:last-child { border-right: none; }
.dv-how-card-num {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  margin-bottom: 20px;
}
.dv-how-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.dv-how-card-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Section formulaire */
.dv-form-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.dv-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
}

/* Barre de progression */
.dv-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.dv-progress-step {
  padding: 12px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.dv-progress-step:last-child { border-right: none; }
.dv-progress-label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.dv-progress-num {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.dv-progress-step.is-active { background: var(--blue); }
.dv-progress-step.is-active .dv-progress-label,
.dv-progress-step.is-active .dv-progress-num { color: var(--white); }
.dv-progress-step.is-done { background: #e8f0fb; }
.dv-progress-step.is-done .dv-progress-label,
.dv-progress-step.is-done .dv-progress-num { color: var(--blue); }

/* Champs du formulaire */
.dv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
/* Séparateur OU */
.dv-or-sep {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--text-light);
}
.dv-or-sep::before,
.dv-or-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.dv-or-sep span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
}

.dv-field input[type="text"],
.dv-field input[type="email"],
.dv-field input[type="tel"],
.dv-field input[type="number"],
.dv-field select,
.dv-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.dv-field input:focus,
.dv-field select:focus,
.dv-field textarea:focus { border-color: var(--blue); }
.dv-field input.dv-field-error,
.dv-field select.dv-field-error,
.dv-field textarea.dv-field-error { border-color: #c0392b; }
.dv-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23747474' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.dv-field textarea { display: block; height: 140px; resize: vertical; }
.dv-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}
.dv-step-nav--right { justify-content: flex-end; }
.dv-form-error {
  background: #fdf0f0;
  border: 1px solid #e8a0a0;
  color: #9b2c2c;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Confirmation TERMINÉ */
.dv-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 48px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.dv-success-icon { color: var(--blue); }

/* Section bas : 2 blocs texte */
.dv-bot-section { padding: 80px 0; }
.dv-bot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.dv-bot-card { padding: 40px; }
.dv-bot-card:first-child { border-right: 1px solid var(--border); }
.dv-bot-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}
.dv-bot-card-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Devis — Responsive */
@media (max-width: 1024px) {
  .dv-hero-ben-list { padding-left: 40px; }
}
@media (max-width: 768px) {
  .dv-hero-inner { flex-direction: column; align-items: flex-start; }
  .dv-hero-ben-list { flex: none; width: 100%; border-left: none; border-top: 1px solid var(--border); padding: 24px 0 0; }
  .dv-how-grid { grid-template-columns: 1fr; }
  .dv-how-card { border-right: none; border-bottom: 1px solid var(--border); }
  .dv-how-card:last-child { border-bottom: none; }
  .dv-form-wrap { padding: 24px 16px; }
  .dv-progress { grid-template-columns: repeat(2, 1fr); }
  .dv-progress-step:nth-child(2) { border-right: none; }
  .dv-progress-step:nth-child(1),
  .dv-progress-step:nth-child(2) { border-bottom: 1px solid var(--border); }
  .dv-form-grid { grid-template-columns: 1fr; }
  .dv-bot-grid { grid-template-columns: 1fr; }
  .dv-bot-card:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}
