:root {
  --orange: #ff5b00;
  --purple: #5a1fcf;
  --dark: #101018;
  --muted: #626575;
  --light: #f7f7fb;
  --white: #ffffff;
  --border: #e7e7ef;
  --shadow: 0 20px 60px rgba(16, 16, 24, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', Arial, sans-serif; color: var(--dark); line-height: 1.6; background: var(--white); }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand img { height: 58px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; margin: 0; padding: 0; font-weight: 700; font-size: 14px; }
.nav-links a:hover { color: var(--orange); }
.menu-toggle { display: none; border: 0; background: var(--orange); color: white; border-radius: 12px; font-size: 24px; padding: 8px 12px; }
.hero { padding: 90px 0; background: radial-gradient(circle at 20% 10%, rgba(255,91,0,.18), transparent 34%), radial-gradient(circle at 80% 20%, rgba(90,31,207,.16), transparent 30%), linear-gradient(135deg, #fff, #f7f7fb); }
.hero-grid, .split-grid, .contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-block; color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; margin-bottom: 12px; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; }
h1 { font-size: clamp(40px, 7vw, 68px); letter-spacing: -.05em; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; }
h3 { font-size: 20px; }
p { color: var(--muted); margin: 0 0 22px; }
.hero-content p { font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border-radius: 999px; font-weight: 800; border: 2px solid transparent; cursor: pointer; transition: .2s ease; }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 12px 30px rgba(255,91,0,.28); }
.btn-primary:hover { transform: translateY(-2px); background: #e95100; }
.btn-secondary { border-color: var(--purple); color: var(--purple); background: white; }
.btn-secondary:hover { background: var(--purple); color: white; }
.hero-card { background: white; border: 1px solid var(--border); border-radius: 34px; padding: 34px; box-shadow: var(--shadow); text-align: center; }
.hero-card img { max-width: 250px; width: 100%; margin-bottom: 20px; }
.hero-card h2 { color: var(--purple); }
.section { padding: 88px 0; }
.section-light { background: var(--light); }
.section-dark { background: linear-gradient(135deg, #14131f, #28135d); color: white; }
.section-dark p, .section-dark span { color: rgba(255,255,255,.76); }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.stats { padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-grid div { background: white; padding: 22px; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 8px 26px rgba(16,16,24,.06); }
.stats-grid strong { display: block; font-size: 22px; color: var(--purple); }
.stats-grid span { color: var(--muted); font-size: 14px; }
.visit-counter { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(255,91,0,.12), rgba(90,31,207,.10)), white !important; }
.visit-counter::after { content: ''; position: absolute; width: 92px; height: 92px; right: -34px; top: -34px; border-radius: 50%; background: rgba(255,91,0,.16); }
.visit-counter strong { font-size: 30px; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 26px; padding: 26px; box-shadow: 0 10px 32px rgba(16,16,24,.06); transition: .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card span { font-size: 34px; display: inline-block; margin-bottom: 18px; }
.feature-list { display: grid; gap: 16px; }
.feature-list div, .panel, .contact-form { background: white; color: var(--dark); border-radius: 26px; padding: 24px; box-shadow: 0 12px 38px rgba(0,0,0,.12); }
.feature-list strong { display: block; margin-bottom: 4px; color: var(--purple); }
.reverse { grid-template-columns: .9fr 1.1fr; }
.panel { border: 1px solid var(--border); }
.check-list { padding: 0; list-style: none; margin: 22px 0 0; }
.check-list li { margin: 10px 0; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--orange); font-weight: 900; margin-right: 10px; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: white; border: 1px solid var(--border); border-radius: 34px; padding: 42px; box-shadow: var(--shadow); }
.contact-info { margin-top: 26px; }
.contact-info p { margin-bottom: 10px; }
.contact-info a { color: var(--purple); font-weight: 800; }
.contact-form { display: grid; gap: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); }
label { display: grid; gap: 8px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; font: inherit; outline: none; background: #fbfbfd; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,91,0,.12); }
.footer { padding: 36px 0; background: var(--dark); color: white; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer img { width: 132px; background: white; border-radius: 12px; padding: 8px; }
.footer p { color: rgba(255,255,255,.72); margin: 8px 0 0; }
@media (max-width: 960px) {
  .hero-grid, .split-grid, .contact-grid, .reverse { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box, .footer-grid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .stats-grid { grid-template-columns: 1fr; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; background: white; border-bottom: 1px solid var(--border); padding: 22px 32px; }
  .nav-links.active { display: flex; }
  .hero { padding: 64px 0; }
  .section { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .brand img { height: 50px; }
}
