/* ===================== TOKENS ===================== */
:root {
  --navy-950: #0a1a33;
  --navy-900: #0d2149;
  --navy-800: #12295c;
  --navy-700: #1a3670;
  --gold-600: #b8893f;
  --gold-500: #c9a45c;
  --gold-400: #d9bd7f;
  --gold-100: #f3e8d3;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e2e6ec;
  --gray-400: #99a2b0;
  --gray-600: #5c6472;
  --gray-800: #2a303c;
  --danger: #7a1f1f;
  --danger-bg: #fbeceb;

  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;

  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-md: 0 8px 24px rgba(10, 26, 51, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 26, 51, 0.16);
  --container-w: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-body); font-weight: 800; line-height: 1.15; margin: 0 0 16px; color: var(--navy-900); }
p { margin: 0 0 12px; color: var(--gray-600); }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

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

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-block { width: 100%; white-space: normal; line-height: 1.3; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 6px 18px rgba(184, 137, 63, 0.35);
}
.btn-gold:hover { box-shadow: 0 10px 24px rgba(184, 137, 63, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
  flex-shrink: 0;
}
.logo span { color: var(--gold-600); }
.header-badge {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gold-100);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.header-badge svg { color: var(--gold-600); flex-shrink: 0; }
@media (min-width: 860px) {
  .header-badge { display: inline-flex; }
}
.header-cta { flex-shrink: 0; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  overflow: hidden;
  padding: 56px 0 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.skyline { width: 60%; max-width: 620px; height: auto; opacity: 0.5; }
@media (max-width: 720px) { .skyline { width: 90%; opacity: 0.3; } }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 56px; }
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.2vw, 2.75rem);
  margin-bottom: 18px;
}
.hero-copy .accent { color: var(--gold-400); }
.hero-sub {
  color: var(--gray-200);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 28px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-row li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--gray-100);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-form-card h2 { font-size: 1.3rem; margin-bottom: 6px; }
.form-note { font-size: 0.85rem; margin-bottom: 18px; }

.lead-form { display: flex; flex-direction: column; gap: 12px; }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; }
.field-row .country-select { grid-column: 1; }
.field-row input[type="tel"] { grid-column: 2; }

.lead-form input, .lead-form select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--gray-50);
  color: var(--gray-800);
  transition: border-color 0.15s ease;
}
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.form-legal { font-size: 0.72rem; color: var(--gray-400); margin: 4px 0 0; text-align: center; }
.form-success {
  display: none;
  background: #eaf7ee;
  color: #1e6b3a;
  border: 1px solid #bfe6c9;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.lead-form.is-submitted > *:not(.form-success) { display: none; }
.lead-form.is-submitted .form-success { display: block; }

.form-error {
  display: none;
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid #f0c4c2;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}
.lead-form.has-error .form-error { display: block; }

/* ===================== TRUST BAR ===================== */
.trust-bar { background: var(--gold-100); padding: 40px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
@media (min-width: 800px) { .trust-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); } }
.trust-text h2 { font-size: 1.35rem; margin-bottom: 8px; }
.trust-text p { color: var(--navy-800); margin: 0; }
.trust-text strong { color: var(--navy-950); }
.trust-stat { text-align: center; }
.stat-number { font-size: 3.2rem; font-weight: 800; color: var(--navy-950); line-height: 1; }
.stat-number span { font-size: 1.8rem; }
.stat-label { font-size: 0.85rem; color: var(--navy-800); font-weight: 600; max-width: 200px; margin: 6px auto 0; }

/* ===================== SECTION GENERIC ===================== */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.section-sub { font-size: 1rem; }

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 700px) { .pricing-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.price-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.price-card-featured { border-color: var(--gold-500); box-shadow: var(--shadow-lg); }
.price-ribbon {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(184,137,63,0.4);
}
.price-card-head h3 { font-size: 1.15rem; margin-bottom: 4px; }
.price-card-head p { font-size: 0.85rem; margin: 0 0 18px; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--navy-950); }
.price-amount span { font-size: 1.1rem; font-weight: 700; color: var(--gold-600); }
.price-eur { font-size: 0.9rem; font-weight: 600; color: var(--gray-400); }
.price-note { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 20px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; text-align: left; }
.price-features li { font-size: 0.9rem; color: var(--gray-800); padding-left: 26px; position: relative; }
.price-features li::before {
  content: "✓"; position: absolute; left: 0; color: var(--gold-600); font-weight: 800;
}
.price-disclaimer { text-align: center; font-size: 0.82rem; color: var(--gray-400); max-width: 640px; margin: 32px auto 0; }

/* ===================== ECOSYSTEM ===================== */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 700px) { .eco-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.eco-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.eco-icon { font-size: 1.8rem; margin-bottom: 12px; }
.eco-item h3 { font-size: 0.88rem; margin: 0; color: var(--navy-900); }

/* ===================== CALCULATOR ===================== */
.calculator-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
}
@media (min-width: 800px) { .calculator-card { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.calc-controls { padding: 36px 32px; display: flex; flex-direction: column; gap: 28px; }
.calc-field label, .calc-field-label {
  display: block; font-weight: 700; font-size: 0.92rem; color: var(--navy-900); margin-bottom: 12px;
}
.stepper { display: flex; align-items: center; gap: 18px; }
.stepper-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--navy-900); background: var(--white); color: var(--navy-900);
  font-size: 1.2rem; font-weight: 700; cursor: pointer; transition: background 0.15s ease;
}
.stepper-btn:hover { background: var(--navy-900); color: var(--white); }
.stepper-value { font-size: 1.4rem; font-weight: 800; min-width: 24px; text-align: center; }
.calc-checks { display: flex; flex-direction: column; gap: 12px; }
.calc-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray-800); cursor: pointer; }
.calc-check input { margin-top: 3px; accent-color: var(--gold-600); flex-shrink: 0; }
.calc-check em { display: block; font-style: normal; color: var(--gold-600); font-weight: 700; font-size: 0.8rem; }
.calc-check em small { color: var(--gray-400); font-weight: 600; }

.calc-quote-list { display: flex; flex-direction: column; gap: 8px; }
.calc-quote-list li { font-size: 0.88rem; color: var(--gray-600); padding-left: 20px; position: relative; }
.calc-quote-list li::before { content: "+"; position: absolute; left: 0; color: var(--gold-600); font-weight: 700; }

.calc-result {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.calc-result-label { font-size: 0.82rem; color: var(--gray-200); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.calc-result-amount { font-size: 2.6rem; font-weight: 800; color: var(--gold-400); margin: 6px 0 0; }
.calc-result-amount small { font-size: 1.1rem; color: var(--gray-200); font-weight: 700; }
.calc-result-eur { font-size: 0.95rem; font-weight: 600; color: var(--gray-400); margin-bottom: 4px; }
.calc-result-note { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 22px; }
.calc-form { margin-top: auto; gap: 10px; }
.calc-form input {
  padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: var(--white); font-family: var(--font-body);
}
.calc-form input::placeholder { color: var(--gray-400); }
.calc-form input:focus { outline: none; border-color: var(--gold-500); }
.calc-form .form-success { background: rgba(201,164,92,0.15); border-color: rgba(201,164,92,0.4); color: var(--gold-100); }

/* ===================== PROCESS ===================== */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
@media (min-width: 800px) { .process-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.process-phase-head { margin-bottom: 24px; }
.phase-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700; padding: 8px 16px; border-radius: 999px;
}
.phase-tag-navy { background: var(--navy-900); color: var(--white); }
.phase-tag-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); }
.process-steps { display: flex; flex-direction: column; gap: 22px; }
.process-steps li { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.step-num-highlight { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); }
.process-steps h3 { font-size: 0.98rem; margin: 0 0 4px; }
.process-steps p { font-size: 0.85rem; margin: 0; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer; padding: 16px 0; font-weight: 700; color: var(--navy-900); font-size: 0.98rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--gold-600); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 18px; margin: 0; font-size: 0.9rem; }

/* ===================== FOOTER LEAD FORM ===================== */
.footer-lead { background: var(--gold-100); }
.footer-lead-inner {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: center;
  background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md);
}
@media (min-width: 800px) { .footer-lead-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.footer-lead-copy h2 { font-size: 1.4rem; margin-bottom: 8px; }
.footer-form { gap: 12px; }

/* ===================== SITE FOOTER ===================== */
.site-footer { background: var(--navy-950); color: var(--gray-400); padding: 40px 0; text-align: center; }
.footer-brand { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--gold-500); }
.footer-inner p { color: var(--gray-400); font-size: 0.85rem; max-width: 460px; margin: 0 auto 6px; }
.footer-zones { font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase; opacity: 0.75; }
.footer-contact { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.footer-contact a { color: var(--gold-400); font-weight: 600; }
.footer-contact a:hover { text-decoration: underline; }
.footer-contact-sep { color: var(--gray-400); opacity: 0.5; }
.footer-copy { font-size: 0.78rem; opacity: 0.7; }

/* ===================== FLOATING CTAs ===================== */
.floating-ctas {
  position: fixed; bottom: 20px; right: 20px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: #25d366; }
.fab-telegram { background: #229ed9; }

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .field-row .country-select, .field-row input[type="tel"] { grid-column: 1; }
  .floating-ctas { bottom: 14px; right: 14px; gap: 10px; }
  .fab { width: 46px; height: 46px; }
  .fab svg { width: 20px; height: 20px; }

  .header-inner { padding: 12px 16px; gap: 8px; }
  .logo { font-size: 1.05rem; }
  .header-cta { padding: 9px 14px; font-size: 0.78rem; }
}

@media (max-width: 360px) {
  .header-cta { padding: 8px 12px; font-size: 0.72rem; }
  .logo { font-size: 0.95rem; }
}
