/* ========================================
   TAXI42 — Stripe Design System
   Font: Source Sans 3 (sohne-var substitute)
   ======================================== */

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

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  color: #64748d;
  background: #ffffff;
  line-height: 1.5;
  font-feature-settings: "ss01" on;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #533afd; text-decoration: none; transition: color 0.15s ease; }
a:hover { color: #4434d4; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 300;
  color: #061b31;
  font-feature-settings: "ss01" on;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.96px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.64px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
  letter-spacing: -0.22px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; font-size: 1rem; font-weight: 300; line-height: 1.5; }

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Navigation (Stripe style) --- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5edf5;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.nav-brand {
  font-size: 1.125rem;
  font-weight: 400;
  color: #061b31;
  letter-spacing: -0.3px;
  font-feature-settings: "ss01" on;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand:hover { color: #533afd; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #061b31;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: rgba(83,58,253,0.05);
  color: #533afd;
}

.nav-cta {
  background: #533afd !important;
  color: #ffffff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
}

.nav-cta:hover {
  background: #4434d4 !important;
}

/* --- Dropdown menu (cocoon) --- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 0.5rem 0;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #475569;
  white-space: nowrap;
  border-radius: 0;
}
.nav-dropdown-menu a:hover {
  background: rgba(83,58,253,0.05);
  color: #533afd;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
/* Arrow indicator */
.nav-dropdown .ph-caret-down {
  transition: transform 0.15s ease;
}
.nav-dropdown:hover .ph-caret-down {
  transform: rotate(180deg);
}

/* --- Hero Section (Uber-inspired IA) --- */
.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  min-height: 70vh;
}

.hero-quote-form {
  flex: 1;
  max-width: 480px;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #64748d;
  margin-bottom: 1.5rem;
}

.hero-cta {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.hero-phone {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #64748d;
}
.hero-phone a { color: #061b31; text-decoration: none; }
.hero-phone a:hover { color: #533afd; }

.hero-image {
  flex: 1;
  max-width: 480px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: rgba(50,50,93,0.25) 0px 30px 60px -30px, rgba(0,0,0,0.1) 0px 18px 36px -18px;
}

/* --- Phone CTA (Uber's signature) --- */
.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(21,190,83,0.1);
  border: 1px solid rgba(21,190,83,0.3);
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #108c3d;
  transition: all 0.15s ease;
}

.phone-badge:hover {
  background: rgba(21,190,83,0.15);
  border-color: rgba(21,190,83,0.5);
  color: #0a6b2c;
}

/* --- Buttons (Stripe) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  font-feature-settings: "ss01" on;
}

.btn-primary {
  background: #533afd;
  color: #ffffff;
}

.btn-primary:hover {
  background: #4434d4;
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: #533afd;
  border: 1px solid #b9b9f9;
}

.btn-ghost:hover {
  background: rgba(83,58,253,0.05);
  color: #4434d4;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* --- Sections --- */
.section {
  padding: 5rem 1.5rem;
}

.section-dark {
  background: #1c1e54;
  color: rgba(255,255,255,0.7);
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255,255,255,0.7);
}

.section-alt {
  background: #f8faff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 480px;
  margin: 0 auto;
  color: #64748d;
  font-size: 1rem;
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.final-cta {
  text-align: center;
  padding: 4rem 1.5rem;
}
.final-cta h2 { margin-bottom: 0.75rem; }
.final-cta p { max-width: 400px; margin: 0 auto 2rem; }
.final-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost-light {
  border-color: rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.9) !important;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* --- Service Cards (Stripe) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: rgba(23,23,23,0.06) 0px 3px 6px;
}

.service-card:hover {
  box-shadow: rgba(50,50,93,0.25) 0px 30px 45px -30px, rgba(0,0,0,0.1) 0px 18px 36px -18px;
  transform: translateY(-2px);
}

.service-card h3 { color: #061b31; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9375rem; color: #64748d; margin-bottom: 1.25rem; }
.service-card .btn { font-size: 0.875rem; padding: 0.5rem 1rem; }

/* --- Zone badges --- */
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}

.zone-badge {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #273951;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.zone-badge:hover {
  border-color: #b9b9f9;
  box-shadow: rgba(50,50,93,0.25) 0px 6px 12px -6px;
}

/* --- Stats / Highlights --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: "ss01" on;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* --- How it works (Uber steps) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(83,58,253,0.1);
  color: #533afd;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 400;
  color: #061b31;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: #64748d;
  margin: 0;
}

/* --- Pricing cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s ease;
  box-shadow: rgba(23,23,23,0.06) 0px 3px 6px;
}

.pricing-card:hover {
  box-shadow: rgba(50,50,93,0.25) 0px 20px 30px -20px, rgba(0,0,0,0.1) 0px 12px 24px -12px;
}

.pricing-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.pricing-amount {
  font-size: 2rem;
  font-weight: 300;
  color: #533afd;
  margin-bottom: 0.5rem;
  font-feature-settings: "ss01" on;
}
.pricing-note { font-size: 0.875rem; color: #64748d; margin: 0; }

/* --- Form (Stripe style) --- */
.form-card {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: rgba(50,50,93,0.25) 0px 30px 45px -30px, rgba(0,0,0,0.1) 0px 18px 36px -18px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #273951;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #061b31;
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #533afd;
  box-shadow: 0 0 0 1px #533afd;
}

.form-group input::placeholder {
  color: #64748d;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Footer --- */
footer {
  background: #1c1e54;
  color: rgba(255,255,255,0.6);
  padding: 2rem 1.5rem;
  text-align: center;
}

footer a {
  color: rgba(255,255,255,0.8);
}

footer a:hover {
  color: #ffffff;
}

footer .phone-badge {
  margin-bottom: 1.5rem;
}

/* --- Page content (for subpages) --- */
.page-section {
  padding: 3rem 1.5rem;
}

.page-section h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
}

/* --- Sticky Mobile Phone CTA (like Uber) --- */
.cta-tel {
  display: none;
}
@media (max-width: 640px) {
  .cta-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #15be4f;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.875rem 1rem;
    text-decoration: none;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    transition: background 0.15s ease;
  }
  .cta-tel:hover {
    background: #13a846;
    color: #ffffff;
  }
  .cta-tel i { font-size: 1.25rem; }

  /* Push footer up so content isn't hidden behind the CTA */
  footer { padding-bottom: 4.5rem; }
}

/* --- SEO content stack (visually reordered) --- */
.content-stack {
  display: flex;
  flex-direction: column;
}
.seo-intro {
  order: 999;
}

/* --- Reviews grid --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.review-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.review-stars {
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.review-author {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0;
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* --- FAQ accordion --- */
.faq-item {
  border-bottom: 1px solid #e5edf5;
  padding: 0.75rem 0;
}
.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #273951;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  user-select: none;
}
.faq-question:hover { color: #533afd; }
.faq-answer {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  padding: 0 0 0.75rem 0;
}

/* --- Time picker with chips --- */
.time-picker-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.time-picker-group input[type="time"] {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #d6d9fc;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #061b31;
  background: #ffffff;
}
.time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.time-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  font-size: 0.8125rem;
  font-family: inherit;
  border: 1px solid #d6d9fc;
  border-radius: 4px;
  background: #f8faff;
  color: #475569;
  cursor: pointer;
  transition: all 0.12s ease;
}
.time-chip:hover {
  border-color: #533afd;
  color: #533afd;
  background: rgba(83,58,253,0.04);
}
.time-chip.active {
  border-color: #533afd;
  background: #533afd;
  color: #ffffff;
}

/* --- Cookie consent banner --- */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid #e5edf5;
  padding: 1rem 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  font-size: 0.875rem;
}
#cookie-banner p {
  margin: 0;
  max-width: 500px;
  color: #475569;
  font-size: 0.875rem;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 3.5rem;
  }
  #cookie-banner p { max-width: 100%; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-cta { display: block; }

  .hero { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem 1rem; min-height: auto; }
  .hero-quote-form { max-width: 100%; }
  .hero-cta { width: 100%; }

  .section { padding: 3rem 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .phone-badge { font-size: 1.125rem; padding: 0.625rem 1.25rem; }
}

@media (max-width: 640px) {
  h1 { font-size: 1.75rem; letter-spacing: -0.64px; }
  h2 { font-size: 1.375rem; letter-spacing: -0.4px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }
}

/* --- Estimation box (réservation) --- */
.taxi-estimation {
  background: #f8faff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  min-height: 3rem;
}

.estimation-label { color: #64748d; font-size: 0.8125rem; }
.estimation-price { font-size: 1.5rem; font-weight: 300; color: #533afd; }
.estimation-badge {
  display: inline-block;
  background: rgba(83,58,253,0.1);
  color: #533afd;
  font-size: 0.75rem;
  padding: 1px 6px;
  border-radius: 4px;
}
.estimation-placeholder { color: #64748d; }
.estimation-spinner { color: #64748d; }
.estimation-error { color: #ea2261; }
.estimation-result { line-height: 1.8; }

/* --- Hero mini-form (Uber-like) --- */
.hero-quote-form {
  text-align: left;
}

.hqf-fields {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  padding: 0.25rem;
  box-shadow: rgba(50,50,93,0.25) 0px 10px 20px -15px;
}

.hqf-fields input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0.875rem 1rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #061b31;
  background: transparent;
}

.hqf-fields input::placeholder { color: #94a3b8; }
.hqf-arrow { flex-shrink: 0; margin: 0 0.25rem; }

.hqf-result { min-height: 2rem; margin-top: 0.5rem; }
.hqf-price { font-size: 1rem; }

/* --- Autocomplete dropdown --- */
.ac-wrapper { position: relative; }
.ac-dropdown {
  position: absolute;
  z-index: 999;
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  box-shadow: rgba(50,50,93,0.25) 0px 20px 30px -20px, rgba(0,0,0,0.1) 0px 12px 24px -12px;
  overflow: hidden;
  max-height: 240px;
  overflow-y: auto;
}
.ac-item {
  padding: 0.625rem 0.875rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #061b31;
  transition: background 0.1s;
}
.ac-item:hover,
.ac-item.active { background: rgba(83,58,253,0.06); }

@media (max-width: 640px) {
  .hqf-fields { flex-direction: column; gap: 0; }
  .hqf-arrow { transform: rotate(90deg); margin: 0.25rem 0; }
  .hqf-fields input { width: 100%; }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade-in up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade-in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scale on hover */
.card-hover {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px) scale(1.01);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.12s; }
.stagger > *:nth-child(3) { animation-delay: 0.19s; }

/* Hero entrance */
.hero-animate {
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-animate-delay {
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-animate-image {
  animation: fadeIn 0.8s ease 0.4s both;
}

/* Pulse CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(83,58,253,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(83,58,253,0); }
}
.btn-pulse {
  animation: pulse-glow 2s ease infinite;
}

/* Gradient shift for hero bg */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Section separator dots */
.section-dots {
  position: relative;
}
.section-dots::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #533afd, transparent);
  border-radius: 2px;
  opacity: 0.5;
}

/* Decorative gradient blob */
.hero-blob {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83,58,253,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Icon default */
.ph {
  vertical-align: middle;
  line-height: 1;
}

/* Service card icon */
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(83,58,253,0.08);
  color: #533afd;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-card:nth-child(2) .service-icon {
  background: rgba(21,190,83,0.08);
  color: #15be53;
}

/* Step icon */
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(83,58,253,0.08);
  color: #533afd;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.step:hover .step-icon {
  transform: scale(1.1);
  background: rgba(83,58,253,0.15);
}

/* Stat icon */
.stat-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  display: block;
}

/* Zone icon */
.zone-badge .ph {
  margin-right: 0.375rem;
  font-size: 1rem;
}

/* Pricing icon */
.pricing-icon {
  font-size: 2rem;
  color: #533afd;
  margin-bottom: 0.75rem;
  display: block;
}

/* Contact icon */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(83,58,253,0.08);
  color: #533afd;
  font-size: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  text-align: left;
}

/* Confirmation icon big */
.confirm-icon {
  font-size: 2.5rem;
  color: #15be53;
}

/* Pricing card accent */
.pricing-card.featured {
  border-color: #533afd;
  position: relative;
}
.pricing-card.featured::after {
  content: 'Recommandé';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #533afd;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 400;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Gradient text hero */
.hero-gradient-text {
  background: linear-gradient(135deg, #061b31 0%, #533afd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Service card image placeholder */
.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: #f8faff;
}

/* Footer social-like */
.footer-phone-large {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer-phone-large:hover { color: #533afd; }
