/* ============================================================
   IPTV PREMIER — Stylesheet
   Theme: Light & Premium (Sky Blue / White / Gray / Gold)
   ============================================================ */

:root {
  /* Palette principale */
  --bg:           #f6f9fc;          /* fond très clair gris-bleu */
  --bg-elev:     #ffffff;          /* cartes, sections élevées */
  --bg-dark:     #1e293b;          /* footer, accents sombres */
  --primary:     #0ea5e9;          /* bleu ciel principal */
  --primary-dark: #0284c7;         /* bleu ciel foncé hover */
  --primary-light: #e0f2fe;        /* bleu ciel très pâle */
  --accent:      #d4af37;          /* gold premium */
  --accent-dark: #b8941f;
  --text:        #1e293b;          /* texte principal */
  --text-dim:    #475569;          /* texte secondaire */
  --text-muted:  #94a3b8;          /* texte tertiaire */
  --border:      #e2e8f0;          /* bordures */
  --border-strong: #cbd5e1;
  --success:     #10b981;
  --warning:     #f59e0b;
  --danger:      #ef4444;

  /* Typo */
  --font-sans:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;

  /* Espacements */
  --container: 1200px;
  --radius:    14px;
  --radius-lg: 20px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow:    0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 36px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 8px 28px rgba(14, 165, 233, 0.20);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(14, 165, 233, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
}
.logo svg { width: 36px; height: 36px; }
.logo .accent { color: var(--primary); }
.logo .gold   { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-cta .btn-outline { display: none !important; }
  .nav-cta .nav-commander { display: none !important; }
  .menu-toggle { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 20%, var(--primary-light), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-dark);
  border-radius: 24px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 22px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .gold {
  color: var(--accent);
}
.hero .lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 12px;
  max-width: 560px;
}
.hero .lead-sub {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust-item svg {
  width: 22px; height: 22px;
  color: var(--success);
  flex-shrink: 0;
}
.hero-trust-item span {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(14, 165, 233, 0.7) 100%);
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-floating-card.fc-1 {
  top: 10%; left: -20px;
}
.hero-floating-card.fc-2 {
  bottom: 10%; right: -20px;
}
.hero-floating-card .fc-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-floating-card .fc-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.hero-floating-card .fc-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.hero-floating-card .fc-icon svg {
  width: 18px; height: 18px;
  color: var(--accent);
}

@media (max-width: 600px) {
  .hero-floating-card.fc-1 { left: 10px; }
  .hero-floating-card.fc-2 { right: 10px; }
}

/* ============================================================
   Sections — heads
   ============================================================ */
section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-head h2 .gold { color: var(--accent); }
.section-head h2 .blue { color: var(--primary); }
.section-head p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.65;
}
.section-sub {
  margin-top: 14px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Marquee — pays
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--bg-dark), #334155);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-dark), transparent); }
.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.94rem;
}
.marquee-item .flag { font-size: 1.4rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.pricing-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: all .2s;
  cursor: pointer;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.tab-btn:hover:not(.active) { color: var(--primary); }

.pricing-pane {
  display: none;
}
.pricing-pane.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .pricing-pane.active { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pricing-pane.active { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.3);
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.15);
  background: linear-gradient(180deg, #fff, rgba(212, 175, 55, 0.04));
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 24px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}
.duration {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price .amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.price .currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}
.per {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.save {
  display: inline-block;
  margin-top: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.pack-features {
  list-style: none;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pack-features li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-left: 26px;
  position: relative;
  line-height: 1.45;
}
.pack-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230ea5e9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-light);
  border-radius: 50%;
}
.price-card.featured .pack-features li::before {
  background-color: rgba(212, 175, 55, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* ============================================================
   Steps
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   Why us / Features grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(14, 165, 233, 0.3);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.why-item p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   Devices grid
   ============================================================ */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .devices-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .devices-grid { grid-template-columns: repeat(3, 1fr); } }

.device {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: all .2s;
}
.device:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.device-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.device-icon svg { width: 32px; height: 32px; }
.device .name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   Apps grid (with images)
   ============================================================ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 900px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }

.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all .25s;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.app-card-image {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.app-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.app-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.app-card .desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   VOD / Sport cards (with bg images)
   ============================================================ */
.vod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .vod-grid { grid-template-columns: 1fr; } }

.vod-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  isolation: isolate;
}
.vod-card-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.vod-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.vod-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.95) 100%);
}
.vod-card .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 18px;
  width: fit-content;
}
.vod-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.vod-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.vod-card .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.vod-card .stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.vod-card .stat-lbl {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   Configuration tutorial
   ============================================================ */
.config-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .config-grid { grid-template-columns: 1fr; } }

.config-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.config-step:last-child { border-bottom: none; }
.num-bubble {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
}
.config-step h4 {
  font-family: var(--font-display);
  font-size: 1.04rem;
  margin-bottom: 5px;
}
.config-step p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}
.config-step code {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.86rem;
}
.config-image-wrap {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #fff;
}
.config-image-wrap img {
  width: 100%;
  display: block;
}
@media (max-width: 900px) { .config-image-wrap { position: static; } }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.review:hover { box-shadow: var(--shadow); }
.review .stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 14px;
}
.review .text {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}
.review .person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.review .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.review .name {
  font-weight: 600;
  font-size: 0.92rem;
}
.review .meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   Lifestyle gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform .3s;
  background: linear-gradient(135deg, var(--primary-light), rgba(212, 175, 55, 0.15));
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(30, 41, 59, 0.92));
  padding: 22px 18px 16px;
  color: #fff;
}
.gallery-item-overlay h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.gallery-item-overlay span {
  font-size: 0.82rem;
  opacity: 0.92;
}

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-cover {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.blog-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-cover img { transform: scale(1.06); }
.blog-cover .cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}
.blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-body .meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-body h3, .blog-body h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-body h3 a, .blog-body h2 a {
  color: var(--text);
  transition: color .15s;
}
.blog-body h3 a:hover, .blog-body h2 a:hover { color: var(--primary); }
.blog-body p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap .15s;
}
.blog-link:hover { color: var(--primary-dark); }

/* Blog hero */
.blog-hero {
  padding: 70px 0 30px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-light), var(--bg));
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
.blog-hero p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
}

.blog-cta-box {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--primary-light), rgba(212, 175, 55, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.blog-cta-box h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.blog-cta-box p {
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* Blog article */
.blog-article {
  padding: 40px 0 60px;
}
.blog-article .container { max-width: 820px; }

.back-to-blog {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color .15s;
}
.back-to-blog:hover { color: var(--primary); }

.article-cat {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  margin-bottom: 18px;
}
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.article-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.article-cover {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  margin: 30px 0 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.article-body { font-size: 1rem; line-height: 1.75; color: var(--text-dim); }
.article-lead {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--primary);
  line-height: 1.65;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--text);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 26px 0 10px;
  color: var(--text);
}
.article-body p { margin-bottom: 18px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--primary-dark); }

.article-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article-image img { width: 100%; display: block; }
.article-image-caption {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.article-cta {
  margin: 40px 0 20px;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--primary-light), rgba(212, 175, 55, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.article-cta p {
  color: var(--text-dim);
  margin-bottom: 22px;
}

.related-articles {
  border-top: 1px solid var(--border);
  padding: 60px 0;
}
.related-articles h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}
.related-articles .blog-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .related-articles .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q .chevron {
  width: 18px; height: 18px;
  color: var(--primary);
  transition: transform .25s;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-info p {
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.65;
}
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list .item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
}
.contact-list .ico {
  width: 44px; height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list .lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-list .val {
  font-weight: 600;
  color: var(--text);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-status {
  margin-top: 14px;
  padding: 10px;
  text-align: center;
  font-size: 0.88rem;
  border-radius: 8px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 14px;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============================================================
   Checkout
   ============================================================ */
.checkout-pro { padding: 50px 0 60px; }

.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.step-circle svg { width: 18px; height: 18px; }
.step.done .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}
.step.active .step-circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.15);
}
.step-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.step.done .step-label, .step.active .step-label { color: var(--text); }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 14px 28px;
}
.step-line.done { background: var(--success); }

.checkout-pro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}
@media (max-width: 960px) { .checkout-pro-grid { grid-template-columns: 1fr; } }

.checkout-pro-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .checkout-pro-main { padding: 28px 22px; } }

.checkout-pro-head h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-bottom: 8px;
}
.checkout-pro-head p {
  color: var(--text-dim);
  margin-bottom: 32px;
}

.form-fieldset { border: none; padding: 0; margin: 0 0 24px; }
.form-fieldset legend {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.req { color: var(--primary); }
.opt { color: var(--text-muted); font-weight: 400; font-size: 0.78rem; }
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px 13px 42px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .15s;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}
.input-wrap:focus-within .input-icon { color: var(--primary); }
.hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-checkout-submit {
  width: 100%;
  padding: 17px;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .15s;
  box-shadow: var(--shadow-blue);
}
.btn-checkout-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(14, 165, 233, 0.4);
}

.checkout-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) { .checkout-trust { grid-template-columns: 1fr; } }
.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trust-item svg {
  width: 20px; height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-title {
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.checkout-pro-summary {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 960px) { .checkout-pro-summary { position: static; } }

.summary-card {
  background: linear-gradient(170deg, #fff, var(--primary-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.summary-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.summary-pack {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
}
.summary-pack-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.summary-pack-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.summary-pack-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.summary-features {
  list-style: none;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.summary-totals {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.summary-line.summary-total {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  color: var(--text);
  font-weight: 600;
}
.total-amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
}
.summary-back {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.summary-back:hover { color: var(--primary); }
.summary-empty-pro {
  text-align: center;
  padding: 30px 10px;
}
.summary-empty-pro h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 12px 0 8px;
}
.summary-empty-pro p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.summary-testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.summary-testimonial .stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.summary-testimonial p {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 14px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 0.85rem; font-weight: 600; }
.author-meta { font-size: 0.74rem; color: var(--text-muted); }

/* Order process */
.order-process-pro {
  padding: 70px 0 90px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  background: linear-gradient(180deg, #fff, var(--bg));
}
.process-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 1000px) { .process-pro-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .process-pro-grid { grid-template-columns: 1fr; } }

.process-pro-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .25s;
}
.process-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.process-pro-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.process-pro-icon-wrap {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.process-pro-icon-wrap svg { width: 22px; height: 22px; }
.process-pro-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.process-pro-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}
.process-time {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}
.process-help-box {
  margin-top: 50px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.process-help-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.process-help-box p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ============================================================
   Merci page
   ============================================================ */
.merci-pro { padding: 50px 0 60px; }

.merci-pro-hero {
  text-align: center;
  margin: 50px auto;
  max-width: 640px;
}
.merci-pro-icon {
  width: 110px; height: 110px;
  margin: 0 auto 24px;
  position: relative;
}
.merci-pro-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
  border-radius: 50%;
  animation: pulse-success 2s ease-in-out infinite;
}
@keyframes pulse-success {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.merci-pro-icon svg {
  width: 100px; height: 100px;
  position: relative;
  z-index: 1;
}
.merci-pro-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 24px;
  margin-bottom: 18px;
}
.merci-pro-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 14px;
}
.merci-pro-lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 26px;
}
.merci-pro-ref {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.ref-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.ref-value {
  font-family: 'Courier New', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.merci-timeline {
  max-width: 720px;
  margin: 70px auto 0;
}
.merci-timeline h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 36px;
}
.timeline-grid {
  position: relative;
  padding-left: 40px;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--success) 0%, var(--success) 30%, var(--border) 30%);
}
.timeline-item {
  position: relative;
  padding-bottom: 30px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -34px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
}
.timeline-item.completed .timeline-dot {
  background: var(--success);
  border-color: var(--success);
}
.timeline-item.current .timeline-dot {
  background: var(--primary);
  border-color: var(--primary);
  animation: pulse-current 2s ease-in-out infinite;
}
@keyframes pulse-current {
  0%, 100% { box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.1); }
}
.timeline-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.timeline-item.current .timeline-content {
  border-color: var(--primary);
}
.timeline-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.timeline-item.current .timeline-time { color: var(--primary); }
.timeline-item.completed .timeline-time { color: var(--success); }
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.timeline-tip {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 0.84rem;
  color: var(--text-dim);
}

.merci-contact-box {
  margin: 60px auto 40px;
  max-width: 720px;
  padding: 30px 36px;
  background: linear-gradient(135deg, var(--primary-light), rgba(212, 175, 55, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.merci-contact-text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.merci-contact-text p {
  color: var(--text-dim);
  font-size: 0.92rem;
}
.merci-contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.merci-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 700px) { .merci-links { grid-template-columns: 1fr; } }
.merci-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all .2s;
}
.merci-link-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.merci-link-card svg {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   Animations
   ============================================================ */
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.scroll-fade.visible { opacity: 1; transform: none; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page {
  padding: 60px 0 80px;
}
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 30px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 30px 0 12px;
}
.legal-page p, .legal-page li {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-page ul, .legal-page ol {
  margin: 0 0 18px 22px;
}

/* New IMG-based app cards */
.app-card-img {
  display: block;
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
  border-radius: 18px;
}
