:root {
  --bg: #F4F6FA;
  --white: #FFFFFF;
  --navy: #0F172A;
  --navy-2: #1E293B;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EFF4FF;
  --blue-mid: #DBEAFE;
  --green: #16A34A;
  --green-bg: #DCFCE7;
  --amber: #D97706;
  --amber-bg: #FEF3C7;
  --gray: #64748B;
  --gray-light: #E2E8F0;
  --gray-lighter: #F8FAFC;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.09);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.11);
  --shadow-xl: 0 24px 64px rgba(15,23,42,0.13);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Manrope',sans-serif;
  background:var(--bg);
  color:var(--navy);
  -webkit-font-smoothing:antialiased;
}

/* ──────────── NAV ──────────── */
nav {
  position:sticky; top:0; z-index:200;
  background:rgba(255,255,255,0.90);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
  padding:0 52px;
  display:flex; align-items:center; justify-content:space-between;
  height:62px;
}
.logo {
  display:flex; align-items:center; gap:10px;
  font-size:15px; font-weight:900; color:var(--navy);
  text-decoration:none; letter-spacing:-0.3px;
}
.logo-icon {
  width:34px; height:34px;
  background:var(--blue);
  border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:15px; font-weight:900;
}
.logo-badge {
  font-size:10px; font-weight:700;
  background:var(--blue-light);
  color:var(--blue);
  padding:2px 7px; border-radius:4px;
  letter-spacing:0.3px;
}
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a {
  font-size:14px; font-weight:600; color:var(--gray);
  text-decoration:none; transition:color .2s;
}
.nav-links a:hover { color:var(--navy); }
.nav-cta {
  font-family:'Manrope',sans-serif;
  font-size:13px; font-weight:700;
  padding:10px 22px; border-radius:9px;
  background:var(--navy); color:white; border:none;
  cursor:pointer; text-decoration:none;
  transition:all .2s;
}
.nav-cta:hover { background:var(--navy-2); box-shadow:var(--shadow-md); transform:translateY(-1px); }

/* ──────────── HERO ──────────── */
.hero-wrap { background:white; }
.hero {
  max-width:1240px; margin:0 auto;
  padding:76px 52px 96px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px; align-items:center;
}
.hero-left { animation:fadeUp .7s ease both; }
.hero-tag {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--blue-light); color:var(--blue);
  font-size:11px; font-weight:700; letter-spacing:.9px;
  text-transform:uppercase;
  padding:6px 13px; border-radius:20px;
  margin-bottom:24px;
}
.hero h1 {
  font-size:clamp(36px,5vw,56px);
  font-weight:900; line-height:1.1;
  letter-spacing:-1.5px; margin-bottom:20px;
}
.hero h1 .blue { color:var(--blue); }
.hero-sub {
  font-size:17px; font-weight:400;
  color:var(--gray); line-height:1.75;
  margin-bottom:40px; max-width:480px;
}
.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; }
.btn-primary {
  font-family:'Manrope',sans-serif;
  font-size:15px; font-weight:700;
  padding:14px 30px; border-radius:10px;
  background:var(--navy); color:white; border:none;
  cursor:pointer; text-decoration:none; display:inline-block;
  transition:all .2s;
  box-shadow:0 2px 8px rgba(15,23,42,0.15);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn-outline {
  font-family:'Manrope',sans-serif;
  font-size:15px; font-weight:700;
  padding:14px 28px; border-radius:10px;
  background:white; color:var(--navy);
  border:1.5px solid var(--border);
  cursor:pointer; text-decoration:none; display:inline-block;
  transition:all .2s;
}
.btn-outline:hover { border-color:var(--navy); transform:translateY(-1px); }
.hero-badges {
  display:flex; gap:16px; margin-top:32px; flex-wrap:wrap;
}
.hero-badge-item {
  display:flex; align-items:center; gap:7px;
  font-size:13px; font-weight:600; color:var(--gray);
}
.hero-badge-item .dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--green); flex-shrink:0;
}

.hero-right {
  position:relative;
  animation:fadeUp .9s ease both;
}
.hero-illustration {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1a4480 100%);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-xl);
  border:1px solid rgba(255,255,255,0.08);
  position:relative;
  height:420px;
}
.hero-float-1 {
  position:absolute; bottom:24px; left:24px;
  background:white; border-radius:14px;
  padding:14px 18px;
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:12px;
  border:1px solid var(--border);
}
.float-icon-g {
  width:38px; height:38px;
  background:var(--green-bg); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:17px; flex-shrink:0;
}
.float-label { font-size:10px; font-weight:700; color:var(--gray); text-transform:uppercase; letter-spacing:.4px; margin-bottom:2px; }
.float-val { font-size:15px; font-weight:900; color:var(--navy); }
.hero-float-2 {
  position:absolute; top:24px; right:24px;
  background:white; border-radius:14px;
  padding:14px 18px;
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:12px;
  border:1px solid var(--border);
}
.float-icon-b {
  width:38px; height:38px;
  background:var(--blue-light); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:17px; flex-shrink:0;
}

/* ──────────── STATS ──────────── */
.stats-bar { background:var(--navy); padding:52px 52px; }
.stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
  max-width:1240px; margin:0 auto; text-align:center;
}
.stat-item { padding:0 28px; border-right:1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right:none; }
.stat-num {
  font-size:44px; font-weight:900; color:white;
  line-height:1; margin-bottom:6px;
}
.stat-num span { color:#60A5FA; }
.stat-lbl { font-size:13px; color:rgba(255,255,255,.5); font-weight:500; line-height:1.5; }

/* ──────────── SECTION HELPERS ──────────── */
.section { padding:96px 52px; }
.container { max-width:1240px; margin:0 auto; }
.section-tag {
  font-size:11px; font-weight:700; letter-spacing:.9px;
  text-transform:uppercase; color:var(--blue);
  margin-bottom:12px; display:block;
}
.section-title {
  font-size:clamp(28px,4vw,44px); font-weight:900;
  line-height:1.15; letter-spacing:-1px; margin-bottom:16px;
}
.section-sub {
  font-size:17px; color:var(--gray);
  font-weight:400; line-height:1.7; max-width:560px;
}
.center { text-align:center; }
.center .section-sub { margin:0 auto; }

/* ──────────── PAINS ──────────── */
.pains { background:white; }
.pains-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:16px; margin-top:56px;
}
.pain-card {
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:18px; padding:36px;
  transition:all .25s; position:relative; overflow:hidden;
}
.pain-card:hover { border-color:var(--blue); box-shadow:0 0 0 3px rgba(37,99,235,.07); transform:translateY(-2px); }
.pain-card::after {
  content:attr(data-n);
  position:absolute; bottom:-12px; right:16px;
  font-size:88px; font-weight:900;
  color:rgba(15,23,42,.04); line-height:1; pointer-events:none;
}
.pain-top {
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:20px;
}
.pain-icon-box {
  width:50px; height:50px;
  background:white; border:1px solid var(--border);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; box-shadow:var(--shadow-sm);
}
.pain-solve {
  font-size:11px; font-weight:700; letter-spacing:.5px;
  text-transform:uppercase; color:var(--green);
  background:var(--green-bg); padding:4px 10px; border-radius:6px;
}
.pain-card h3 { font-size:17px; font-weight:800; margin-bottom:10px; }
.pain-card p { font-size:14px; color:var(--gray); line-height:1.7; }
.pain-solution {
  margin-top:18px; padding-top:18px;
  border-top:1px solid var(--border);
  display:flex; gap:8px; align-items:flex-start;
}
.pain-solution .arrow { color:var(--blue); font-weight:900; font-size:16px; flex-shrink:0; }
.pain-solution span { font-size:13px; font-weight:700; color:var(--navy-2); line-height:1.5; }

/* ──────────── HOW WE WORK ──────────── */
.how { background:var(--bg); }
.steps-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:16px; margin-top:56px; position:relative;
}
.steps-grid::before {
  content:'';
  position:absolute;
  top:32px; left:10%; right:10%;
  height:1px; background:var(--border);
  z-index:0;
}
.step-card {
  background:white;
  border:1px solid var(--border);
  border-radius:18px; padding:30px 24px;
  text-align:center; position:relative; z-index:1;
  transition:all .25s;
}
.step-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--blue); }
.step-num {
  width:44px; height:44px;
  background:var(--navy); color:white;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:900;
  margin:0 auto 16px;
}
.step-card h4 { font-size:15px; font-weight:800; margin-bottom:8px; }
.step-card p { font-size:13px; color:var(--gray); line-height:1.65; }
.step-tag {
  display:inline-block; margin-bottom:12px;
  font-size:11px; font-weight:700; color:var(--blue);
  background:var(--blue-light); padding:3px 10px; border-radius:6px;
}

/* ──────────── SERVICES ──────────── */
.services { background:white; }
.services-grid {
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:14px; margin-top:56px;
}
.svc-card {
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:18px; padding:28px 20px;
  text-align:center; transition:all .25s; cursor:default;
}
.svc-card:hover {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(37,99,235,.08),var(--shadow-md);
  transform:translateY(-4px); background:white;
}
.svc-icon { font-size:36px; margin-bottom:14px; display:block; }
.svc-card h3 { font-size:14px; font-weight:800; margin-bottom:8px; }
.svc-card p { font-size:12px; color:var(--gray); line-height:1.65; }

/* ──────────── PRICING ──────────── */
.pricing { background:var(--bg); }
.pricing-intro {
  display:grid; grid-template-columns:1fr 1fr;
  gap:56px; align-items:center; margin-bottom:56px;
}
.no-vat-box {
  background:var(--navy);
  border-radius:18px; padding:36px;
  color:white;
}
.no-vat-box .tag {
  display:inline-block; margin-bottom:14px;
  font-size:11px; font-weight:700; letter-spacing:.7px;
  text-transform:uppercase;
  color:#93C5FD; background:rgba(37,99,235,.25);
  padding:4px 12px; border-radius:6px;
}
.no-vat-box h3 { font-size:22px; font-weight:900; margin-bottom:12px; }
.no-vat-box p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:20px; }
.no-vat-highlight {
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px; padding:20px;
  font-size:14px; color:rgba(255,255,255,.85); line-height:1.65;
}
.no-vat-highlight strong { color:#86EFAC; }

.pricing-table-wrap {
  border-radius:16px; overflow:hidden;
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
}
table { width:100%; border-collapse:collapse; }
thead th {
  padding:16px 24px;
  font-size:12px; font-weight:700; letter-spacing:.3px;
  text-align:left; background:var(--gray-lighter); color:var(--gray);
}
thead th:last-child { text-align:center; }
tbody td {
  padding:15px 24px; font-size:14px;
  border-bottom:1px solid var(--border);
}
tbody tr:last-child td { border-bottom:none; }
tbody td:first-child { font-weight:700; color:var(--navy-2); }
tbody td:nth-child(2) { color:var(--gray); font-size:13px; }
tbody td:nth-child(3) { font-weight:800; color:var(--blue); text-align:center; }
tbody td:last-child { font-size:12px; color:var(--green); font-weight:600; text-align:center; }
tbody tr:nth-child(even) td { background:var(--gray-lighter); }
tbody tr:hover td { background:var(--blue-light); }
.pricing-note {
  margin-top:20px; padding:18px 24px;
  background:var(--amber-bg); border:1px solid #FDE68A;
  border-radius:12px; font-size:14px; color:#92400E; line-height:1.6;
  display:flex; gap:10px; align-items:flex-start;
}

/* ──────────── CASES ──────────── */
.cases { background:var(--bg); }
.cases-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:16px; margin-top:56px;
}
.case-card {
  background:white;
  border:1px solid var(--border);
  border-radius:18px; padding:32px;
  transition:all .25s;
}
.case-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.case-logo {
  width:44px; height:44px;
  background:var(--blue-light); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; margin-bottom:20px;
}
.case-tag {
  font-size:11px; font-weight:700; color:var(--blue);
  background:var(--blue-light); padding:3px 10px;
  border-radius:6px; display:inline-block; margin-bottom:14px;
}
.case-card h4 { font-size:16px; font-weight:800; margin-bottom:10px; }
.case-card p { font-size:14px; color:var(--gray); line-height:1.7; margin-bottom:16px; }
.case-result {
  background:var(--green-bg);
  border-radius:10px; padding:12px 16px;
  font-size:13px; font-weight:700; color:var(--green);
  display:flex; gap:8px; align-items:center;
}
.case-author {
  margin-top:18px; padding-top:18px;
  border-top:1px solid var(--border);
  font-size:12px; color:var(--gray); font-style:italic; line-height:1.5;
}

/* ──────────── TRUST ──────────── */
.trust { background:white; }
.trust-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; margin-top:56px; align-items:start;
}
.steps-v { display:flex; flex-direction:column; }
.step-v {
  display:flex; gap:20px; padding-bottom:32px; position:relative;
}
.step-v:not(:last-child)::before {
  content:''; position:absolute;
  left:19px; top:42px; bottom:0;
  width:1px; background:var(--border);
}
.step-v-num {
  width:40px; height:40px;
  background:var(--navy); color:white;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:800; flex-shrink:0; z-index:1;
}
.step-v-body { padding-top:7px; }
.step-v-body h4 { font-size:15px; font-weight:800; margin-bottom:6px; }
.step-v-body p { font-size:13px; color:var(--gray); line-height:1.65; }
.trust-cards { display:flex; flex-direction:column; gap:14px; }
.tc {
  background:var(--bg); border:1px solid var(--border);
  border-radius:14px; padding:22px 24px;
  display:flex; gap:16px; align-items:flex-start; transition:all .2s;
}
.tc:hover { background:white; box-shadow:var(--shadow-md); }
.tc-icon { font-size:24px; flex-shrink:0; }
.tc h4 { font-size:14px; font-weight:800; margin-bottom:4px; }
.tc p { font-size:13px; color:var(--gray); line-height:1.6; }

/* ──────────── FINAL CTA ──────────── */
.final-cta { background:var(--bg); padding:80px 52px; }
.cta-card {
  background:var(--navy);
  border-radius:24px; padding:72px 64px;
  text-align:center; position:relative; overflow:hidden;
  max-width:1240px; margin:0 auto;
}
.cta-card::before {
  content:''; position:absolute; top:-80px; left:-80px;
  width:320px; height:320px; border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.3) 0%,transparent 70%);
}
.cta-card::after {
  content:''; position:absolute; bottom:-80px; right:-60px;
  width:260px; height:260px; border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.15) 0%,transparent 70%);
}
.cta-inner { position:relative; z-index:2; }
.cta-card .section-tag { color:rgba(147,197,253,.9); }
.cta-card .section-title { color:white; max-width:640px; margin:0 auto 14px; }
.cta-card .section-sub { color:rgba(255,255,255,.55); max-width:520px; margin:0 auto 48px; }
.cta-form {
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px; padding:40px 44px;
  max-width:680px; margin:0 auto;
}
.cta-form h3 { font-size:20px; font-weight:900; color:white; margin-bottom:8px; }
.cta-form > p { font-size:14px; color:rgba(255,255,255,.5); margin-bottom:28px; line-height:1.6; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.inp {
  font-family:'Manrope',sans-serif;
  font-size:14px; color:white; outline:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:9px; padding:13px 16px;
  transition:border-color .2s; width:100%;
}
.inp::placeholder { color:rgba(255,255,255,.35); }
.inp:focus { border-color:rgba(37,99,235,.7); background:rgba(255,255,255,.1); }
.inp-full { grid-column:1/-1; }
.btn-cta {
  font-family:'Manrope',sans-serif;
  font-size:15px; font-weight:700;
  padding:15px 32px; background:var(--blue); color:white;
  border:none; border-radius:10px; cursor:pointer;
  width:100%; margin-top:4px;
  transition:all .2s;
}
.btn-cta:hover { background:var(--blue-dark); transform:translateY(-1px); }
.btn-cta:disabled { opacity:0.6; cursor:not-allowed; }
.form-note { font-size:12px; color:rgba(255,255,255,.3); margin-top:12px; }
.cta-perks {
  display:flex; gap:28px; justify-content:center;
  margin-top:32px; flex-wrap:wrap;
}
.cta-perk {
  display:flex; align-items:center; gap:7px;
  font-size:13px; color:rgba(255,255,255,.6); font-weight:600;
}
.cta-perk::before { content:'✓'; color:#60A5FA; font-weight:800; }

/* ──────────── FOOTER ──────────── */
footer {
  background:white; border-top:1px solid var(--border);
  padding:28px 52px;
  display:flex; align-items:center; justify-content:space-between;
}
footer p { font-size:13px; color:var(--gray); }

/* ──────────── ANIMATIONS ──────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-8px); }
}

/* ──────────── RESPONSIVE ──────────── */
@media(max-width:1024px){
  nav { padding:0 20px; }
  .nav-links { display:none; }
  .hero { grid-template-columns:1fr; gap:40px; padding:56px 20px 72px; }
  .section { padding:64px 20px; }
  .final-cta { padding:56px 20px; }
  .pains-grid,.trust-grid,.pricing-intro,.form-grid { grid-template-columns:1fr; }
  .steps-grid,.services-grid,.cases-grid { grid-template-columns:1fr 1fr; }
  .stats-inner { grid-template-columns:repeat(2,1fr); gap:28px; }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.1); padding-bottom:24px; }
  .cta-card { padding:48px 24px; }
  .cta-form { padding:28px 20px; }
  footer { flex-direction:column; gap:12px; text-align:center; }
}
@media(max-width:600px){
  .steps-grid,.services-grid,.cases-grid { grid-template-columns:1fr; }
}

/* ──────────── ADMIN STYLES ──────────── */
.admin-container {
  max-width:1400px; margin:0 auto; padding:40px 20px;
}
.admin-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:32px; padding-bottom:24px; border-bottom:2px solid var(--border);
}
.admin-title { font-size:32px; font-weight:900; color:var(--navy); }
.admin-stats {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:32px;
}
.admin-stat-card {
  background:white; border:1px solid var(--border); border-radius:12px;
  padding:20px; box-shadow:var(--shadow-sm);
}
.admin-stat-value { font-size:28px; font-weight:900; color:var(--blue); margin-bottom:4px; }
.admin-stat-label { font-size:13px; color:var(--gray); font-weight:600; }
.admin-filters {
  background:white; border:1px solid var(--border); border-radius:12px;
  padding:20px; margin-bottom:24px; display:flex; gap:12px; flex-wrap:wrap;
}
.admin-filters input, .admin-filters select {
  padding:10px 14px; border:1px solid var(--border); border-radius:8px;
  font-size:14px; font-family:'Manrope',sans-serif;
}
.admin-table-wrap {
  background:white; border:1px solid var(--border); border-radius:12px;
  overflow:hidden; box-shadow:var(--shadow-sm);
}
.admin-table {
  width:100%; border-collapse:collapse;
}
.admin-table th {
  background:var(--gray-lighter); padding:16px; text-align:left;
  font-size:12px; font-weight:700; color:var(--gray); text-transform:uppercase;
  letter-spacing:0.5px;
}
.admin-table td {
  padding:16px; border-top:1px solid var(--border);
  font-size:14px; color:var(--navy);
}
.admin-table tr:hover { background:var(--blue-light); }
.status-badge {
  display:inline-block; padding:4px 12px; border-radius:6px;
  font-size:12px; font-weight:700;
}
.status-new { background:var(--blue-light); color:var(--blue); }
.status-processed { background:var(--green-bg); color:var(--green); }
.btn-small {
  padding:6px 14px; border-radius:6px; border:none;
  font-size:12px; font-weight:700; cursor:pointer;
  transition:all .2s;
}
.btn-view { background:var(--blue-light); color:var(--blue); }
.btn-view:hover { background:var(--blue); color:white; }
.btn-delete { background:#FEE2E2; color:#DC2626; }
.btn-delete:hover { background:#DC2626; color:white; }
.modal {
  display:none; position:fixed; top:0; left:0; right:0; bottom:0;
  background:rgba(15,23,42,0.7); z-index:1000; align-items:center; justify-content:center;
}
.modal.active { display:flex; }
.modal-content {
  background:white; border-radius:16px; padding:32px; max-width:600px; width:90%;
  max-height:80vh; overflow-y:auto; box-shadow:var(--shadow-xl);
}
.modal-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:24px; padding-bottom:16px; border-bottom:1px solid var(--border);
}
.modal-title { font-size:24px; font-weight:900; color:var(--navy); }
.modal-close {
  background:none; border:none; font-size:24px; cursor:pointer;
  color:var(--gray); padding:0; width:32px; height:32px;
}
.modal-field { margin-bottom:16px; }
.modal-label { font-size:12px; font-weight:700; color:var(--gray); margin-bottom:6px; display:block; }
.modal-value { font-size:14px; color:var(--navy); padding:10px; background:var(--bg); border-radius:8px; }
