:root {
  --bg: #0b1220;
  --bg-soft: #111a2d;
  --surface: rgba(244, 232, 204, 0.045);
  --surface-strong: rgba(244, 232, 204, 0.075);
  --border: rgba(244, 232, 204, 0.12);
  --text: #F4E8CC;
  --muted: rgba(244, 232, 204, 0.76);
  --primary: #0B63CE;
  --primary-strong: #16B9D4;
  --primary-soft: rgba(11, 99, 206, 0.14);
  --primary-deep: #09489A;
  --accent-warm: #FFA94D;
  --accent-pink: #FF6AC2;
  --accent-gold: #F5C84B;
  --white: #ffffff;
  --bone: #F4E8CC;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 20px 54px rgba(0,0,0,0.34);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(11,99,206,0.22), transparent 20%),
    radial-gradient(circle at left, rgba(22,185,212,0.14), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(255,106,194,0.08), transparent 16%),
    radial-gradient(circle at 18% 82%, rgba(255,169,77,0.08), transparent 18%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; color: var(--muted); line-height: 1.72; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 86px 0; }
.section-alt { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow { color: #f9d778; text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 700; }
.section-title { font-size: clamp(30px,4vw,52px); line-height: 1.05; margin: 14px 0 18px; letter-spacing: -.04em; }
.lead { font-size: 18px; max-width: 760px; }
.small-title { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #ffd59a; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { display:inline-flex; align-items:center; justify-content:center; padding:14px 22px; border-radius:999px; font-weight:700; transition:.2s ease; border:1px solid transparent; }
.btn-primary { background: var(--primary); color: #08110b; }
.btn-primary:hover { transform: translateY(-1px); background: var(--primary-strong); }
.btn-secondary { border-color: var(--border); background: rgba(255,255,255,0.03); }
.btn-secondary:hover { background: rgba(255,255,255,0.06); }
.site-header { position: sticky; top:0; z-index:50; backdrop-filter: blur(12px); background: rgba(11,18,32,.86); border-bottom:1px solid var(--border); }
.header-inner { min-height:82px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:flex; align-items:center; gap:14px; }
.brand img { width: 178px; height: auto; }
.brand-sub { font-size:11px; color: var(--muted); text-transform: uppercase; letter-spacing: .24em; }
.nav { display:flex; align-items:center; gap:26px; }
.nav a { color: var(--muted); font-size:14px; }
.nav a:hover, .nav a.active { color: var(--white); }
.mobile-toggle { display:none; }
.hero { padding: 82px 0 90px; }
.hero-grid, .grid-2, .grid-3, .grid-4, .contact-layout, .table-row, .split-highlight, .pricing-grid, .proof-grid { display:grid; gap:24px; }
.hero-grid { grid-template-columns: 1.05fr .95fr; align-items:center; }
.hero h1 { font-size: clamp(42px,6vw,72px); line-height: .98; margin: 18px 0; letter-spacing: -.06em; }
.hero p { max-width: 700px; font-size: 19px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4, .proof-grid { grid-template-columns: repeat(4,1fr); }
.card, .panel, .image-card, .price-card, .proof-card { border:1px solid var(--border); background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
.card { padding: 28px; }
.panel { padding: 34px; }
.image-card { overflow:hidden; }
.card h3, .panel h3 { margin:0 0 12px; font-size:24px; letter-spacing:-.03em; }
.case-top, .plan-badge { font-size:12px; text-transform:uppercase; letter-spacing:.12em; font-weight:700; }
.case-top { color:#f9d778; }
.feature-line { display:flex; gap:16px; align-items:flex-start; margin-bottom:18px; }
.icon-dot { width:12px; height:12px; border-radius:999px; background: var(--primary); box-shadow: 0 0 0 8px rgba(11,99,206,.16); margin-top:8px; flex:0 0 auto; }
.stat-block, .proof-card { padding:20px; border-radius:22px; background: rgba(255,255,255,0.03); border:1px solid var(--border); }
.metric { font-size:16px; font-weight:600; color:var(--text); }
.metric small { display:block; margin-top:8px; color:var(--muted); font-weight:400; }
.before-after { display:grid; gap:16px; margin:20px 0; }
.impact { border:1px solid rgba(11,99,206,.3); background: var(--primary-soft); border-radius:22px; padding:18px; }
.page-hero { padding: 76px 0 56px; }
.page-hero .section-title { max-width: 900px; }
.highlight-line { font-size: clamp(24px,3vw,38px); line-height:1.24; font-weight:800; letter-spacing:-.04em; }
.image-wrap { border-radius: 30px; overflow:hidden; border:1px solid var(--border); background: rgba(255,255,255,0.02); }
form { display:grid; gap:16px; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
label { display:grid; gap:8px; font-size:14px; color: var(--muted); }
input, textarea { width:100%; background:#0a1120; border:1px solid var(--border); border-radius:18px; padding:14px 16px; color:var(--text); font:inherit; }
textarea { min-height: 160px; resize: vertical; }
input:focus, textarea:focus { outline:2px solid rgba(11,99,206,.3); border-color: rgba(11,99,206,.35); }
.footer { border-top:1px solid var(--border); padding:32px 0; color: var(--muted); }
.footer-inner { display:flex; justify-content:space-between; align-items:center; gap:20px; }
.footer-links { display:flex; flex-wrap:wrap; gap:18px; }
.cta-band { text-align:center; }
.process-step { display:grid; grid-template-columns:58px 1fr; gap:18px; align-items:start; }
.step-number { width:58px; height:58px; border-radius:18px; background: var(--primary); color:#08110b; font-weight:800; display:flex; align-items:center; justify-content:center; }
.plan-badge { display:inline-flex; align-items:center; justify-content:center; border:1px solid rgba(11,99,206,.45); color:#cde6ff; padding:8px 14px; border-radius:999px; margin-bottom:18px; }
.plan-badge-light { background: var(--bone); color:#0D0D0D; border-color: var(--bone); }
.section-heading-center { text-align:center; max-width:900px; margin:0 auto 34px; }
.center-lead { margin:0 auto; }
.pricing-grid { grid-template-columns: repeat(2,1fr); }
.price-card { padding: 30px; background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)); }
.price-card-featured { border-color: rgba(11,99,206,.7); box-shadow: 0 18px 56px rgba(11,99,206,.18); }
.price-card h3 { font-size: 22px; margin:0 0 16px; }
.price-line { display:flex; align-items:flex-end; gap:10px; margin-bottom:18px; }
.price { font-size: clamp(42px,6vw,64px); line-height:1; font-weight:800; letter-spacing:-.05em; color:var(--white); }
.price-period { font-size:16px; color:var(--muted); padding-bottom:8px; }
.plan-list { list-style:none; padding:22px 0 0; margin:22px 0 0; border-top:1px solid rgba(255,255,255,.14); display:grid; gap:14px; }
.plan-list li { position:relative; padding-left:20px; color: var(--text); line-height:1.6; }
.plan-list li::before { content:"✓"; position:absolute; left:0; top:0; color:#ffd277; font-weight:800; }
.plan-list li.plan-warning { color: #ffb7a7; }
.plan-list li.plan-warning::before { content:"✕"; color:#ff8f77; }
.plan-mini-tags { display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.plan-mini-tags span { padding: 12px 16px; border-radius:16px; background: rgba(255,255,255,.05); border:1px solid var(--border); color: var(--text); font-weight:600; }
.price-actions { display:grid; gap:12px; margin-top:24px; }
.plan-btn-outline { border-color: rgba(22,185,212,.5); color:#caeff5; background: transparent; }
.plan-btn-outline:hover { background: rgba(22,185,212,.09); }
.pricing-note { margin-top: 24px; text-align:center; }
.contact-layout { grid-template-columns: .95fr 1.05fr; }
.quote-box, .note-box { padding:24px; border-radius:24px; border:1px solid var(--border); background: rgba(255,255,255,0.03); }
.list-clean { display:grid; gap:14px; padding:0; margin:24px 0 0; list-style:none; }
.list-clean li { padding:18px; border-radius:20px; background: rgba(255,255,255,0.03); border:1px solid var(--border); }
.logo-lockup { display:flex; flex-direction:column; gap:2px; }
.hero-proof { margin-top: 28px; }
.proof-card strong { display:block; color:var(--white); font-size:18px; margin-bottom:6px; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #08111f;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(11,99,206,.30);
}
.whatsapp-float svg { width: 22px; height: 22px; }
.note-compact { font-size: 13px; color: var(--muted); margin-top: 14px; }
@media (max-width: 1024px) {
  .hero-grid, .contact-layout, .grid-3, .grid-4, .proof-grid, .grid-2, .table-row, .split-highlight, .pricing-grid { grid-template-columns:1fr; }
  .header-inner { flex-wrap:wrap; }
  .nav { order:3; width:100%; overflow-x:auto; padding-bottom:6px; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { padding: 54px 0 66px; }
  .panel, .card, .price-card { padding: 22px; }
  .form-grid { grid-template-columns:1fr; }
  .footer-inner { flex-direction:column; align-items:flex-start; }
  .nav { display:none; }
  .nav.open { display:flex; flex-direction:column; width:100%; align-items:flex-start; gap:14px; padding:18px 0 4px; }
  .mobile-toggle { display:inline-flex; border:1px solid var(--border); background:rgba(255,255,255,.03); color:var(--text); border-radius:12px; padding:10px 12px; cursor:pointer; }
  .brand img { width: 150px; }
  .whatsapp-float { right: 16px; bottom: 16px; padding: 13px 16px; }
  .whatsapp-float span { display:none; }
}


.hero .eyebrow, .section .eyebrow { text-shadow: 0 0 18px rgba(245,200,75,0.14); }
.hero .btn-primary, .price-actions .btn-primary, .step-number {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #08111f;
}
.brand-sub { color: rgba(244,232,204,.68); }
.plan-mini-tags span:nth-child(1) { border-color: rgba(11,99,206,.35); }
.plan-mini-tags span:nth-child(2) { border-color: rgba(22,185,212,.35); }
.price-card:nth-child(1) { border-color: rgba(245,200,75,.26); }
.price-card:nth-child(1) .plan-badge { border-color: rgba(245,200,75,.5); color: #ffe7a8; }
.price-card:nth-child(2) { border-color: rgba(11,99,206,.55); box-shadow: 0 18px 56px rgba(11,99,206,.12); }
.price-card:nth-child(3) { border-color: rgba(22,185,212,.36); }
.price-card:nth-child(4) { border-color: rgba(255,106,194,.32); }
.price-card:nth-child(4) .plan-badge { border-color: rgba(255,106,194,.55); color: #ffd0eb; }
.quote-box, .note-box { background: linear-gradient(180deg, rgba(244,232,204,0.035), rgba(255,255,255,0.02)); }
.whatsapp-float {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
}
.whatsapp-float:hover { transform: translateY(-1px); }
