.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,26,62,0.97);
  backdrop-filter: blur(8px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-brand-icon {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-brand-text {
  font-size: 1.05em; font-weight: 700; color: #fff;
}
.nav-brand-text span { color: var(--orange-light); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: #c5d4eb; text-decoration: none; font-size: .88em;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--orange-light); }
.nav-cta {
  background: var(--orange); color: #fff; text-decoration: none;
  padding: 9px 22px; border-radius: 8px; font-size: .88em; font-weight: 700;
  transition: background .2s, transform .15s;
}
.nav-cta:hover {
  background: var(--orange-light); transform: translateY(-1px);
}

/* Responsive — masquer les liens sur mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
}



/*
 * ══════════════════════════════════════════════════════════════
 * AUTO-ÉCOLE — Styles Elementor
 * ezway technology · Odoo 19 SaaS
 * ══════════════════════════════════════════════════════════════
 *
 * INTÉGRATION WORDPRESS / ELEMENTOR :
 * ► CSS  → Elementor > Custom CSS  OU  Apparence > Personnaliser > CSS additionnel
 * ► Police Google Fonts Inter → ajouter dans Apparence > Personnaliser > CSS additionnel :
 *   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
 * ══════════════════════════════════════════════════════════════
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
  }

  /* ── Variables ── */
  :root {
    --blue: #0b1a3e;
    --blue-mid: #162d5a;
    --blue-light: #1565c0;
    --orange: #f57c00;
    --orange-light: #ff9800;
    --green: #43a047;
    --gray-bg: #f7f8fb;
    --gray-text: #555;
    --radius: 14px;
  }

  /* ── Layout ── */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  section { padding: 80px 0; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(11,26,62,0.97);
    backdrop-filter: blur(8px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-brand-icon {
    width: 36px; height: 36px; background: var(--orange);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .nav-brand-text { font-size: 1.05em; font-weight: 700; color: #fff; }
  .nav-brand-text span { color: var(--orange-light); }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { color: #c5d4eb; text-decoration: none; font-size: .88em; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--orange-light); }
  .nav-cta {
    background: var(--orange); color: #fff; text-decoration: none;
    padding: 9px 22px; border-radius: 8px; font-size: .88em; font-weight: 700;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

  /* ── HERO ── */
  #hero {
    background: linear-gradient(135deg, #0b1a3e 0%, #162d5a 55%, #0d2244 100%);
    padding: 100px 0 80px;
    position: relative; overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute; top: -60px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,124,0,.18) 0%, transparent 70%);
    pointer-events: none;
  }
  #hero::after {
    content: '';
    position: absolute; bottom: -40px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(21,101,192,.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,124,0,.15); border: 1px solid rgba(245,124,0,.4);
    color: var(--orange-light); padding: 6px 16px; border-radius: 20px;
    font-size: .82em; font-weight: 600; margin-bottom: 24px;
    letter-spacing: .3px;
  }
  .hero-badge::before { content: '●'; font-size: .6em; }
  #hero h1 {
    font-size: clamp(2.4em, 5vw, 3.8em); font-weight: 900; color: #fff;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px;
  }
  #hero h1 span { color: var(--orange); }
  .hero-subtitle {
    font-size: clamp(.98em, 2vw, 1.18em); color: #c5d4eb;
    max-width: 580px; line-height: 1.75; margin-bottom: 36px;
  }
  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
  .btn-primary {
    background: var(--orange); color: #fff; text-decoration: none;
    padding: 15px 34px; border-radius: 10px; font-weight: 700; font-size: 1em;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(245,124,0,.35);
  }
  .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,124,0,.45); }
  .btn-secondary {
    color: #c5d4eb; text-decoration: none;
    padding: 15px 28px; border-radius: 10px; font-weight: 600; font-size: 1em;
    border: 1px solid rgba(255,255,255,.2); transition: all .2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.06); }
  .hero-price {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 6px 18px; color: #fff; font-size: .88em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .hero-price strong { color: var(--orange-light); font-size: 1.2em; }
  .hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .hero-tag {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
    color: #c5d4eb; padding: 5px 14px; border-radius: 20px; font-size: .8em; font-weight: 500;
  }
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px;
  }
  .hero-stat {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; padding: 20px; text-align: center;
  }
  .hero-stat .num { font-size: 2em; font-weight: 800; color: var(--orange); }
  .hero-stat .label { font-size: .82em; color: #8ea7cf; margin-top: 4px; }

  /* ── STRIP ── */
  .strip {
    background: var(--orange); padding: 18px 0;
    overflow: hidden; white-space: nowrap;
  }
  .strip-inner { display: flex; gap: 48px; animation: scroll 25s linear infinite; }
  .strip-item { font-weight: 700; color: #fff; font-size: .9em; flex-shrink: 0; }
  .strip-item::before { content: '✓  '; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTION TITLES ── */
  .section-label {
    display: inline-block; background: rgba(245,124,0,.1); border: 1px solid rgba(245,124,0,.3);
    color: var(--orange); padding: 4px 14px; border-radius: 20px; font-size: .78em;
    font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(1.7em, 3vw, 2.4em); font-weight: 800; color: var(--blue);
    letter-spacing: -.5px; margin-bottom: 14px; line-height: 1.2;
  }
  .section-sub { font-size: .98em; color: var(--gray-text); max-width: 560px; line-height: 1.75; }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto; }

  /* ── FEATURES ── */
  #features { background: var(--gray-bg); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px; margin-top: 48px;
  }
  .feature-card {
    background: #fff; border-radius: var(--radius);
    padding: 28px 26px; border: 1px solid #e8ecf4;
    transition: transform .2s, box-shadow .2s;
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent, var(--orange));
  }
  .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,26,62,.1); }
  .feature-icon { font-size: 2em; margin-bottom: 14px; }
  .feature-card h3 { font-size: .98em; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
  .feature-card p { font-size: .87em; color: var(--gray-text); line-height: 1.7; }

  /* ── HOW IT WORKS ── */
  .steps { display: flex; gap: 0; margin-top: 48px; position: relative; }
  .steps::before {
    content: ''; position: absolute; top: 24px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    z-index: 0;
  }
  .step { flex: 1; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
  .step-num {
    width: 48px; height: 48px; border-radius: 50%; background: var(--orange);
    color: #fff; font-weight: 800; font-size: .9em;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(245,124,0,.35);
  }
  .step:last-child .step-num { background: var(--green); box-shadow: 0 4px 14px rgba(67,160,71,.35); }
  .step h3 { font-size: .88em; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
  .step p { font-size: .8em; color: var(--gray-text); line-height: 1.6; }

  /* ── PORTAL HIGHLIGHT ── */
  #portal {
    background: linear-gradient(135deg, #0d4f3c, #1b5e20);
    color: #fff; position: relative; overflow: hidden;
  }
  #portal::before {
    content: ''; position: absolute; top: -80px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  }
  #portal .section-label { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #a5d6a7; }
  #portal .section-title { color: #fff; }
  #portal .section-sub { color: #a5d6a7; }
  .portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
  .portal-features { display: flex; flex-direction: column; gap: 18px; }
  .portal-feat {
    display: flex; gap: 16px; align-items: flex-start;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; padding: 18px 20px;
  }
  .portal-feat-icon { font-size: 1.6em; flex-shrink: 0; margin-top: 2px; }
  .portal-feat h4 { font-size: .92em; font-weight: 700; color: #fff; margin-bottom: 4px; }
  .portal-feat p { font-size: .83em; color: #a5d6a7; line-height: 1.6; }
  .portal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .portal-card {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px; padding: 22px; text-align: center;
  }
  .portal-card .emoji { font-size: 1.8em; margin-bottom: 10px; }
  .portal-card p { font-size: .82em; color: #c8e6c9; font-weight: 600; line-height: 1.4; }

  /* ── FORFAIT MODES ── */
  #forfaits { background: var(--gray-bg); }
  .modes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .mode-card { border-radius: var(--radius); padding: 28px 24px; border-top: 4px solid; }
  .mode-card.red { background: #ffebee; border-color: #e53935; }
  .mode-card.orange { background: #fff3e0; border-color: var(--orange); }
  .mode-card.green { background: #e8f5e9; border-color: var(--green); }
  .mode-card h3 { font-size: .95em; font-weight: 700; margin-bottom: 10px; }
  .mode-card.red h3 { color: #b71c1c; }
  .mode-card.orange h3 { color: #e65100; }
  .mode-card.green h3 { color: #1b5e20; }
  .mode-card p { font-size: .86em; color: var(--gray-text); line-height: 1.7; }

  /* ── SPECS TABLE ── */
  .specs-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: .9em; }
  .specs-table th {
    background: var(--blue); color: #fff; padding: 12px 18px; text-align: left; font-weight: 600;
  }
  .specs-table td { padding: 11px 18px; border-bottom: 1px solid #e8ecf4; }
  .specs-table tr:nth-child(even) td { background: var(--gray-bg); }
  .badge { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: .78em; font-weight: 700; }
  .badge-green { background: #e8f5e9; color: #1b5e20; }
  .badge-blue { background: #e3f2fd; color: #0d47a1; }
  .badge-orange { background: #fff3e0; color: #e65100; }

  /* ── PRICING ── */
  #pricing { background: var(--blue); }
  .pricing-toggle {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin: 32px 0 48px;
  }
  .pricing-toggle span { color: #8ea7cf; font-size: .9em; font-weight: 500; }
  .pricing-toggle span.active { color: #fff; font-weight: 700; }
  .toggle-switch {
    position: relative; width: 48px; height: 26px; cursor: pointer;
  }
  .toggle-switch input { opacity: 0; width: 0; height: 0; }
  .toggle-slider {
    position: absolute; inset: 0; background: rgba(255,255,255,.15);
    border-radius: 13px; transition: background .3s;
  }
  .toggle-slider::before {
    content: ''; position: absolute; width: 20px; height: 20px;
    left: 3px; top: 3px; background: #fff; border-radius: 50%;
    transition: transform .3s;
  }
  .toggle-switch input:checked + .toggle-slider { background: var(--orange); }
  .toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
  .annual-badge {
    background: var(--green); color: #fff; font-size: .72em; font-weight: 700;
    padding: 2px 8px; border-radius: 10px;
  }
  .plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: start; margin-top: 8px;
  }
  .plan-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: transform .2s, box-shadow .2s;
  }
  .plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
  .plan-card.popular {
    background: rgba(255,255,255,.1); border-color: var(--orange);
    transform: scale(1.03);
  }
  .plan-card.popular:hover { transform: scale(1.03) translateY(-4px); }
  .plan-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--plan-color, rgba(255,255,255,.15));
  }
  .popular-badge {
    position: absolute; top: 18px; right: 18px;
    background: var(--orange); color: #fff; font-size: .72em; font-weight: 700;
    padding: 3px 10px; border-radius: 12px; letter-spacing: .3px;
  }
  .plan-name { font-size: .78em; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
  .plan-desc { font-size: .83em; color: #8ea7cf; margin-bottom: 24px; line-height: 1.5; }
  .plan-price-wrap { margin-bottom: 6px; }
  .plan-price { font-size: 3em; font-weight: 900; color: #fff; line-height: 1; }
  .plan-price sup { font-size: .38em; color: #8ea7cf; vertical-align: super; }
  .plan-period { font-size: .82em; color: #8ea7cf; margin-bottom: 6px; }
  .plan-annual-price { font-size: .8em; color: var(--green); font-weight: 600; margin-bottom: 24px; min-height: 1.2em; }
  .price-ht { color: #8ea7cf; font-weight: 500; }
  .plan-separator { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 20px 0; }
  .plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
  .plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .86em; color: #c5d4eb; line-height: 1.5; }
  .plan-features li.yes::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
  .plan-features li.no { color: #4a5568; }
  .plan-features li.no::before { content: '—'; color: #4a5568; flex-shrink: 0; }
  .plan-cta {
    display: block; text-align: center; text-decoration: none;
    padding: 13px 20px; border-radius: 10px; font-weight: 700; font-size: .92em;
    transition: background .2s, transform .15s;
  }
  .plan-cta-outline {
    border: 2px solid rgba(255,255,255,.25); color: #fff;
  }
  .plan-cta-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
  .plan-cta-primary {
    background: var(--orange); color: #fff;
    box-shadow: 0 4px 16px rgba(245,124,0,.4);
  }
  .plan-cta-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
  .pricing-footnote { text-align: center; font-size: .82em; color: #4a5568; margin-top: 28px; line-height: 1.7; }
  .pricing-footnote a { color: #8ea7cf; text-decoration: underline; }
  /* ── Resource explainer ── */
  .res-explainer {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin: 40px 0 0; padding: 24px; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  }
  .res-item { display: flex; align-items: flex-start; gap: 12px; }
  .res-icon { font-size: 1.6em; flex-shrink: 0; }
  .res-label { font-size: .88em; font-weight: 700; color: #fff; margin-bottom: 3px; }
  .res-desc { font-size: .78em; color: #8ea7cf; line-height: 1.5; }

  /* ── Plan quotas ── */
  .plan-quotas {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 14px 16px; margin: 16px 0;
    display: flex; flex-direction: column; gap: 8px;
  }
  .quota-row {
    display: flex; align-items: center; gap: 8px;
    font-size: .83em;
  }
  .quota-icon { flex-shrink: 0; font-size: 1em; width: 20px; text-align: center; }
  .quota-label { color: #8ea7cf; flex: 1; }
  .quota-val { color: #fff; text-align: right; white-space: nowrap; }
  .quota-val strong { color: var(--orange-light); }

  /* ── SaaS infos (rétention) ── */
  .saas-infos-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px;
  }
  .saas-info-block {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 26px 28px;
  }
  .saas-info-icon { font-size: 1.8em; margin-bottom: 10px; }
  .saas-info-title { font-size: .95em; font-weight: 700; color: #fff; margin-bottom: 10px; }
  .saas-info-body { font-size: .83em; color: #8ea7cf; line-height: 1.7; margin-bottom: 12px; }
  .saas-info-body strong { color: #c5d4eb; }
  .saas-retention-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
  .saas-retention-list li { font-size: .82em; color: #8ea7cf; line-height: 1.5; }
  .saas-retention-list li strong { color: #c5d4eb; }

  /* ── Add-ons ── */
  .addons-block {
    margin-top: 44px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
    padding: 28px 32px;
  }
  .addons-title { font-size: 1em; font-weight: 700; color: #fff; margin-bottom: 20px; }
  .addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .addon-item {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 14px 16px;
  }
  .addon-icon { font-size: 1.5em; flex-shrink: 0; }
  .addon-info { flex: 1; }
  .addon-name { font-size: .88em; font-weight: 600; color: #fff; margin-bottom: 2px; }
  .addon-detail { font-size: .76em; color: #8ea7cf; }
  .addon-price { text-align: right; white-space: nowrap; }
  .addon-price strong { font-size: 1.1em; color: var(--orange-light); display: block; }
  .addon-price span { font-size: .72em; color: #8ea7cf; }
  .addons-note {
    margin-top: 16px; font-size: .82em; color: #8ea7cf; line-height: 1.6;
    padding: 12px 16px; background: rgba(67,160,71,.1);
    border: 1px solid rgba(67,160,71,.2); border-radius: 8px;
  }

  /* ── SMS packs ── */
  .sms-block {
    margin-top: 28px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,153,0,.25); border-radius: var(--radius);
    padding: 28px 32px;
  }
  .sms-block-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
  .sms-block-icon { font-size: 2em; flex-shrink: 0; }
  .sms-block-title { font-size: 1em; font-weight: 700; color: #fff; margin-bottom: 4px; }
  .sms-block-sub { font-size: .82em; color: #8ea7cf; line-height: 1.6; }
  .sms-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .sms-plan {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 20px; text-align: center; position: relative;
    transition: transform .2s;
  }
  .sms-plan:hover { transform: translateY(-3px); }
  .sms-plan.featured {
    border-color: var(--orange); background: rgba(245,124,0,.08);
  }
  .sms-plan-popular {
    font-size: .72em; font-weight: 700; color: var(--orange-light);
    margin-bottom: 10px;
  }
  .sms-plan-quota { font-size: 1em; font-weight: 700; color: #fff; margin-bottom: 10px; }
  .sms-plan-price { font-size: 1.5em; font-weight: 900; color: var(--orange-light); line-height: 1; }
  .sms-plan-price span { font-size: .45em; color: #8ea7cf; font-weight: 500; display: block; }
  .sms-plan-ht { font-size: .75em; color: #8ea7cf; margin: 4px 0 10px; }
  .sms-plan-extra { font-size: .75em; color: #6a7f9a; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.08); }
  .sms-note { font-size: .78em; color: #8ea7cf; margin-top: 16px; line-height: 1.6; }

  @media (max-width: 900px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .plan-card.popular { transform: none; }
    .plan-card.popular:hover { transform: translateY(-4px); }
    .res-explainer { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .saas-infos-grid { grid-template-columns: 1fr; }
    .sms-plans { grid-template-columns: 1fr; }
  }

  /* ── COMPATIBILITY ── */
  #compat { background: var(--gray-bg); }
  .compat-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: .9em; }
  .compat-table th { padding: 12px 18px; text-align: left; font-weight: 600; color: #fff; }
  .compat-table th:nth-child(2) { background: var(--green); text-align: center; }
  .compat-table th:nth-child(3) { background: #714b67; text-align: center; }
  .compat-table th:first-child { background: var(--blue); }
  .compat-table td { padding: 10px 18px; border-bottom: 1px solid #e8ecf4; }
  .compat-table td:nth-child(2), .compat-table td:nth-child(3) { text-align: center; }
  .compat-table tr:nth-child(even) td { background: #fff; }
  .check { color: var(--green); font-weight: 800; font-size: 1.1em; }
  .dash { color: #bbb; }

  /* ── FAQ ── */
  .faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin-left: auto; margin-right: auto; }
  .faq-item { border: 1px solid #e8ecf4; border-radius: 10px; overflow: hidden; }
  .faq-q {
    padding: 18px 22px; font-weight: 600; color: var(--blue); font-size: .95em;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    background: #fff; user-select: none;
  }
  .faq-q::after { content: '+'; font-size: 1.3em; color: var(--orange); font-weight: 700; transition: transform .2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; font-size: .9em; color: var(--gray-text); line-height: 1.75; background: var(--gray-bg); }
  .faq-item.open .faq-a { max-height: 300px; padding: 16px 22px; }

  /* ── CTA FINALE ── */
  #cta-final {
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    text-align: center; position: relative; overflow: hidden;
  }
  #cta-final::before {
    content: ''; position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,124,0,.15) 0%, transparent 70%);
  }
  #cta-final .section-title { color: #fff; }
  #cta-final .section-sub { color: #c5d4eb; margin: 0 auto 36px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer {
    background: #070f24; padding: 40px 0; text-align: center;
    color: #8ea7cf; font-size: .85em;
  }
  footer a { color: var(--orange-light); text-decoration: none; }
  footer .footer-brand { font-size: 1.2em; font-weight: 800; color: #fff; margin-bottom: 8px; }
  footer .footer-brand span { color: var(--orange); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    section { padding: 56px 0; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-direction: column; }
    .steps::before { display: none; }
    .portal-grid { grid-template-columns: 1fr; }
    .modes-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    #hero { padding: 64px 0 52px; }
    .pricing-card { padding: 32px 24px; }
    .portal-cards { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; }
    .portal-cards { grid-template-columns: 1fr; }
    .pricing-price { font-size: 3em; }
  }/* End custom CSS */