/* ========================================
   COSCOMPLY — Global Stylesheet
   Brand: #FF6A00 / #111 / #2F2F2F / #F2F2F2 / #FFF
   Fonts: Poppins (titles) + Inter (body)
   ======================================== */

/* --- Variables --- */
:root {
  --primary: #FF6A00;
  --primary-hover: #E55E00;
  --primary-light: rgba(255, 106, 0, 0.08);
  --dark: #111111;
  --dark-secondary: #2F2F2F;
  --light: #F2F2F2;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Layout --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section--gray {
  background: var(--light);
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 17px;
  color: var(--dark-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--dark);
  text-decoration: none;
}

.header__logo span {
  color: var(--primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-secondary);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--primary);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__cta {
  margin-left: 12px;
}

/* Mobile menu */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--dark-secondary);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
}

.btn--outline-dark:hover {
  border-color: var(--dark);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding: 13px 16px;
}

.btn--ghost:hover {
  background: var(--primary-light);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 120px 0 0;
  background: var(--white);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--dark);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 17px;
  color: var(--dark-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Hero banner */
.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #FFF8F3;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

.hero-banner .hero__content {
  padding: 56px 40px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Aurora couvre toute la bannière */
.hero__aurora {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.aurora-blob--1 {
  width: 420px;
  height: 420px;
  background: rgba(255, 106, 0, 0.30);
  top: -100px;
  right: -80px;
}

.aurora-blob--2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 160, 60, 0.28);
  bottom: -80px;
  left: -60px;
}

.aurora-blob--3 {
  width: 280px;
  height: 280px;
  background: rgba(255, 210, 150, 0.40);
  top: 60px;
  left: 30%;
}

.aurora-blob--4 {
  width: 200px;
  height: 200px;
  background: rgba(255, 130, 30, 0.20);
  bottom: 40px;
  right: 30%;
}

/* Card héro droite */
.hero__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 40px 20px;
  position: relative;
  z-index: 2;
}

.hero__card-inner {
  background: var(--dark);
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero__card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.hero__card-item:last-of-type {
  border-bottom: none;
}

.hero__card-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__card-footer {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-style: italic;
}

/* Hero stats */
.hero__stats {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding: 0;
}

.hero__stat-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero__stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(255, 106, 0, 0.13);
}

.hero__stat-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.hero__stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__stat-icon svg path,
.hero__stat-icon svg polyline,
.hero__stat-icon svg line,
.hero__stat-icon svg circle {
  fill: none;
}

.hero__stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--dark);
  line-height: 1.1;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--dark-secondary);
  line-height: 1.4;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 15px;
  color: var(--dark-secondary);
  line-height: 1.7;
}

.service-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   FEATURE BLOCKS (Regulation page)
   ======================================== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.feature-block + .feature-block {
  border-top: 1px solid var(--light);
}

.feature-block--reverse {
  direction: rtl;
}

.feature-block--reverse > * {
  direction: ltr;
}

.feature-block__content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--dark);
}

.feature-block__content p {
  font-size: 16px;
  color: var(--dark-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.feature-block__visual {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.feature-block__visual svg {
  width: 120px;
  height: 120px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

/* List check */
.check-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-secondary);
  line-height: 1.6;
}

.check-list li svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

/* ========================================
   INFO CARDS (Regulation page)
   ======================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.info-card__number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 12px;
}

.info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.info-card p {
  font-size: 15px;
  color: var(--dark-secondary);
  line-height: 1.7;
}

/* ========================================
   TOOLTIP
   ======================================== */
.tooltip-trigger {
  position: relative;
  border-bottom: 1px dashed var(--primary);
  color: var(--primary);
  cursor: help;
  font-weight: 500;
}

.tooltip-trigger .tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  pointer-events: none;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.tooltip-trigger .tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--dark);
}

.tooltip-trigger:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ========================================
   FORM
   ======================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.form-group label .required {
  color: var(--primary);
}

.form-group label .optional {
  color: #999;
  font-weight: 400;
  font-size: 13px;
}

.form-input {
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-input::placeholder {
  color: #aaa;
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 13px;
  color: var(--dark-secondary);
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.form-note svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.form-success h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--dark-secondary);
  font-size: 15px;
}

/* ========================================
   ACCORDION
   ======================================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  gap: 16px;
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--dark-secondary);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body__inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--dark-secondary);
  line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo span {
  color: var(--primary);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer__col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--primary);
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--dark);
  color: var(--white);
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ========================================
   TIMELINE
   ======================================== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  z-index: 1;
}

.timeline-item h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--dark);
}

.timeline-item p {
  font-size: 15px;
  color: var(--dark-secondary);
  line-height: 1.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .hero-banner {
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }

  .hero-banner .hero__content {
    padding: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block--reverse {
    direction: ltr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 64px 0;
  }

  .header__inner {
    padding: 0 24px;
  }

  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-banner {
    grid-template-columns: 1fr;
  }

  .hero__card {
    padding: 0 24px 32px;
    justify-content: flex-start;
  }

  .hero__card-inner {
    max-width: 100%;
  }

  .hero-banner .hero__content {
    padding: 32px 24px;
  }

  .hero__stats {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero__stat-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }

  .hero__stat-number {
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: 28px;
  }
}
