/* =============================================
   Cool Chill AC — style.css
   Primary:#005f96 Accent:#20a8d8 Bg:#e0f4ff
   ============================================= */

:root {
  --primary: #005f96;
  --primary-dark: #003d62;
  --primary-light: #0087c7;
  --accent: #20a8d8;
  --accent-light: #5dc9ed;
  --bg: #e0f4ff;
  --bg-white: #f0f9ff;
  --text: #0f2939;
  --text-light: #2a5a7f;
  --text-muted: #4a7a9f;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,95,150,0.12);
  --shadow-md: 0 4px 24px rgba(0,95,150,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  padding-top: 40px;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── DEMO BAR ── */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.demo-bar a { color: var(--accent-light); text-decoration: underline; }
.demo-bar a:hover { color: var(--white); }

/* ── CHECKBOX HACK NAV ── */
#nav-toggle { display: none; }

header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 40px;
  z-index: 1000;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--primary);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-menu a:hover {
  color: var(--primary);
  text-decoration: none;
  background: var(--bg);
}
.nav-menu a.active {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  text-decoration: none;
}

/* ── HAMBURGER MENU (MOBILE) ── */
.hamburger-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}
.hamburger-label span {
  width: 24px; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hamburger-label { display: flex; }

  .nav-menu {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #nav-toggle:checked ~ header .nav-menu {
    max-height: 300px;
    padding: 16px 0;
  }

  #nav-toggle:checked ~ header .hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  #nav-toggle:checked ~ header .hamburger-label span:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle:checked ~ header .hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .nav-menu a {
    padding: 12px 20px;
    border-radius: 0;
  }
}

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg);
  text-decoration: none;
}
.btn-outline-white {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-weight: 700;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
}

/* ── HERO SECTION ── */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.hero-icon-wrap {
  display: inline-flex;
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero > p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.7;
  opacity: 0.95;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.badge {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero-badges { gap: 8px; }
  .badge { font-size: 0.8rem; padding: 6px 12px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; }
}

/* ── STATS ── */
.stats {
  background: var(--white);
  padding: 40px 20px;
  box-shadow: var(--shadow);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}
.stat-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── SECTIONS ── */
.section {
  padding: 60px 20px;
}
.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 0 auto 24px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 48px 20px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-header p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.card-price {
  display: block;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bg);
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.step {
  display: flex;
  gap: 20px;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}
.step-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card .stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.testi-quote {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.testi-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--bg);
  padding-top: 16px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}
.testi-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICE DETAIL PAGE ── */
.service-detail {
  max-width: 800px;
  margin: 0 auto 48px;
}
.service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.service-detail h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.service-content {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.service-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 24px 0 12px;
  margin-top: 0;
}
.service-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  padding: 10px 0;
  color: var(--text-light);
  line-height: 1.6;
  border-bottom: 1px solid var(--bg);
}
.benefit-list li:last-child {
  border-bottom: none;
}
.benefit-list li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.proc-item {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.proc-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}
.proc-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}
.proc-item div {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── FREQUENCY CARDS ── */
.freq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.freq-card {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--accent);
}
.freq-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ── TIMELINE ── */
.timeline {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}
.time-item {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.time-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

/* ── CHECKLIST ── */
.checklist {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.check-item {
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--text-light);
  border-left: 3px solid var(--accent);
}

/* ── TARIF GRID ── */
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.tarif-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.tarif-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tarif-icon {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.tarif-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.tarif-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tarif-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg);
}
.tarif-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.tarif-list li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}
.tarif-list li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

/* ── PACKAGES GRID ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.package-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.package-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}
.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.package-badge.premium {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.package-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0;
}
.package-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  margin: 16px 0;
}
.package-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.package-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg);
}
.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.package-features li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.package-features li::before {
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

/* ── INFO CARDS ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--accent);
}
.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.info-highlight {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  margin: 12px 0;
}
.info-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ── NOTE BOX ── */
.note-box {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: var(--radius);
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 24px;
}
.note-box strong {
  color: var(--primary);
}

/* ── COVERAGE BOX ── */
.coverage-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
  text-align: center;
}
.coverage-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.coverage-box p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ── PAYMENT METHODS ── */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.payment-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.payment-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.payment-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

/* ── COMMITMENT GRID ── */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.commit-item {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.commit-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.commit-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.commit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── TEAM SECTION ── */
.team-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.team-intro > p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.team-stat {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stat-label {
  color: var(--text-light);
  font-weight: 600;
}

/* ── TECH GRID ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.tech-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
}
.tech-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tech-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.tech-title {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.tech-exp {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg);
}
.tech-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.badge-skill {
  background: var(--bg);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.tech-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── STANDARDS GRID ── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.standard-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.standard-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.standard-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ── CONTACT FORM ── */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.contact-card.highlight {
  border: 2px solid var(--accent);
}
.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--text-light);
  line-height: 1.6;
}
.contact-card p a {
  font-weight: 600;
}
.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── FORM ── */
.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--text-muted);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,95,150,0.1);
}
.form-group textarea {
  resize: vertical;
}
.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.form-group.checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}
.form-group.checkbox input {
  width: auto;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ── FAQ GRID ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.faq-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 48px 20px 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  padding: 6px 0;
}
.footer-col ul a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-col ul a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom a {
  color: var(--accent-light);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section { padding: 40px 20px; }
  .section-title { font-size: 1.6rem; }
  .page-header h1 { font-size: 1.8rem; }
  .cta-banner h2 { font-size: 1.6rem; }

  .cards-grid,
  .tarif-grid,
  .packages-grid,
  .tech-grid,
  .contact-grid,
  .info-cards,
  .standards-grid,
  .payment-methods,
  .faq-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .team-stats { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { gap: 24px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .section { padding: 32px 16px; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.4rem; }
  .page-header h1 { font-size: 1.5rem; }
  .hero h1 { font-size: 1.5rem; }

  .card { padding: 20px; }
  .tarif-card { padding: 20px; }
  .contact-form { padding: 20px; }

  .hero-badges { gap: 6px; }
  .badge { font-size: 0.75rem; padding: 5px 10px; }

  .btn { padding: 10px 20px; font-size: 0.9rem; }

  .nav-menu a { padding: 10px 16px; }

  .stat-number { font-size: 1.8rem; }
  .tarif-price { font-size: 1.5rem; }
  .package-price { font-size: 1.8rem; }
}
