/* ============================================================
   V2 — Asymetrický korporát · Cincuenta
   Full-width hero, numbered service cards, blue contact section
   ============================================================ */
:root {
  --blue:         #1a5fb4;
  --blue-dark:    #14478a;
  --blue-deep:    #0d2e5c;
  --blue-light:   #e8f0fe;
  --gold:         #f1d13f;
  --gold-dark:    #c9a90e;
  --text:         #1a202c;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;
  --bg:           #fff;
  --bg-cool:      #f8fafc;
  --border:       #e2e8f0;
  --dark:         #0f172a;

  --font-body:    'Source Sans 3', system-ui, sans-serif;
  --font-brand:   'Great Vibes', cursive;
  --container:    1280px;
  --radius:       12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--text);
  background: var(--bg); line-height: 1.6;
  min-width: 1440px; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }

/* ── NAV — full-width dark ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  max-width: var(--container); margin: 0 auto; padding: 0 2.5rem;
}
.nav-back {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.nav-back:hover { color: rgba(255,255,255,0.7); }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { font-family: var(--font-brand); font-size: 1.8rem; color: #fff; }
.nav-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }
.nav-tagline { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-right a { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.nav-right a:hover { color: #fff; }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-weight: 700 !important;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }

/* ── HERO — full-width asymmetric ── */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--blue-deep) 100%);
  overflow: hidden;
  min-height: 600px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(26,95,180,0.2) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100%, 80px 80px, 80px 80px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  min-height: 600px;
}
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; padding: 4rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(241,209,63,0.12); border: 1px solid rgba(241,209,63,0.2);
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.4rem 1rem; border-radius: 100px; width: fit-content;
}
.hero-title {
  font-size: 3.2rem; font-weight: 700;
  line-height: 1.12; letter-spacing: -0.03em; color: #fff;
}
.hero-title .brand {
  font-family: var(--font-brand); font-size: 4.5rem; font-weight: 400;
  color: var(--gold); display: block; line-height: 1.2; margin-top: 0.2rem;
}
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 440px; }
.hero-actions { display: flex; gap: 1rem; margin-top: 0.5rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 10px;
  transition: all 0.25s; border: 2px solid transparent; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(241,209,63,0.2); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-white { background: #fff; color: var(--blue); padding: 0.85rem 2rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: all 0.25s; cursor: pointer; display: inline-flex; align-items: center; }
.btn-white:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.hero-visual {
  position: relative; align-self: stretch;
  display: flex; align-items: center;
}
.hero-img {
  width: 100%; height: 420px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 0.85rem;
}
.hero-stat {
  position: absolute;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-stat-1 { bottom: 20px; left: -20px; }
.stat-icon {
  width: 40px; height: 40px; background: rgba(241,209,63,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.hero-stat strong { font-size: 1.3rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.hero-stat span { font-size: 0.68rem; color: rgba(255,255,255,0.5); }

/* ── SERVICES — numbered cards ── */
.services {
  padding: 6rem 0;
  background: var(--bg-cool);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; gap: 2rem;
}
.services-header h2 { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 0.5rem; }
.services-desc { font-size: 1rem; color: var(--text-muted); max-width: 400px; text-align: right; line-height: 1.6; }
.section-badge {
  display: inline-block;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem; border-radius: 100px;
}
.section-badge-light {
  background: rgba(255,255,255,0.12); color: #fff;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.svc-stripe {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: var(--blue); }
.svc-card:hover .svc-stripe { transform: scaleX(1); }
.svc-num {
  font-size: 2.5rem; font-weight: 700; color: var(--blue-light);
  line-height: 1; letter-spacing: -0.04em;
}
.svc-card:hover .svc-num { color: var(--blue); }
.svc-icon {
  width: 52px; height: 52px;
  background: var(--blue-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  transition: all 0.3s;
}
.svc-card:hover .svc-icon { background: var(--blue); color: #fff; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; }
.svc-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── TRUST BAR ── */
.trust {
  padding: 0;
  background: var(--bg-cool);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 3.5rem 0;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  padding: 0 4rem;
}
.trust-item strong { font-size: 2.5rem; font-weight: 700; color: var(--blue); letter-spacing: -0.03em; }
.trust-item span { font-size: 0.95rem; color: var(--text-muted); font-weight: 600; }
.trust-sep { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ── PROCESS — how it works ── */
.process {
  padding: 8rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-header {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: 5rem;
}
.process-header h2 { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.02em; }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.process-step {
  text-align: center;
  padding: 0 3rem;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.step-line {
  position: absolute;
  top: 32px; left: 0; right: 0;
  height: 2px; background: var(--border);
  z-index: 0;
}
.process-step:first-child .step-line { left: 50%; }
.process-step:last-child .step-line { right: 50%; }
.step-dot {
  width: 64px; height: 64px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--bg);
}
.process-step h3 { font-size: 1.3rem; font-weight: 700; margin-top: 0.5rem; }
.process-step p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; max-width: 300px; }

/* ── PRICING — blue banner ── */
.pricing {
  padding: 0;
  background: var(--blue);
}
.pricing-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2.5rem 0; gap: 2rem;
}
.pricing-left h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.pricing-left p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }

/* ── CONTACT — map + overlapping panel ── */
.contact {
  padding: 0;
}
.contact-map-wrap {
  position: relative;
  height: 500px;
}
.contact-map {
  position: absolute; inset: 0;
  background: var(--bg-cool);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.85rem;
}
.contact-panel {
  position: absolute;
  top: 50%; left: 80px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; gap: 0.75rem;
  z-index: 2;
}
.contact-panel h2 { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; }
.contact-panel-sub { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.contact-panel-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.contact-panel-row {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.92rem;
}
.contact-panel-row svg { color: var(--blue); flex-shrink: 0; }
.contact-panel-row a { color: var(--blue); font-weight: 600; transition: color 0.2s; }
.contact-panel-row a:hover { color: var(--blue-dark); }
.contact-panel-row span { color: var(--text-muted); }

/* ── FOOTER ── */
.footer {
  padding: 2rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { font-family: var(--font-brand); font-size: 1.5rem; color: var(--gold); }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
