/* ============================================================
   SERVICE CARTE GRISE RAPIDE — Dark Gold Theme
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0d0d0d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zM28 100L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='rgba(212,168,67,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS Variables ── */
:root {
  --gold:        #d4a843;
  --gold-light:  #f0c040;
  --gold-dark:   #a07828;
  --gold-pale:   rgba(212,168,67,.12);
  --red:         #dc2626;
  --red-dark:    #b91c1c;
  --bg:          #0d0d0d;
  --bg-card:     #161616;
  --bg-card2:    #1e1e1e;
  --border:      rgba(212,168,67,.25);
  --border-soft: rgba(255,255,255,.07);
  --text:        #ffffff;
  --text-muted:  #9ca3af;
  --text-dim:    #6b7280;
}

/* ── Hex background texture ── */
.hex-bg {
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zM28 100L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='rgba(212,168,67,0.07)' stroke-width='1'/%3E%3C/svg%3E");
}

/* ── Layout ── */
.container     { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.max-w-5xl     { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
.max-w-3xl     { max-width: 768px;  margin: 0 auto; padding: 0 20px; }
.max-w-2xl     { max-width: 672px;  margin: 0 auto; padding: 0 20px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 20px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.nav-logo span { font-weight: 800; font-size: .95rem; color: #fff; letter-spacing: -.01em; }
.nav-logo span.accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 7px 16px; border-radius: 8px; font-size: .875rem; font-weight: 500;
  color: var(--text-muted); transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: var(--gold-pale);
}
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0d0d; font-size: .875rem; font-weight: 800;
  border: none; cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 16px rgba(212,168,67,.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,168,67,.4); }
.hamburger-btn {
  display: none; padding: 8px; border-radius: 8px;
  background: none; border: none; cursor: pointer; color: #fff;
}
.hamburger-btn:hover { background: var(--bg-card2); }
.mobile-menu {
  border-top: 1px solid var(--border); background: rgba(13,13,13,.98);
  padding: 12px 20px 16px; display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu a {
  padding: 10px 16px; border-radius: 8px; font-size: .875rem;
  font-weight: 500; color: var(--text-muted);
}
.mobile-menu a:hover { background: var(--bg-card2); color: var(--gold); }
.mobile-menu a.active { color: var(--gold); background: var(--gold-pale); }
.btn-nav-mobile {
  margin-top: 8px; padding: 11px 16px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0d0d; font-size: .875rem; font-weight: 800; text-align: center;
}

/* ── HERO ── */
.hero {
  padding: 120px 20px 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,168,67,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute; top: 0; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(212,168,67,.1); border: 1px solid rgba(212,168,67,.3);
  color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.badge-red {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  background: var(--red); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.05; color: #fff; margin-bottom: 24px;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 1.1rem; color: var(--text-muted); font-weight: 300;
  max-width: 520px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #0d0d0d; font-size: .95rem; font-weight: 800;
  border: none; cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 32px rgba(212,168,67,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,168,67,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: transparent; color: #fff; font-size: .9rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2); cursor: pointer; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.btn-whatsapp { border-color: rgba(37,211,102,.4) !important; color: #25d366 !important; }
.btn-whatsapp:hover { border-color: #25d366 !important; background: rgba(37,211,102,.1) !important; color: #25d366 !important; }
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px; margin-top: 40px; color: var(--text-dim); font-size: .78rem; font-weight: 500;
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-sep  { width: 1px; height: 12px; background: rgba(255,255,255,.12); }
.check-gold { color: var(--gold); }

/* ── STATS ── */
.stats-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 20px;
}
.stats-grid {
  max-width: 1024px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; text-align: center;
}
.stat-num { font-size: 2.4rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-num.gold { color: var(--gold); }
.stat-label { font-size: .82rem; color: var(--text-muted); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: .72rem; font-weight: 800; color: var(--gold);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.section-label::before, .section-label::after {
  content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold-dark);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  letter-spacing: -.025em; color: #fff; margin-bottom: 14px; line-height: 1.1;
}
.section-sub { font-size: 1rem; color: var(--text-muted); font-weight: 300; }

/* ── SERVICES ── */
.services-section { padding: 80px 20px; background: var(--bg); }
.services-section .hex-bg { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zM28 100L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='rgba(212,168,67,0.04)' stroke-width='1'/%3E%3C/svg%3E"); }
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 52px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 24px; display: flex; flex-direction: column; height: 280px;
  cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,.04), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.service-card:hover::before { opacity: 1; }
.card-images { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; }
.img-back {
  position: absolute; width: 155px; height: 105px; object-fit: cover;
  border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,.5);
  transform: rotate(-6deg); transition: transform .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(212,168,67,.2);
}
.img-front {
  position: absolute; width: 155px; height: 105px; object-fit: cover;
  border-radius: 14px; box-shadow: 0 8px 28px rgba(0,0,0,.6);
  transform: rotate(3deg);  transition: transform .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(212,168,67,.35);
}
.service-card:hover .img-back  { transform: rotate(-10deg) scale(1.06); }
.service-card:hover .img-front { transform: rotate(5deg)   scale(1.06); }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.card-title { font-size: .9rem; font-weight: 700; color: #fff; }
.card-subtitle { font-size: .72rem; color: var(--text-dim); margin-top: 2px; }
.card-price {
  font-size: .75rem; font-weight: 800; color: #0d0d0d;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.services-note { text-align: center; font-size: .875rem; color: var(--text-dim); margin-top: 20px; }
.services-note a { color: var(--gold); font-weight: 600; }
.services-note a:hover { text-decoration: underline; }

/* ── PROCESS ── */
.process-section { padding: 80px 20px; background: var(--bg-card); border-top: 1px solid var(--border-soft); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
.process-card {
  background: var(--bg-card2); border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 28px; transition: all .3s cubic-bezier(.4,0,.2,1);
}
.process-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.process-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  margin-bottom: 18px; transition: transform .2s;
}
.process-card:hover .process-icon { transform: scale(1.1); }
.step-num { font-size: .7rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.process-card h3 { font-weight: 700; color: #fff; margin-bottom: 8px; font-size: .95rem; }
.process-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 80px 20px; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 52px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 28px; transition: all .3s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-3px); }
.stars { color: var(--gold); font-size: .95rem; margin-bottom: 14px; }
.testimonial-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0d0d; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
}
.reviewer-name { font-size: .875rem; font-weight: 700; color: #fff; }
.reviewer-loc  { font-size: .75rem; color: var(--text-dim); }

/* ── CTA BANNER ── */
.cta-section { padding: 72px 20px; background: var(--bg-card); border-top: 1px solid var(--border-soft); }
.cta-box {
  background: linear-gradient(135deg, #111 0%, #1a1408 50%, #161616 100%);
  border: 1px solid var(--border); border-radius: 24px; padding: 64px 20px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zM28 100L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='rgba(212,168,67,0.06)' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-glow { position: absolute; top:-100px; left:50%; transform:translateX(-50%); width:400px; height:400px; background:radial-gradient(circle, rgba(212,168,67,.12) 0%, transparent 70%); pointer-events:none; }
.cta-inner { position: relative; }
.cta-box h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-box p  { color: var(--text-muted); font-size: .95rem; margin-bottom: 32px; }

/* ── GOLD DIVIDER ── */
.gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 999px; margin: 16px auto 0; }

/* ── FOOTER ── */
.footer {
  background: #0a0a0a; border-top: 1px solid var(--border);
  padding: 56px 20px 24px;
}
.footer-grid { max-width: 1024px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-box {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.footer-brand-logo span { font-weight: 800; color: #fff; font-size: .9rem; }
.footer-brand-logo .accent { color: var(--gold); }
.footer-brand p { font-size: .85rem; color: var(--text-dim); line-height: 1.6; max-width: 260px; }
.footer h4 { font-size: .85rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul li a { font-size: .85rem; color: var(--text-dim); transition: color .2s; }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1024px; margin: 0 auto; border-top: 1px solid var(--border-soft); padding-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-bottom span { font-size: .75rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { font-size: .75rem; color: var(--text-dim); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── PRICING PAGE ── */
.pricing-hero {
  padding: 110px 20px 60px; text-align: center;
  background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zM28 100L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='rgba(212,168,67,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  border-bottom: 1px solid var(--border-soft);
}
.tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  padding: 10px 22px; border-radius: 10px; font-size: .875rem; font-weight: 700;
  border: 1px solid var(--border-soft); cursor: pointer; transition: all .2s;
  background: var(--bg-card); color: var(--text-muted);
}
.tab-btn:hover  { border-color: var(--gold); color: var(--gold); }
.tab-btn.active { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #0d0d0d; border-color: transparent; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 28px; position: relative; transition: all .3s;
}
.price-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.price-card.featured { border-color: var(--border); background: linear-gradient(135deg, #1a1408, var(--bg-card)); }
.popular-tag {
  position: absolute; top: 18px; right: 18px;
  font-size: .72rem; font-weight: 800; color: #0d0d0d;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 4px 12px; border-radius: 999px;
}
.price-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--gold-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 18px;
}
.price-card h3   { font-weight: 800; color: #fff; margin-bottom: 4px; font-size: .95rem; }
.price-card .desc{ font-size: .85rem; color: var(--text-dim); margin-bottom: 18px; }
.price-amount    { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: .9rem; font-weight: 400; color: var(--text-dim); }
.price-note      { font-size: .75rem; color: var(--text-dim); margin-bottom: 20px; }
.price-features  { list-style: none; margin-bottom: 24px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
.price-features li:last-child { border-bottom: none; }
.btn-card-primary {
  display: block; text-align: center; padding: 12px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0d0d; font-size: .875rem; font-weight: 800; transition: all .2s;
}
.btn-card-primary:hover { box-shadow: 0 6px 20px rgba(212,168,67,.4); }
.btn-card-outline {
  display: block; text-align: center; padding: 12px; border-radius: 10px;
  border: 1px solid var(--border); color: var(--gold);
  font-size: .875rem; font-weight: 700; transition: all .2s;
}
.btn-card-outline:hover { background: var(--gold-pale); }

/* ── INCLUDED ── */
.included-section { padding: 64px 20px; background: var(--bg-card); border-top: 1px solid var(--border-soft); }
.included-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
.included-card { background: var(--bg-card2); border-radius: 16px; padding: 22px; border: 1px solid var(--border-soft); }
.included-card h4 { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.included-card p  { font-size: .8rem; color: var(--text-dim); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { padding: 64px 20px; background: var(--bg); }
.faq-list { max-width: 672px; margin: 36px auto 0; }
.faq-item { background: var(--bg-card); border-radius: 14px; overflow: hidden; border: 1px solid var(--border-soft); margin-bottom: 10px; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; background: none; border: none; font-size: .9rem; font-weight: 600; color: #fff; cursor: pointer; text-align: left; transition: background .2s; }
.faq-btn:hover { background: var(--bg-card2); }
.faq-icon { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s; color: var(--gold); }
.faq-item.open .faq-icon    { transform: rotate(180deg); }
.faq-item.open .faq-btn     { color: var(--gold); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer  { display: block; }

/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 110px 20px 56px; text-align: center;
  background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zM28 100L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='rgba(212,168,67,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  border-bottom: 1px solid var(--border-soft);
}
.contact-grid { max-width: 1024px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
.info-card { background: var(--bg-card); border-radius: 20px; padding: 24px; border: 1px solid var(--border-soft); }
.info-card h3 { font-size: .7rem; font-weight: 800; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.info-item:last-child { border-bottom: none; }
.info-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-pale); border: 1px solid var(--border); display: grid; place-items: center; font-size: .95rem; flex-shrink: 0; }
.info-label { font-size: .75rem; color: var(--text-dim); margin-bottom: 3px; }
.info-value { font-size: .9rem; font-weight: 700; color: #fff; }
.engagements-card { background: var(--gold-pale); border-radius: 20px; padding: 22px; border: 1px solid var(--border); margin-top: 16px; }
.engagements-card h3 { font-size: .75rem; font-weight: 800; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.engagements-card li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: #d4a843; margin-bottom: 9px; list-style: none; }
.form-card { background: var(--bg-card); border-radius: 20px; padding: 32px; border: 1px solid var(--border-soft); }
.form-card h2   { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.form-card .sub { font-size: .875rem; color: var(--text-muted); margin-bottom: 24px; }
.security-notice { display: flex; align-items: flex-start; gap: 10px; background: var(--bg-card2); border-radius: 12px; padding: 12px 14px; border: 1px solid var(--border-soft); margin-bottom: 22px; }
.security-notice p { font-size: .78rem; color: var(--text-dim); line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--border-soft); background: var(--bg-card2);
  color: #fff; font-size: .875rem; font-family: 'Inter', sans-serif; transition: all .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: #1e1e1e; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,67,.12); }
.form-group textarea { resize: none; min-height: 100px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox span { font-size: .78rem; color: var(--text-dim); line-height: 1.6; }
.btn-submit {
  width: 100%; padding: 14px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #0d0d0d; font-size: .9rem; font-weight: 800; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .25s;
}
.btn-submit:hover:not(:disabled) { box-shadow: 0 8px 28px rgba(212,168,67,.45); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-success { text-align: center; padding: 40px 20px; display: none; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3); color: #22c55e; display: grid; place-items: center; font-size: 1.8rem; margin: 0 auto 18px; }
.form-success h3 { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.form-success p  { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }

/* ── PILL TAGS ── */
.pill-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
  border-radius: 999px; background: var(--bg-card); color: var(--text-muted);
  font-size: .8rem; font-weight: 600; border: 1px solid var(--border-soft); transition: all .2s;
}
.pill-tag:hover { border-color: var(--border); color: var(--gold); background: var(--gold-pale); }

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .hero-actions         { flex-direction: row; justify-content: center; }
  .stats-grid           { grid-template-columns: repeat(4,1fr); }
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .process-grid         { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid    { grid-template-columns: repeat(3,1fr); }
  .pricing-grid         { grid-template-columns: repeat(2,1fr); }
  .included-grid        { grid-template-columns: repeat(2,1fr); }
  .form-row             { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: repeat(2,1fr); }
  .footer-bottom        { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 768px) {
  .hamburger-btn        { display: none !important; }
  .nav-links-wrap       { display: flex !important; }
  .footer-grid          { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 1024px) {
  .process-grid         { grid-template-columns: repeat(3,1fr); }
  .pricing-grid         { grid-template-columns: repeat(3,1fr); }
  .included-grid        { grid-template-columns: repeat(4,1fr); }
  .contact-grid         { grid-template-columns: 2fr 3fr; }
}
@media (max-width: 767px) {
  .nav-links-wrap       { display: none; }
  .hamburger-btn        { display: flex !important; }
  .btn-nav-desktop      { display: none; }
}
