
:root {
  --bg: #f5f8fe;
  --white: #ffffff;
  --text: #10213b;
  --muted: #5f6f88;
  --border: rgba(18, 44, 88, 0.10);
  --blue-900: #0d47a1;
  --blue-700: #1666d1;
  --blue-500: #1e88e5;
  --green: #00c853;
  --green-dark: #00a444;
  --purple: #6f48ff;
  --dark: #0f172a;
  --shadow: 0 20px 60px rgba(13, 37, 76, 0.12);
  --shadow-soft: 0 12px 30px rgba(13, 37, 76, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(9, 22, 47, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: auto;
  height: clamp(52px, 5vw, 78px);
  object-fit: contain;
}
.desktop-nav, .desktop-actions { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.96rem;
}
.desktop-nav a:hover { color: #ffffff; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: white;
  margin: 5px 0;
}
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(9, 22, 47, 0.94);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  padding: 18px 0 22px;
  display: grid;
  gap: 14px;
}
.mobile-menu a:not(.btn) {
  color: white;
  font-weight: 600;
  padding: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: .22s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green), #1ce177); color: white; box-shadow: 0 12px 30px rgba(0, 200, 83, 0.28); }
.btn-primary:hover { background: linear-gradient(135deg, var(--green-dark), #10cc65); }
.btn-secondary { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.22); }
.btn-secondary:hover { background: rgba(255,255,255,0.20); }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.26); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--dark); color: white; }
.btn-purple { background: linear-gradient(135deg, var(--purple), #ff5fcf); color: white; }
.btn-large { min-height: 58px; padding-inline: 28px; font-size: 1rem; }
.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #0d47a1 0%, #1e88e5 58%, #61b5ff 100%);
}
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .38;
}
.hero-bg::before {
  width: 320px; height: 320px; right: -80px; top: 70px;
  background: rgba(0, 200, 83, 0.45);
}
.hero-bg::after {
  width: 280px; height: 280px; left: -80px; bottom: -60px;
  background: rgba(255,255,255,0.18);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 54px 0 64px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: .93rem;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
}
.hero-text {
  color: rgba(255,255,255,0.92);
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 32px;
}
.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.mini-card strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.mini-card span { color: rgba(255,255,255,0.84); font-size: .92rem; }
.hero-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(5, 20, 46, 0.28);
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-image { width: 100%; height: clamp(420px, 64vw, 640px); object-fit: cover; }
.floating-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: .95rem;
}
.note-top { top: 18px; left: 18px; }
.note-bottom { right: 18px; bottom: 18px; max-width: 240px; }

.section { padding: 92px 0; }
.section-light { background: white; }
.section-soft { background: linear-gradient(180deg, #f7f3ff 0%, #ffffff 100%); }
.benefits-section { background: linear-gradient(135deg, #0d47a1 0%, #16386e 100%); color: white; }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; max-width: 860px; margin-inline: auto; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.06; margin: 0 0 14px; letter-spacing: -0.03em; }
.section-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin: 0; }
.section-head.light p, .section-head.light h2 { color: white; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(30,136,229,0.10);
  color: var(--blue-700);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.light { background: rgba(255,255,255,0.14); color: white; }
.eyebrow.purple { background: rgba(111,72,255,0.12); color: #6f48ff; }

.steps-grid, .specialties-grid, .pricing-grid, .benefits-grid { display: grid; gap: 22px; }
.steps-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.specialties-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; }
.benefits-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

.card, .specialty-card, .price-card, .benefit-card, .contact-panel, .cta-panel, .app-box, .info-banner {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.card, .specialty-card, .benefit-card { padding: 28px; }
.card h3, .specialty-card h3, .benefit-card h3, .contact-panel h2, .cta-panel h3 { margin-top: 0; }
.step-number {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,136,229,0.13), rgba(0,200,83,0.14));
  color: var(--blue-700); font-weight: 800; margin-bottom: 18px;
}
.card p, .specialty-card p, .benefit-card p { color: var(--muted); line-height: 1.75; margin-bottom: 0; }
.info-banner { padding: 22px 24px; margin-bottom: 22px; }
.info-banner strong { color: var(--blue-900); }

.split-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.rounded-image {
  width: 100%; border-radius: 32px; object-fit: cover; box-shadow: var(--shadow);
}
.content-panel h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin: 0 0 12px; }
.content-panel p { color: var(--muted); line-height: 1.75; font-size: 1.02rem; }
.check-list, .feature-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li, .feature-list li {
  position: relative; padding-left: 28px; margin: 12px 0; color: var(--text); line-height: 1.65;
}
.check-list li::before, .feature-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800;
}

.price-card { padding: 30px; position: relative; display: flex; flex-direction: column; }
.price-card.featured {
  border: 2px solid rgba(30,136,229,0.28);
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(14, 48, 102, 0.16);
}
.plan-tag {
  display: inline-flex; align-self: flex-start; padding: 8px 12px; border-radius: 999px; font-size: .8rem; font-weight: 800; margin-bottom: 18px;
}
.plan-tag.neutral { background: #eef2f7; color: #475569; }
.plan-tag.blue { background: rgba(30,136,229,0.12); color: var(--blue-700); }
.plan-tag.green { background: rgba(0,200,83,0.12); color: var(--green-dark); }
.price-card h3 { font-size: 1.6rem; margin: 0 0 8px; }
.plan-subtitle { color: var(--muted); line-height: 1.6; min-height: 52px; }
.price-line { display: flex; align-items: flex-end; gap: 8px; margin: 22px 0 10px; }
.price-line span { font-size: 1.05rem; color: #64748b; font-weight: 700; }
.price-line strong { font-size: 3rem; line-height: 1; letter-spacing: -0.04em; }
.price-line small { color: #64748b; font-size: .95rem; margin-bottom: 6px; }
.price-card .btn { margin-top: auto; }

.benefits-section .benefit-card, .benefits-section .app-box {
  background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.10); color: white;
}
.benefits-section .benefit-card p { color: rgba(255,255,255,0.80); }
.app-box {
  margin-top: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: center;
}
.app-copy h3 { font-size: 1.75rem; margin: 0 0 12px; }
.app-copy p { color: rgba(255,255,255,0.80); line-height: 1.7; }
.app-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.app-image {
  max-height: 420px; margin-inline: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}

.contact-panel, .cta-panel { padding: 32px; }
.contact-panel p, .cta-panel p { color: var(--muted); line-height: 1.7; }
.contact-list { display: grid; gap: 14px; margin-top: 22px; }
.contact-item {
  display: block; padding: 18px 20px; border-radius: 18px; background: #f8fbff; border: 1px solid rgba(18,44,88,0.08);
}
.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item span { color: var(--muted); word-break: break-word; }
.cta-stack { display: grid; gap: 12px; margin-top: 24px; }

.site-footer { background: #0b1527; color: white; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 26px; padding: 48px 0;
}
.footer-logo { height: 62px; width: auto; margin-bottom: 12px; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,0.76); }
.site-footer h4 { margin-top: 0; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.62); font-size: .92rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1080px) {
  .desktop-nav, .desktop-actions { display: none; }
  .menu-toggle { display: inline-block; }
  .hero-grid, .split-grid, .contact-grid, .app-box { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 36px; }
  .hero-media { order: -1; }
  .steps-grid, .specialties-grid, .pricing-grid, .benefits-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 78px; }
  .brand-logo { height: 58px; }
  .hero-grid { gap: 26px; padding: 26px 0 54px; }
  .hero h1 { margin-top: 14px; }
  .hero-text { font-size: 1rem; }
  .hero-actions, .app-actions { flex-direction: column; }
  .hero-actions .btn, .app-actions .btn { width: 100%; }
  .hero-badges, .steps-grid, .specialties-grid, .pricing-grid, .benefits-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-image { height: 360px; }
  .floating-note { font-size: .82rem; padding: 10px 12px; }
  .note-bottom { max-width: 190px; }
  .card, .specialty-card, .benefit-card, .price-card, .contact-panel, .cta-panel, .app-box { border-radius: 24px; }
  .content-panel h2, .section-head h2 { letter-spacing: -0.03em; }
  .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 14px 0; }
}
