/* ============================================================
   InfoQuartier.ca - Main Stylesheet
   Clean, minimal, modern — Stripe/Linear inspired
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --primary: #1a1a2e;
  --primary-light: #2d2d4a;
  --accent: #e63946;
  --accent-hover: #d62836;
  --bg: #f8f9fa;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-light: #555;
  --muted: #6c757d;
  --border: #e2e8f0;
  --success: #38a169;
  --warning: #d69e2e;
  --error: #e53e3e;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-width: 1140px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

ul,
ol {
  list-style: none;
}

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

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

.text-muted {
  color: var(--muted);
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn .spinner {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background-color: var(--white);
}

/* ----- Animations ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
}

.navbar__logo:hover {
  color: var(--white);
}

.navbar__logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.navbar__logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.navbar__links a:hover {
  color: var(--white);
}

.navbar__links--open {
  display: flex !important;
}

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
  font-size: 0.85rem;
}

.navbar__lang-active {
  color: var(--white);
  font-weight: 700;
}

.navbar__lang-switch {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: color var(--transition);
}

.navbar__lang-switch:hover {
  color: var(--white);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(230, 57, 70, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.hero__cta:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.35);
}

.hero__note {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================
   STEPS
   ========================================================== */
.steps {
  padding: 4.5rem 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.steps__card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.steps__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.steps__icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.steps__heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.steps__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================
   TRUST BADGES
   ========================================================== */
.trust {
  padding: 2.5rem 0;
}

.trust__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust__icon {
  width: 24px;
  height: 24px;
  background-color: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.trust__label {
  white-space: nowrap;
}

/* ==========================================================
   PROOF / COUNTER
   ========================================================== */
.proof {
  padding: 3rem 0;
  background-color: var(--white);
}

.proof__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.proof__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.proof__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner {
  background-color: var(--primary);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-banner__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.cta-banner__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-stack);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.btn--primary:hover:not(:disabled) {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover:not(:disabled) {
  background-color: var(--primary);
  color: var(--white);
}

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

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.btn__arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ==========================================================
   FORMS
   ========================================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group--half {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 200px;
}

.form-group--quarter {
  flex: 1 1 calc(25% - 0.75rem);
  min-width: 140px;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.required {
  color: var(--accent);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-stack);
  color: var(--text);
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

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

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

.form-input--error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.35rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ==========================================================
   RADIO / CHECKBOX CARDS
   ========================================================== */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.radio-group--vertical {
  flex-direction: column;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition),
    box-shadow var(--transition);
}

.radio-card:hover {
  border-color: var(--primary-light);
}

.radio-card input[type='radio'] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.radio-card input[type='radio']:checked ~ .radio-card__body {
  color: var(--primary);
}

.radio-card:has(input:checked) {
  border-color: var(--primary);
  background-color: rgba(26, 26, 46, 0.03);
  box-shadow: 0 0 0 1px var(--primary);
}

.radio-card__body {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition),
    box-shadow var(--transition);
}

.checkbox-card:hover {
  border-color: var(--primary-light);
}

.checkbox-card input[type='checkbox'] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-card:has(input:checked) {
  border-color: var(--primary);
  background-color: rgba(26, 26, 46, 0.03);
  box-shadow: 0 0 0 1px var(--primary);
}

.checkbox-card__body {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-inline input[type='checkbox'] {
  margin-top: 3px;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.radio-pill:hover {
  border-color: var(--primary-light);
}

.radio-pill:has(input:checked) {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.radio-pill input[type='radio'] {
  display: none;
}

/* ==========================================================
   PROGRESS BAR
   ========================================================== */
.progress {
  margin-bottom: 2.5rem;
}

.progress__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 1rem;
}

.progress__bar::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background-color: var(--border);
  z-index: 0;
}

.progress__fill {
  position: absolute;
  top: 18px;
  left: 2rem;
  height: 3px;
  background-color: var(--accent);
  z-index: 1;
  transition: width 0.4s ease;
}

.progress__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.progress__step span:first-child {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.3s ease;
}

.progress__step--active span:first-child {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.progress__step--done span:first-child {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.progress__step--done span:first-child::after {
  content: '';
}

.progress__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.progress__step--active .progress__label {
  color: var(--primary);
}

.progress__step--done .progress__label {
  color: var(--accent);
}

/* ==========================================================
   QUESTIONNAIRE
   ========================================================== */
.questionnaire {
  padding: 3rem 0;
}

.questionnaire__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.questionnaire__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.questionnaire__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}

.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
  border: none;
  padding: 0;
  margin: 0;
}

.form-step--active {
  display: block;
}

.form-step__legend {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

/* ==========================================================
   RESULTS
   ========================================================== */
.results {
  padding: 3rem 0;
}

.results__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.results__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.results__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.results__cta-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Price Card */
.price-card {
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.price-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.price-card__range {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.price-card__low,
.price-card__high {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.price-card__separator {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card__context {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Factors */
.factors {
  margin-top: 2rem;
  text-align: left;
}

.factors__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.factors__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.factor-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.factor-card__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.factor-card__label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.factor-card__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Email confirm */
.email-confirm {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ==========================================================
   DISCLAIMER
   ========================================================== */
.disclaimer {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.disclaimer__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.35rem;
}

.disclaimer__text {
  font-size: 0.85rem;
  color: #78350f;
  line-height: 1.6;
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-page {
  padding: 3rem 0;
}

.contact-page__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-page__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.contact-page__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
}

.contact-form {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.contact-page__info {
  margin-top: 2rem;
}

.contact-info-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* ==========================================================
   ALERTS
   ========================================================== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.alert--success {
  background-color: #f0fff4;
  color: #22543d;
  border: 1px solid #c6f6d5;
}

.alert--error {
  background-color: #fff5f5;
  color: #9b2c2c;
  border: 1px solid #fed7d7;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer__brand {
  margin-bottom: 1.5rem;
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 340px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 2rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================
   RESPONSIVE - 1024px
   ========================================================== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.2rem;
  }

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

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

/* ==========================================================
   RESPONSIVE - 768px
   ========================================================== */
@media (max-width: 768px) {
  /* Nav mobile */
  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .navbar__links--open {
    display: flex !important;
  }

  .navbar__links a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Hero mobile */
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  /* Steps */
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Section */
  .section {
    padding: 2.5rem 0;
  }

  /* Trust */
  .trust__grid {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* Proof */
  .proof__inner {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Forms */
  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group--half,
  .form-group--quarter {
    flex: 1 1 100%;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .btn {
    width: 100%;
  }

  /* Progress */
  .progress__label {
    display: none;
  }

  /* Results */
  .price-card {
    padding: 1.75rem;
  }

  .price-card__low,
  .price-card__high {
    font-size: 1.75rem;
  }

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

  /* Footer */
  .footer__links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__copy {
    text-align: center;
  }
}
