/* ==========================================
   LUNOA BANQUE — Main Stylesheet
   Design : Nickel-inspired
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0f1117;
  --dark-2:     #181c27;
  --dark-3:     #1e2433;
  --dark-4:     #252d42;
  --orange:     #ff5f00;
  --orange-h:   #e65500;
  --orange-bg:  rgba(255,95,0,.12);
  --white:      #ffffff;
  --gray:       #8a92a8;
  --gray-2:     #c5cdd9;
  --light:      #f4f6fb;
  --light-2:    #eef1f7;
  --border-d:   rgba(255,255,255,.08);
  --border-l:   #dde3ef;
  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  28px;
  --ff-head:    'Syne', sans-serif;
  --ff-body:    'DM Sans', sans-serif;
  --shadow:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── BUTTONS ─────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 50px; font-family: var(--ff-body);
  font-size: .9rem; font-weight: 600; cursor: pointer; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-orange {
  background: var(--orange); color: #fff;
  box-shadow: 0 6px 20px rgba(255,95,0,.3);
}
.btn-orange:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,95,0,.4); }

.btn-outline-dark {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.07); }

.btn-outline-light {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border-l);
}
.btn-outline-light:hover { border-color: var(--orange); color: var(--orange); }

.btn-white {
  background: #fff; color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ── NAV ─────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--dark);
  border-bottom: 1px solid var(--border-d);
  height: 70px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-size: 1.35rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo .logo-text { color: #fff; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.07); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 580px;
  background: var(--dark-2); border: 1px solid var(--border-d);
  border-radius: var(--radius); padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
/* Invisible hover bridge — fills the gap between trigger and panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
  background: transparent;
}
/* Keep dropdown open when mouse passes through the gap */
.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dd-col h5 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px;
}
.dd-card {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  transition: background .15s; margin-bottom: 4px;
}
.dd-card:hover { background: rgba(255,255,255,.06); }
.dd-card img { width: 44px; height: 62px; object-fit: contain; flex-shrink: 0; }
.dd-card-info p { font-size: .88rem; font-weight: 600; color: #fff; }
.dd-card-info span { font-size: .78rem; color: var(--gray); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Burger */
.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger-btn span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: var(--dark); flex-direction: column;
  padding: 90px 5% 40px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-head); font-size: 1.25rem; font-weight: 700;
  color: rgba(255,255,255,.8); padding: 14px 0;
  border-bottom: 1px solid var(--border-d);
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .mn-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav .mn-actions .btn { justify-content: center; }

/* ── PAGE HEADER ─────────────────── */
.page-hero {
  background: var(--dark); padding: 80px 5%;
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--ff-head); font-size: clamp(2rem,4vw,3rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.05rem; }

/* ── SECTION HELPERS ─────────────── */
.section { padding: 80px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-light { background: var(--light); }
.section-white { background: #fff; }

.section-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-head); font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-title.dark  { color: var(--dark); }
.section-desc { color: var(--gray); font-size: 1rem; max-width: 600px; }
.section-desc.light { color: rgba(255,255,255,.6); }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ── HERO HOME ───────────────────── */
.hero-home {
  background: var(--dark); min-height: calc(100vh - 70px);
  display: flex; align-items: center; padding: 60px 5%;
  position: relative; overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,95,0,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home::after {
  content: ''; position: absolute;
  bottom: -150px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,95,0,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; width: 100%;
  position: relative; z-index: 1;
}
.hero-media { display: flex; justify-content: center; align-items: flex-end; }
.hero-media img {
  max-height: 520px; width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: heroUp .8s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-content { animation: heroUp .8s .15s cubic-bezier(.22,1,.36,1) both; }
.hero-badge {
  display: inline-block;
  background: var(--orange-bg); color: var(--orange);
  border: 1px solid rgba(255,95,0,.3); border-radius: 50px;
  padding: 5px 16px; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-title {
  font-family: var(--ff-head); font-size: clamp(2rem,3.8vw,3.2rem);
  font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 10px;
}
.hero-title .accent { color: var(--orange); display: block; }
.hero-sub { color: rgba(255,255,255,.5); font-size: 1rem; margin-bottom: 36px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PITCH ───────────────────────── */
.pitch-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.pitch-item { display: flex; gap: 16px; align-items: flex-start; }
.pitch-icon {
  width: 48px; height: 48px; background: #fff0e6;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.pitch-icon svg { width: 22px; height: 22px; color: var(--orange); }
.pitch-text p { font-size: .95rem; line-height: 1.55; color: #333; }
.pitch-text strong { color: var(--dark); }
.pitch-text a { color: var(--orange); text-decoration: underline; }

/* ── CARDS OFFERS ────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.card-offer {
  background: var(--dark-3); border: 1px solid var(--border-d);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: pointer; position: relative; overflow: hidden;
}
.card-offer::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,95,0,.04), transparent);
  opacity: 0; transition: opacity .25s;
}
.card-offer:hover { transform: translateY(-7px); border-color: rgba(255,95,0,.35); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.card-offer:hover::before { opacity: 1; }
.card-offer-name {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.card-offer-price { font-size: .85rem; color: var(--gray); margin-bottom: 20px; }
.card-img-wrap {
  width: 100%; aspect-ratio: 9/14;
  border-radius: 12px; margin-bottom: 18px; overflow: hidden;
  background: var(--dark-4);
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-desc { color: rgba(255,255,255,.55); font-size: .84rem; margin-bottom: 18px; line-height: 1.45; }
.card-desc strong { color: #fff; }
.btn-card {
  display: inline-block; padding: 9px 22px;
  border: 1.5px solid rgba(255,255,255,.22); border-radius: 50px;
  color: #fff; font-size: .84rem; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn-card:hover { border-color: var(--orange); background: var(--orange-bg); }
.cards-bottom { text-align: center; margin-top: 44px; }

/* ── SERVICES ────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.service-img { width: 100%; aspect-ratio: 4/3; background: var(--light-2); overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 20px 18px; }
.service-body h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.service-body p { font-size: .85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.4; }
.service-link { color: var(--orange); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.service-link:hover { text-decoration: underline; }

/* ── HOW IT WORKS ────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.how-card {
  background: var(--dark-3); border: 1px solid var(--border-d);
  border-radius: var(--radius); padding: 36px 28px;
}
.how-num {
  font-family: var(--ff-head); font-size: 3rem; font-weight: 800;
  color: var(--orange); opacity: .25; line-height: 1; margin-bottom: 8px;
}
.how-card h3 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.how-card .sub { font-size: .82rem; color: var(--gray); margin-bottom: 20px; }
.how-img { width: 100%; aspect-ratio: 16/9; background: var(--dark-4); border-radius: 12px; overflow: hidden; }
.how-img img { width: 100%; height: 100%; object-fit: contain; }
.how-btns { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ── APP ─────────────────────────── */
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-title { font-family: var(--ff-head); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.app-stores { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.store-btn {
  background: var(--dark); color: #fff;
  padding: 10px 18px; border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.store-btn small { display: block; font-size: .65rem; opacity: .55; }
.store-btn strong { font-size: .88rem; }
.store-ratings { display: flex; gap: 20px; margin-bottom: 32px; }
.store-rat { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--gray); }
.stars { color: #f5a623; }
.app-features { display: flex; flex-direction: column; gap: 0; }
.app-feature {
  padding: 14px 0; border-bottom: 1px solid var(--border-l);
  font-size: .95rem; font-weight: 500; color: #444;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: color .2s;
}
.app-feature.active, .app-feature:hover { color: var(--orange); }
.app-feature::before { content:''; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; flex-shrink:0; opacity:.4; }
.app-feature.active::before, .app-feature:hover::before { opacity: 1; }
.app-phone { display: flex; justify-content: center; }
.app-phone img { max-height: 500px; filter: drop-shadow(0 20px 50px rgba(0,0,0,.15)); }

/* ── SUPPORT ─────────────────────── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-card {
  background: var(--dark); border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.faq-card .badge-new {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 3px 10px;
  border-radius: 50px; letter-spacing: .06em; text-transform: uppercase; width: fit-content;
}
.faq-card h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: #fff; }
.faq-card p { color: rgba(255,255,255,.55); font-size: .9rem; }
.faq-card a { color: var(--orange); font-size: .9rem; font-weight: 600; }
.faq-card a:hover { text-decoration: underline; }

.contact-card-home {
  background: var(--light); border-radius: var(--radius); padding: 32px;
}
.contact-card-home h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.c-icon {
  width: 38px; height: 38px; background: #fff0e6;
  border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 16px; height: 16px; color: var(--orange); }
.contact-item p { font-size: .88rem; color: #444; line-height: 1.5; }
.contact-item strong { color: var(--dark); }
.link-orange { color: var(--orange); font-weight: 600; font-size: .88rem; }
.link-orange:hover { text-decoration: underline; }

/* ── BREADCRUMB ──────────────────── */
.breadcrumb {
  background: var(--dark-2); padding: 14px 5%;
  border-bottom: 1px solid var(--border-d);
}
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--gray); font-size: .82rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--gray); font-size: .82rem; }
.breadcrumb .current { color: #fff; font-size: .82rem; }

/* ── ACCORDION / FAQ ─────────────── */
.accordion { border-top: 1px solid var(--border-l); }
.accordion-item { border-bottom: 1px solid var(--border-l); }
.accordion-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--dark);
  text-align: left; gap: 16px;
}
.accordion-btn svg { width: 20px; height: 20px; flex-shrink:0; transition: transform .25s; color: var(--orange); }
.accordion-btn.open svg { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 20px; color: #555; font-size: .95rem; line-height: 1.7; }
.accordion-body.open { display: block; }

/* ── CONTACT FORM ────────────────── */
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.field-group input,
.field-group select,
.field-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border-l); border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: .92rem; color: var(--dark);
  background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,95,0,.1); }
.field-group textarea { resize: vertical; min-height: 130px; }

/* ── INFO CARDS ──────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.info-card {
  background: var(--light); border-radius: var(--radius); padding: 28px 24px;
  transition: transform .25s, box-shadow .25s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card-icon {
  width: 52px; height: 52px; background: #fff0e6; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.info-card-icon svg { width: 24px; height: 24px; color: var(--orange); }
.info-card h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── TEAM / PRESSE ───────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  background: var(--light-2); overflow: hidden; margin-bottom: 14px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--ff-head); font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: .85rem; color: var(--gray); }

/* ── JOB LISTINGS ────────────────── */
.job-list { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  background: var(--light); border-radius: var(--radius); padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: box-shadow .2s;
}
.job-card:hover { box-shadow: var(--shadow); }
.job-info h4 { font-family: var(--ff-head); font-weight: 700; margin-bottom: 4px; }
.job-info .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  background: #fff; border: 1px solid var(--border-l);
  border-radius: 50px; padding: 3px 12px; font-size: .75rem; color: var(--gray);
}
.job-tag.tag-orange { background: #fff0e6; color: var(--orange); border-color: rgba(255,95,0,.2); }

/* ── FOOTER ──────────────────────── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border-d);
}
.footer-main {
  max-width: 1280px; margin: 0 auto; padding: 60px 5% 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: .87rem; line-height: 1.65; max-width: 270px; }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .87rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 5%; border-top: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { color: var(--gray); font-size: .82rem; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: background .2s, color .2s, border-color .2s;
}
.social-links a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.social-links a svg { width: 15px; height: 15px; }

/* ── LEGAL PAGES ─────────────────── */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; color: var(--dark); }
.legal-content h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin: 24px 0 8px; color: var(--dark); }
.legal-content p { font-size: .95rem; color: #444; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 14px 0 14px 22px; list-style: disc; }
.legal-content ul li { font-size: .95rem; color: #444; line-height: 1.65; margin-bottom: 6px; }
.legal-content a { color: var(--orange); text-decoration: underline; }

/* ── STATS BAND ──────────────────── */
.stats-band { padding: 60px 5%; background: var(--orange); }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--ff-head); font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ── REVEAL ANIM ─────────────────── */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .app-grid { grid-template-columns: 1fr; }
  .app-phone { order: -1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-menu, .nav-actions { display: none; }
  .burger-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-media { order: -1; }
  .hero-cta-group { justify-content: center; }
  .pitch-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}

/* ── MODAL ───────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(0,0,0,.75);
  display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 680px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modalIn .25s cubic-bezier(.22,1,.36,1);
}
.modal-box.dark {
  background: var(--dark-2); color: #fff;
  border: 1px solid var(--border-d);
}
@keyframes modalIn {
  from { opacity:0; transform: scale(.95) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--light); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--dark); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  z-index: 2;
}
.modal-close:hover { background: var(--border-l); }
.modal-box.dark .modal-close { background: rgba(255,255,255,.1); color: #fff; }
.modal-box.dark .modal-close:hover { background: rgba(255,255,255,.18); }
.modal-header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--border-l);
}
.modal-box.dark .modal-header { border-color: var(--border-d); }
.modal-header h2 {
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800;
  margin-bottom: 6px;
}
.modal-header .modal-sub { font-size: .9rem; color: var(--gray); }
.modal-body { padding: 24px 32px 32px; }
.modal-hero {
  background: var(--dark); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px; text-align: center; position: relative; overflow: hidden;
}
.modal-hero::before {
  content: ''; position: absolute;
  top: -80px; right: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,95,0,.15), transparent 70%);
}
.modal-hero img { max-height: 180px; margin: 0 auto; position: relative; z-index:1; }
.modal-hero h2 { font-family: var(--ff-head); font-size: 1.6rem; font-weight:800; color:#fff; margin-top:16px; }
.modal-hero .price { color: var(--orange); font-size: 1rem; margin-top: 4px; }

/* Card detail inside modal */
.modal-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.modal-feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border-l); font-size: .92rem;
}
.modal-box.dark .modal-feature-list li { border-color: var(--border-d); color: rgba(255,255,255,.8); }
.modal-feature-list li:last-child { border: none; }
.modal-feature-list .feat-icon {
  width: 28px; height: 28px; background: #fff0e6; border-radius: 8px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.modal-box.dark .modal-feature-list .feat-icon { background: rgba(255,95,0,.15); }
.modal-feature-list .feat-icon svg { width: 14px; height: 14px; color: var(--orange); }
.modal-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--light); margin-bottom: 8px; font-size: .9rem;
}
.modal-box.dark .modal-price-row { background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); }
.modal-price-row strong { color: var(--dark); }
.modal-box.dark .modal-price-row strong { color: #fff; }

/* ── TOAST NOTIFICATION ──────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--dark); color: #fff;
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transform: translateY(100px); opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s;
  max-width: 380px; font-size: .9rem;
  border-left: 4px solid var(--orange);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: #22c55e; }
.toast.error { border-color: #ef4444; }
.toast-icon { width: 20px; height: 20px; flex-shrink: 0; }
.toast.success .toast-icon { color: #22c55e; }
.toast.error .toast-icon { color: #ef4444; }

/* ── CURRENCY CHIPS ──────────────── */
.currency-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.currency-chip {
  background: var(--dark-3); color: rgba(255,255,255,.7);
  border: 1px solid var(--border-d); border-radius: 50px;
  padding: 4px 12px; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em;
}
.currency-chip.active { background: var(--orange-bg); color: var(--orange); border-color: rgba(255,95,0,.3); }

/* ── CARD DETAIL PAGE ────────────── */
.card-detail-hero {
  background: var(--dark); padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: 1280px; margin: 0 auto;
}
.card-detail-img { display: flex; justify-content: center; }
.card-detail-img img {
  max-height: 420px; width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: heroUp .8s cubic-bezier(.22,1,.36,1) both;
}
.card-detail-content .card-tier {
  display: inline-block; background: var(--orange-bg); color: var(--orange);
  border: 1px solid rgba(255,95,0,.3); border-radius: 50px;
  padding: 4px 14px; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px;
}
.card-detail-content h1 {
  font-family: var(--ff-head); font-size: clamp(2rem,4vw,2.8rem);
  font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.1;
}
.card-detail-content .card-tagline { color: rgba(255,255,255,.55); font-size: 1rem; margin-bottom: 28px; }
.card-price-big {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 800;
  color: var(--orange); margin-bottom: 4px;
}
.card-price-sub { color: rgba(255,255,255,.4); font-size: .85rem; margin-bottom: 32px; }
.feature-check-list { list-style: none; margin-bottom: 32px; }
.feature-check-list li {
  display: flex; gap: 10px; align-items: center;
  color: rgba(255,255,255,.75); font-size: .95rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.feature-check-list li span.chk {
  width: 20px; height: 20px; background: rgba(255,95,0,.15);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--orange); font-weight: 800;
}
@media (max-width: 768px) {
  .card-detail-hero { grid-template-columns: 1fr; text-align: center; }
  .card-detail-img { order: -1; }
  .feature-check-list li { justify-content: flex-start; }
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
}
