/**
 * refonte-premium.css — Conciergerie Privée Suzosky
 * REFONTE COMPLÈTE : Positionnement, UX/UI, Conversion, Branding premium
 * Palette: or #c9ab81 / #b8956f — bleu nuit #1e2e42 — noir profond #0d1520
 */

/* ═══════════════════════════════════════════════════════════════════
   VARIABLES CSS
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --gold: #c9ab81;
  --gold-dark: #b8956f;
  --gold-light: #e4d5b7;
  --navy: #1e2e42;
  --navy-deep: #0d1520;
  --navy-light: #2a3f5a;
  --white: #ffffff;
  --off-white: #f9f7f3;
  --text-primary: #1e2e42;
  --text-secondary: #666;
  --text-muted: #999;
  --border-gold: rgba(201,171,129,.2);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1);
  --shadow-lg: 0 15px 50px rgba(0,0,0,.15);
  --shadow-gold: 0 6px 20px rgba(201,171,129,.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════════════════════════
   BRAND PROMISE BAR (TOPBAR)
   ═══════════════════════════════════════════════════════════════════ */
.brand-promise-bar {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid rgba(201,171,129,.15);
  position: relative;
  z-index: 50;
}

/* Fix: header-inner must sit ABOVE the brand-promise-bar */
.enable-fixed-header #header .header-inner {
  z-index: 999;
}
.brand-promise-bar .promise-text {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-promise-bar .promise-text .separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
}
.brand-promise-bar .promise-text .highlight {
  color: #fff;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION — ENHANCED
   ═══════════════════════════════════════════════════════════════════ */
.hero-tagline {
  display: inline-block;
  background: rgba(201,171,129,.15);
  border: 1px solid rgba(201,171,129,.3);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}
.hero-sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(201,171,129,.25);
  border-radius: 30px;
  padding: 10px 20px;
  margin-top: 24px;
  backdrop-filter: blur(8px);
}
.hero-sla-badge .pulse-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}
.hero-sla-badge span {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

/* ═══════════════════════════════════════════════════════════════════
   SEGMENT SELECTOR (Persona routing)
   ═══════════════════════════════════════════════════════════════════ */
.segment-selector {
  background: var(--white);
  padding: 60px 0;
  position: relative;
}
.segment-selector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.segment-selector .section-header {
  text-align: center;
  margin-bottom: 45px;
}
.segment-selector .section-header h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 12px;
}
.segment-selector .section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}
.segment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.segment-card {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px 28px 35px;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(201,171,129,.1);
  transition: var(--transition);
  overflow: hidden;
}
.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform .3s ease;
}
.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,171,129,.3);
}
.segment-card:hover::before {
  transform: scaleX(1);
}
.segment-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}
.segment-card h3 {
  color: var(--gold);
  font-family: 'Roboto Slab', serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.segment-card p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.segment-card .card-cta {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.segment-card:hover .card-cta {
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════
   PROOFS / METRICS BAR
   ═══════════════════════════════════════════════════════════════════ */
.proof-bar {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 50px 0;
  border-top: 1px solid rgba(201,171,129,.1);
  border-bottom: 1px solid rgba(201,171,129,.1);
}
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.proof-metric {
  position: relative;
}
.proof-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201,171,129,.2);
}
.proof-metric .metric-number {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.proof-metric .metric-label {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════
   FLEET TEASER (3 visible items even for non-members)
   ═══════════════════════════════════════════════════════════════════ */
.fleet-teaser {
  background: var(--off-white);
  padding: 70px 0;
}
.fleet-teaser .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.fleet-teaser .section-header h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 12px;
}
.fleet-teaser .section-header p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}
.fleet-grid-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.fleet-teaser-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-gold);
}
.fleet-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fleet-teaser-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.fleet-teaser-card .card-body {
  padding: 20px;
}
.fleet-teaser-card .card-category {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.fleet-teaser-card h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.fleet-teaser-card .card-price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .95rem;
}
.fleet-teaser .cta-center {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   MANIFESTO / BRAND STORY SECTION
   ═══════════════════════════════════════════════════════════════════ */
.brand-story {
  background: var(--white);
  padding: 80px 0;
  position: relative;
}
.brand-story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.brand-story .story-content {
  padding-right: 20px;
}
.brand-story .story-label {
  display: inline-block;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.brand-story h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
.brand-story .story-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.brand-story .story-signature {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,171,129,.2);
}
.brand-story .story-signature .sig-name {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
}
.brand-story .story-signature .sig-role {
  color: var(--text-muted);
  font-size: .85rem;
}
.brand-story .story-visual {
  position: relative;
}
.brand-story .story-visual .visual-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.brand-story .story-visual .visual-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--navy);
  color: var(--gold);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.brand-story .story-visual .visual-badge .badge-number {
  font-family: 'Roboto Slab', serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
.brand-story .story-visual .visual-badge .badge-text {
  font-size: .8rem;
  opacity: .8;
}

/* ═══════════════════════════════════════════════════════════════════
   SOCIAL PROOF / TESTIMONIALS PREMIUM
   ═══════════════════════════════════════════════════════════════════ */
.social-proof {
  background: var(--off-white);
  padding: 70px 0;
}
.social-proof .section-header {
  text-align: center;
  margin-bottom: 45px;
}
.social-proof .section-header h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 12px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-premium {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-premium:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-premium .stars {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1rem;
}
.testimonial-premium blockquote {
  color: var(--text-secondary);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.65;
  margin: 0 0 18px;
  padding: 0;
  border: none;
}
.testimonial-premium .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-premium .author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.testimonial-premium .author-name {
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}
.testimonial-premium .author-role {
  color: var(--text-muted);
  font-size: .8rem;
}

/* ═══════════════════════════════════════════════════════════════════
   SLA / PROCESS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.sla-process {
  background: var(--white);
  padding: 70px 0;
}
.sla-process .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.sla-process .section-header h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 8px;
}
.sla-process .section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.process-step {
  position: relative;
  padding: 30px 20px;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
}
.process-step .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.process-step h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.5;
}
.process-step .step-time {
  display: inline-block;
  background: rgba(201,171,129,.1);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════════
   PARTNERS LOGOS PREMIUM
   ═══════════════════════════════════════════════════════════════════ */
.partners-premium {
  background: var(--off-white);
  padding: 50px 0;
  text-align: center;
}
.partners-premium h5 {
  color: var(--text-muted);
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  opacity: .7;
}
.partners-logos img {
  max-height: 40px;
  filter: grayscale(100%);
  transition: filter .3s;
}
.partners-logos img:hover {
  filter: grayscale(0);
}

/* ═══════════════════════════════════════════════════════════════════
   QUICK LEAD SEGMENTED (3 tabs: Mobilité / Aviation / Événement)
   ═══════════════════════════════════════════════════════════════════ */
.quick-lead-segmented {
  background: var(--navy);
  padding: 70px 0;
  text-align: center;
}
.quick-lead-segmented h3 {
  font-family: 'Roboto Slab', serif;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.quick-lead-segmented .subtitle {
  color: rgba(255,255,255,.65);
  margin-bottom: 30px;
  font-size: 1rem;
}
.lead-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 30px;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 4px;
  display: inline-flex;
}
.lead-tab-btn {
  padding: 12px 28px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.lead-tab-btn.active {
  background: var(--gold);
  color: var(--navy);
}
.lead-tab-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.lead-tab-content {
  display: none;
}
.lead-tab-content.active {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING PREVIEW (Starting from)
   ═══════════════════════════════════════════════════════════════════ */
.pricing-preview {
  background: var(--white);
  padding: 70px 0;
}
.pricing-preview .section-header {
  text-align: center;
  margin-bottom: 45px;
}
.pricing-preview .section-header h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 10px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  text-align: center;
  border: 1px solid rgba(201,171,129,.1);
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.pricing-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.pricing-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.pricing-card .price-from {
  color: var(--text-muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.pricing-card .price-amount {
  color: var(--gold);
  font-family: 'Roboto Slab', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-card .price-unit {
  font-size: .85rem;
  font-weight: 400;
}
.pricing-card .card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}
.pricing-card .card-features li {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.pricing-card .card-features li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 8px;
  font-weight: 700;
}
.pricing-card .btn-card {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-size: .95rem;
}
.pricing-card .btn-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP VIP BUTTON
   ═══════════════════════════════════════════════════════════════════ */
.whatsapp-vip {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
}
.whatsapp-vip a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: var(--transition);
}
.whatsapp-vip a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.45);
}
.whatsapp-vip .wa-icon {
  font-size: 1.4rem;
}

/* ═══════════════════════════════════════════════════════════════════
   MON COMPTE — PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════ */
.account-premium-body {
  background: linear-gradient(180deg, #f5f7fa 0%, var(--off-white) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.account-header-premium {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}
.account-header-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,171,129,.08), transparent 70%);
}
.account-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,171,129,.15);
  border: 1px solid rgba(201,171,129,.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-top: 10px;
}
.account-tier-badge .tier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.account-tier-badge span {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Mission Timeline */
.mission-timeline {
  position: relative;
  padding-left: 30px;
}
.mission-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--border-gold));
}
.timeline-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.timeline-item:hover {
  box-shadow: var(--shadow-md);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item.completed::before {
  background: #22c55e;
  box-shadow: 0 0 0 2px #22c55e;
}
.timeline-item .tl-date {
  color: var(--text-muted);
  font-size: .82rem;
  margin-bottom: 6px;
}
.timeline-item .tl-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.timeline-item .tl-desc {
  color: var(--text-secondary);
  font-size: .9rem;
}
.timeline-item .tl-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  margin-top: 8px;
}
.tl-status.active { background: rgba(201,171,129,.1); color: var(--gold-dark); }
.tl-status.completed { background: rgba(34,197,94,.1); color: #16a34a; }
.tl-status.pending { background: rgba(245,158,11,.1); color: #d97706; }

/* Quick Actions */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.quick-action-btn:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--navy);
}
.quick-action-btn .action-icon {
  font-size: 1.5rem;
}

/* Preferences Card */
.preferences-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.preferences-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.preferences-card h3 i {
  color: var(--gold);
}
.pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.pref-item:last-child {
  border-bottom: none;
}
.pref-label {
  color: var(--text-secondary);
  font-size: .9rem;
}
.pref-value {
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
}
.pref-value.not-set {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}

/* Concierge Direct Line */
.concierge-direct {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--white);
  margin-bottom: 20px;
}
.concierge-direct .cd-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.concierge-direct .cd-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.concierge-direct .cd-name {
  font-weight: 700;
}
.concierge-direct .cd-role {
  color: var(--gold);
  font-size: .85rem;
}
.concierge-direct .cd-actions {
  display: flex;
  gap: 10px;
}
.concierge-direct .cd-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: var(--transition);
}
.concierge-direct .cd-btn.primary {
  background: var(--gold);
  color: var(--navy);
}
.concierge-direct .cd-btn.secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.concierge-direct .cd-btn:hover {
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   EDUCATION CONTENT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.education-content {
  background: var(--off-white);
  padding: 70px 0;
}
.education-content .section-header {
  text-align: center;
  margin-bottom: 45px;
}
.education-content .section-header h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 10px;
}
.edu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.edu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}
.edu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.edu-card .edu-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.edu-card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}
.edu-card p {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 12px;
}
.edu-card .read-more {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .88rem;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS — GLOBAL PREMIUM
   ═══════════════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(201,171,129,.2);
  transition: var(--transition);
  cursor: pointer;
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: rgba(201,171,129,.1);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE PREMIUM
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .segment-cards, .fleet-grid-teaser, .testimonials-grid, .pricing-cards, .edu-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .proof-metric:not(:last-child)::after {
    display: none;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
  .brand-story .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .brand-promise-bar .promise-text {
    font-size: .72rem;
    gap: 10px;
  }
  .segment-cards, .fleet-grid-teaser, .testimonials-grid, .pricing-cards, .edu-cards {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .proof-metrics {
    grid-template-columns: 1fr 1fr;
    padding: 0 15px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .lead-tabs {
    flex-direction: column;
  }
  .lead-tab-btn {
    width: 100%;
  }
  .whatsapp-vip {
    bottom: 90px;
    right: 15px;
  }
  .whatsapp-vip a {
    padding: 10px 16px;
    font-size: .82rem;
  }
}
