
:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #5b677a;
  --soft: #f5f8fc;
  --soft2: #edf4ff;
  --dark: #0f172a;
  --brand: #155eef;
  --brand2: #0f766e;
  --line: #dce5ef;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, .08);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: absolute; left: -999px; top: 8px; background: #fff; color: #000; padding: 8px 12px; z-index: 100;
}
.skip-link:focus { left: 8px; }

.topbar { background: var(--dark); color: #e8eef8; font-size: .94rem; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.topbar strong { color: #fff; }
.topbar a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.3rem; font-weight: 950; letter-spacing: -.04em; }
.logo { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(21,94,239,.22); font-weight: 950; }
nav { display: flex; align-items: center; gap: 4px; color: var(--muted); font-size: .94rem; font-weight: 750; }
nav a { padding: 10px 11px; border-radius: 999px; }
nav a:hover, nav a.active { background: var(--soft); color: var(--text); }

.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; font-weight: 900; transition: .16s ease; white-space: nowrap;
}
.nav-cta { min-height: 44px; padding: 0 17px; color: #fff; background: var(--dark); }
.nav-cta:hover, .btn:hover { transform: translateY(-1px); }

.hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(21,94,239,.12), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(15,118,110,.10), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; padding: 88px 0 82px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 999px; color: var(--brand2); background: #eaf8f5; border: 1px solid #ccece5; font-weight: 850; font-size: .92rem; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brand2); }
h1 { margin: 22px 0 0; max-width: 860px; font-size: clamp(2.7rem, 5.8vw, 5.8rem); line-height: .96; letter-spacing: -.08em; }
.accent { color: var(--brand); }
.lead { max-width: 730px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { min-height: 54px; padding: 0 22px; border: 1px solid transparent; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 18px 34px rgba(21,94,239,.22); }
.btn-primary:hover { background: #0f3eaa; }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--line); box-shadow: 0 10px 28px rgba(15,23,42,.06); }

.quick-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; color: var(--muted); font-size: .96rem; }
.quick-points span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.quick-points span::before { content: "✓"; color: var(--brand2); font-weight: 950; }

.hero-card, .card, .service-card, .example-card, .price-card, .faq-item, .form-card, .mini-card {
  background: var(--card); border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(15,23,42,.05);
}
.hero-card { padding: 28px; border-radius: 30px; box-shadow: var(--shadow); }
.hero-card h2 { margin: 0 0 8px; font-size: 1.45rem; letter-spacing: -.04em; }
.hero-card p, .card p, .service-card p, .example-card p, .price-card p, .faq-item p, .mini-card p { margin: 0; color: var(--muted); }

.deliverables { display: grid; gap: 12px; margin-top: 22px; }
.deliverable { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; padding: 15px; border-radius: 16px; background: var(--soft); border: 1px solid var(--line); }
.deliverable-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: #fff; box-shadow: 0 8px 18px rgba(15,23,42,.06); }
.deliverable strong { display: block; margin-bottom: 2px; }
.deliverable small { color: var(--muted); font-size: .93rem; }

section { padding: 78px 0; }
.section-title { max-width: 820px; margin-bottom: 34px; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker { margin-bottom: 10px; color: var(--brand); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
h2 { margin: 0; font-size: clamp(2rem, 4.2vw, 3.85rem); line-height: 1.05; letter-spacing: -.065em; }
.section-title p { margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; }
.bg-soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card, .example-card, .price-card, .faq-item, .card, .mini-card { padding: 25px; border-radius: var(--radius); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 18px; background: var(--soft2); font-size: 1.35rem; }
.service-card h3, .example-card h3, .price-card h3, .card h3, .mini-card h3 { margin: 0 0 9px; font-size: 1.22rem; letter-spacing: -.035em; line-height: 1.2; }

.trust-panel { padding: 32px; border-radius: 28px; background: var(--dark); color: #fff; box-shadow: var(--shadow); }
.trust-panel h2 { color: #fff; }
.trust-panel p { color: #cbd5e1; margin: 18px 0 0; }
.trust-list { display: grid; gap: 14px; }
.trust-item { padding: 18px; border-radius: 18px; background: var(--soft); border: 1px solid var(--line); }
.trust-item strong { display: block; margin-bottom: 4px; }
.trust-item span { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { padding: 23px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step-num { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; margin-bottom: 17px; background: var(--brand); color: #fff; font-weight: 950; }
.step h3 { margin: 0 0 8px; font-size: 1.12rem; letter-spacing: -.03em; }
.step p { margin: 0; color: var(--muted); font-size: .96rem; }

.label { display: inline-flex; padding: 6px 10px; border-radius: 999px; margin-bottom: 15px; background: var(--soft2); color: var(--brand); font-size: .82rem; font-weight: 950; }
.price-card.featured { border: 2px solid var(--brand); box-shadow: 0 20px 54px rgba(21,94,239,.13); transform: translateY(-8px); }
.price { margin: 20px 0 4px; font-size: 2.05rem; font-weight: 950; line-height: 1; letter-spacing: -.06em; }
.price small { font-size: .95rem; color: var(--muted); letter-spacing: 0; font-weight: 750; }
.price-card ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 11px; color: var(--muted); }
.price-card li { display: flex; gap: 9px; }
.price-card li::before { content: "✓"; color: var(--brand2); font-weight: 950; }

.page-hero { padding: 72px 0; background: radial-gradient(circle at 14% 14%, rgba(21,94,239,.10), transparent 26rem), linear-gradient(180deg, #fff 0%, #f7faff 100%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 940px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.form-card { padding: 28px; border-radius: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-weight: 800; font-size: .94rem; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--text); background: #fff; }
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(21,94,239,.14); border-color: var(--brand); }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-message { margin-top: 14px; font-weight: 800; }
.form-message.ok { color: var(--brand2); }
.form-message.error { color: #b42318; }

.cta { padding: 88px 0; }
.cta-box { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; padding: clamp(28px,5vw,56px); border-radius: 32px; background: var(--dark); color: #fff; box-shadow: var(--shadow); }
.cta-box h2 { color: #fff; }
.cta-box p { color: #cbd5e1; margin: 18px 0 0; font-size: 1.1rem; }
.contact-card { padding: 23px; border-radius: 22px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); }
.contact-card strong { display: block; margin-bottom: 12px; font-size: 1.14rem; }
.contact-card a.email { display: block; color: #fff; font-weight: 950; font-size: 1.12rem; text-decoration: underline; text-underline-offset: 5px; margin-bottom: 14px; word-break: break-word; }
.contact-card small { color: #cbd5e1; }

footer { padding: 32px 0; border-top: 1px solid var(--line); color: var(--muted); background: #fff; font-size: .95rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--brand); }

@media (max-width: 1080px) { .grid-4, .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 920px) { .hero-grid, .grid-2, .contact-grid, .cta-box { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } nav { display: none; } .price-card.featured { transform: none; } }
@media (max-width: 680px) { .container { width: min(100% - 28px, var(--max)); } .topbar-inner { padding: 8px 0; } .nav { min-height: 68px; } .nav-cta { display: none; } .hero-grid { padding: 58px 0 60px; } h1 { font-size: clamp(2.55rem,14vw,4.2rem); } .hero-actions .btn { width: 100%; } section { padding: 56px 0; } .grid-4, .steps, .form-row { grid-template-columns: 1fr; } }
