:root {
  --red: #e51b2d;
  --red-dark: #ba1020;
  --purple: #3b258e;
  --purple-dark: #271767;
  --purple-soft: #ece8fa;
  --ink: #181429;
  --muted: #6d687c;
  --bg: #ffffff;
  --soft: #f8f7fb;
  --soft-2: #f2eff8;
  --line: #e8e4ef;
  --shadow: 0 24px 70px rgba(41, 29, 88, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--purple); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 108px 0; }

.topline { background: var(--purple-dark); color: #fff; font-size: 12px; }
.topline-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topline p { margin: 0; display: flex; align-items: center; gap: 9px; }
.topline a { color: #fff; opacity: .86; }
.topline a:hover { opacity: 1; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(229, 27, 45, .16); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(232,228,239,.9); backdrop-filter: blur(15px); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 206px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.nav-cta) { font-size: 13px; font-weight: 750; color: #4f495f; position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -8px; background: linear-gradient(90deg,var(--red),var(--purple)); transition: right .2s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--purple); }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { background: var(--purple); color: #fff; padding: 11px 18px; border-radius: 10px; font-size: 12px; font-weight: 800; box-shadow: 0 10px 25px rgba(59,37,142,.17); transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--purple-dark); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--purple); display: block; margin: 5px 0; border-radius: 3px; }

.hero { position: relative; overflow: hidden; padding-top: 86px; padding-bottom: 90px; background: radial-gradient(circle at 82% 20%, rgba(59,37,142,.08), transparent 33%), radial-gradient(circle at 72% 78%, rgba(229,27,45,.06), transparent 28%), #fff; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(59,37,142,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(59,37,142,.035) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to right, transparent 0, transparent 48%, #000 80%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 74px; align-items: center; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--purple); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.eyebrow::before, .section-kicker::before { content: ""; width: 28px; height: 3px; background: var(--red); border-radius: 4px; }
.hero h1 { margin: 19px 0 22px; max-width: 680px; font-size: clamp(48px, 5.4vw, 76px); line-height: .99; letter-spacing: -.052em; font-weight: 850; }
.hero h1 span, .section-heading h2 span, .hardware-copy h2 span, .about-title h2 span, .contact-copy h2 span, .faq-title h2 span, .process-section h2 span { color: var(--purple); }
.hero-lead { max-width: 650px; font-size: 17px; line-height: 1.75; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 50px; padding: 0 21px; border: 0; border-radius: 11px; font-weight: 850; font-size: 12px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(110deg, var(--red) 0 8%, var(--purple) 42%, var(--purple-dark) 100%); box-shadow: 0 15px 35px rgba(59,37,142,.22); }
.btn-primary:hover { box-shadow: 0 20px 40px rgba(59,37,142,.28); }
.btn-secondary { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.btn-secondary:hover { border-color: #d2cadf; box-shadow: 0 12px 30px rgba(35,23,80,.07); }
.hero-points { margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hero-points > div { display: flex; gap: 11px; align-items: flex-start; }
.hero-points b { color: var(--red); font-size: 10px; letter-spacing: .08em; margin-top: 2px; }
.hero-points strong, .hero-points small { display: block; }
.hero-points strong { font-size: 12px; }
.hero-points small { color: #918b9e; font-size: 10px; margin-top: 2px; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(59,37,142,.14); }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 350px; height: 350px; border-color: rgba(229,27,45,.13); }
.hero-panel { width: min(100%, 445px); position: relative; z-index: 2; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, #472ba0, #2d1b76 62%, #211454); color: #fff; box-shadow: 0 40px 90px rgba(38,20,94,.28); border: 1px solid rgba(255,255,255,.13); transform: rotate(1.5deg); }
.hero-panel::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; top: -90px; right: -80px; background: rgba(229,27,45,.43); filter: blur(12px); }
.hero-panel::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.panel-top, .panel-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.67); }
.panel-top { border-bottom: 1px solid rgba(255,255,255,.11); }
.panel-top i { width: 8px; height: 8px; border-radius: 50%; background: #ff5a68; box-shadow: 0 0 0 5px rgba(255,90,104,.14); }
.panel-main { position: relative; z-index: 2; padding: 34px 28px 30px; }
.panel-intro { max-width: 330px; }
.panel-kicker { color: #c9c0ef; font-size: 9px; letter-spacing: .18em; font-weight: 850; }
.panel-intro strong { display: block; font-size: 30px; line-height: 1.07; margin: 8px 0 9px; }
.panel-intro p { color: rgba(255,255,255,.66); font-size: 12px; margin: 0; }
.service-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
.service-mini { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.075); border-radius: 14px; padding: 15px; backdrop-filter: blur(8px); }
.service-mini > span { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--purple-dark); background: #fff; font-size: 9px; font-weight: 950; margin-bottom: 15px; }
.service-mini b, .service-mini small { display: block; }
.service-mini b { font-size: 12px; }
.service-mini small { color: rgba(255,255,255,.56); font-size: 9px; margin-top: 2px; }
.panel-bottom { justify-content: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.11); }
.panel-bottom .line { height: 1px; flex: 1; background: rgba(255,255,255,.13); }

.expertise-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--soft); }
.expertise-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #766f83; font-size: 11px; font-weight: 800; }
.expertise-inner i { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--purple)); }

.services-section { background: #fff; }
.section-heading { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.section-heading.compact { grid-template-columns: 1fr; margin-bottom: 42px; }
.section-heading h2, .hardware-copy h2, .about-title h2, .contact-copy h2, .faq-title h2, .process-section h2 { margin: 12px 0 0; font-size: clamp(36px, 4.1vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p { margin: 0; color: var(--muted); max-width: 540px; font-size: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 330px; padding: 31px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; position: relative; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { z-index: 2; transform: translateY(-5px); box-shadow: 0 22px 55px rgba(46,30,92,.10); border-color: #dcd4e9; }
.service-card-main { background: linear-gradient(155deg,#fff,#faf8fd); }
.service-icon { width: 50px; height: 50px; border: 1px solid #dfd9eb; border-radius: 13px; display: grid; place-items: center; color: var(--purple); background: var(--soft); font-size: 11px; font-weight: 950; margin-bottom: 31px; }
.service-card-main .service-icon { background: var(--purple); border-color: var(--purple); color: #fff; box-shadow: 8px 8px 0 rgba(229,27,45,.13); }
.card-tag { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.service-card h3 { margin: 9px 0 12px; font-size: 20px; letter-spacing: -.02em; }
.service-card p { color: var(--muted); font-size: 13px; margin: 0; }
.service-card a { position: absolute; left: 31px; bottom: 28px; color: var(--purple); font-size: 11px; font-weight: 900; }
.service-card a span { color: var(--red); margin-left: 5px; }

.pro-section { position: relative; overflow: hidden; background: linear-gradient(120deg, #25145d, #3b258e 62%, #472aa2); color: #fff; }
.pro-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 42px 42px; }
.pro-decoration { position: absolute; border-radius: 50%; filter: blur(4px); }
.pro-decoration-one { width: 340px; height: 340px; right: -100px; top: -120px; background: rgba(229,27,45,.34); }
.pro-decoration-two { width: 260px; height: 260px; left: -100px; bottom: -120px; border: 50px solid rgba(255,255,255,.035); }
.pro-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.section-kicker-light { color: #d7d0f4; }
.section-kicker-light::before { background: #ff5362; }
.pro-copy h2 { font-size: clamp(38px,4.6vw,60px); line-height: 1.06; letter-spacing: -.045em; margin: 14px 0 22px; }
.pro-copy h2 span { color: #ff6673; }
.pro-copy > p { color: rgba(255,255,255,.71); max-width: 570px; margin: 0 0 34px; }
.btn-light { background: #fff; color: var(--purple-dark); box-shadow: 0 18px 40px rgba(20,8,56,.2); }
.pro-list { border-top: 1px solid rgba(255,255,255,.18); }
.pro-list article { display: grid; grid-template-columns: 55px 1fr; gap: 17px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.pro-list article > b { color: #ff6c78; font-size: 10px; letter-spacing: .12em; }
.pro-list strong { font-size: 16px; }
.pro-list p { margin: 4px 0 0; font-size: 12px; color: rgba(255,255,255,.62); }

.hardware-section { background: var(--soft); }
.hardware-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.hardware-visual { min-height: 530px; position: relative; display: grid; place-items: center; }
.hardware-visual::before { content: ""; width: 410px; height: 410px; border-radius: 50%; position: absolute; background: linear-gradient(145deg, rgba(229,27,45,.09), rgba(59,37,142,.13)); }
.device-screen { width: 410px; height: 300px; position: relative; z-index: 2; border: 9px solid #221a39; border-radius: 18px; background: #fff; box-shadow: 0 30px 65px rgba(33,24,57,.18); overflow: hidden; }
.device-toolbar { height: 31px; display: flex; gap: 6px; align-items: center; padding: 0 12px; background: #f0edf6; border-bottom: 1px solid #e1dce9; }
.device-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: #cfc7dd; }
.device-toolbar i:first-child { background: var(--red); }
.device-content { padding: 35px; }
.device-label { color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.device-content strong { display: block; margin-top: 8px; max-width: 285px; font-size: 24px; line-height: 1.16; color: var(--purple-dark); }
.device-lines { margin-top: 24px; display: grid; gap: 8px; }
.device-lines i { display: block; height: 5px; border-radius: 4px; background: #ece8f3; }
.device-lines i:nth-child(1) { width: 92%; }
.device-lines i:nth-child(2) { width: 70%; }
.device-lines i:nth-child(3) { width: 82%; }
.device-lines i:nth-child(4) { width: 48%; }
.device-chip-row { display: flex; gap: 7px; margin-top: 25px; }
.device-chip-row span { font-size: 8px; font-weight: 900; color: var(--purple); background: var(--purple-soft); border-radius: 5px; padding: 4px 7px; }
.device-base { position: absolute; z-index: 1; width: 470px; height: 18px; border-radius: 0 0 60px 60px; background: #28203e; bottom: 102px; }
.floating-label { position: absolute; z-index: 3; color: #fff; font-weight: 850; font-size: 10px; padding: 10px 13px; border-radius: 9px; box-shadow: 0 13px 30px rgba(30,20,60,.16); }
.label-red { background: var(--red); top: 92px; left: 24px; transform: rotate(-4deg); }
.label-purple { background: var(--purple); right: 0; bottom: 125px; transform: rotate(3deg); }
.hardware-copy > p { color: var(--muted); margin: 20px 0 26px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; }
.feature-list li { font-size: 12px; font-weight: 750; display: flex; align-items: center; gap: 8px; }
.feature-list span { width: 20px; height: 20px; border-radius: 50%; background: var(--purple-soft); color: var(--purple); display: grid; place-items: center; font-size: 9px; }
.text-link { color: var(--purple); font-size: 12px; font-weight: 900; }
.text-link span { color: var(--red); margin-left: 7px; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.process-step { padding: 34px 35px 4px 0; margin-right: 35px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step > span { color: var(--red); font-size: 10px; font-weight: 950; letter-spacing: .14em; }
.process-step h3 { margin: 9px 0 9px; font-size: 20px; }
.process-step p { color: var(--muted); font-size: 12px; margin: 0; }

.about-section { border-top: 1px solid var(--line); background: #fff; }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 95px; }
.about-lead { color: var(--ink) !important; font-size: 21px !important; line-height: 1.5; font-weight: 650; }
.about-copy > p { color: var(--muted); font-size: 14px; }
.values-grid { margin-top: 31px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values-grid > div { min-height: 120px; padding: 21px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid b { color: var(--red); font-size: 9px; letter-spacing: .13em; }
.values-grid strong, .values-grid small { display: block; }
.values-grid strong { font-size: 14px; margin-top: 7px; }
.values-grid small { color: var(--muted); font-size: 10px; margin-top: 3px; }

.contact-section { background: linear-gradient(180deg,#f6f3fa,#fff); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.contact-copy > p { color: var(--muted); max-width: 500px; margin: 20px 0 34px; }
.contact-item { display: flex; align-items: flex-start; gap: 13px; margin: 18px 0; }
.contact-item > span { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--purple); font-weight: 900; box-shadow: 7px 7px 0 rgba(229,27,45,.10); }
.contact-item small, .contact-item strong { display: block; }
.contact-item small { color: #96909f; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.contact-item strong { color: var(--ink); font-size: 13px; margin-top: 2px; }
.contact-item p { color: var(--muted); font-size: 10px; margin: 2px 0 0; }
.contact-form { background: #fff; border: 1px solid #e3deeb; border-radius: 20px; padding: 30px; box-shadow: var(--shadow); }
.form-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.form-title strong { font-size: 18px; }
.form-title span { font-size: 9px; color: #9a94a2; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; color: #5f5969; font-size: 10px; font-weight: 850; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid #ded8e8; border-radius: 9px; background: #fcfbfd; color: var(--ink); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #9a8ccf; box-shadow: 0 0 0 3px rgba(59,37,142,.07); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 5px; }
.form-footer p { margin: 0; max-width: 380px; font-size: 9px; line-height: 1.55; color: #9892a1; }
.form-footer .btn { white-space: nowrap; }
.form-status { min-height: 20px; margin-top: 13px; font-size: 11px; color: var(--purple); }
.form-status.success { color: #23864b; }
.form-status.error { color: #c51e2e; }

.faq-section { background: #fff; border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; font-size: 13px; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 27px; height: 27px; flex: 0 0 27px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-soft); color: var(--purple); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 42px 21px 0; color: var(--muted); font-size: 12px; }

.site-footer { background: #fff; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 65px; padding: 54px 0 44px; }
.footer-brand img { width: 180px; height: auto; }
.footer-brand p { max-width: 350px; margin: 13px 0 0; color: var(--muted); font-size: 11px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { margin-bottom: 5px; color: var(--purple); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { color: #77707f; font-size: 10px; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { min-height: 64px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #928c98; font-size: 9px; }
.footer-bottom a { color: var(--purple); font-weight: 850; }

.legal-page { min-height: 100vh; background: var(--soft); }
.legal-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); }
.legal-nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.legal-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.legal-nav img { width: 145px; height: auto; max-height: 52px; object-fit: contain; }
.legal-back { font-size: 11px; font-weight: 850; color: var(--purple); white-space: nowrap; }
.legal-back:hover { color: var(--red); }
.legal-content { max-width: 900px; margin: 0 auto; padding: 72px 20px 100px; }
.legal-content h1 { font-size: clamp(38px,5vw,58px); line-height: 1.05; letter-spacing: -.04em; margin: 14px 0 8px; }
.legal-updated { margin: 0 0 34px; color: #9992a3 !important; font-size: 11px !important; }
.legal-section { margin-top: 34px; }
.legal-content h2 { margin: 0 0 11px; font-size: 19px; color: var(--purple); }
.legal-content p, .legal-content li { color: var(--muted); font-size: 13px; line-height: 1.72; }
.legal-content a { color: var(--purple); font-weight: 700; }
.legal-content a:hover { color: var(--red); }
.legal-content ul { padding-left: 21px; margin: 11px 0 0; }
.legal-content li + li { margin-top: 5px; }
.legal-card { margin: 15px 0; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; box-shadow: 0 12px 35px rgba(37,24,80,.055); }
.legal-card p { margin: 0; }
.legal-note { border-left: 4px solid var(--red); background: #fff; padding: 17px 20px; border-radius: 0 10px 10px 0; box-shadow: 0 10px 30px rgba(37,24,80,.06); }
.error-content { min-height: calc(100vh - 75px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 55px; padding-bottom: 110px; }
.error-content h1 { margin-bottom: 14px; }
.error-content > p { max-width: 560px; }
.error-button { color: #fff !important; margin-top: 4px; }
.error-button:hover { color: #fff !important; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .1s; }

@media (max-width: 1000px) {
  .hero-grid, .pro-grid, .hardware-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 500px; }
  .section-heading, .faq-grid { grid-template-columns: 1fr; gap: 25px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pro-copy { max-width: 720px; }
  .hardware-visual { order: 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .main-nav { gap: 19px; }
}

@media (max-width: 740px) {
  .legal-nav { min-height: 68px; }
  .legal-nav img { width: 132px; max-height: 48px; }
  .legal-back { font-size: 10px; }
  .legal-content { padding: 56px 16px 78px; }
  .legal-content h1 { font-size: 40px; }
  .legal-card { padding: 17px 18px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .topline-inner { min-height: 33px; justify-content: center; }
  .topline-inner a { display: none; }
  .nav-wrap { height: 75px; }
  .brand img { width: 168px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 75px; left: 14px; right: 14px; padding: 10px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 13px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-points { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 440px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 285px; height: 285px; }
  .hero-panel { width: min(100%,390px); }
  .panel-main { padding: 28px 22px 25px; }
  .service-mini-grid { grid-template-columns: 1fr 1fr; }
  .expertise-strip { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .pro-list article { grid-template-columns: 42px 1fr; }
  .hardware-visual { min-height: 410px; transform: scale(.82); transform-origin: center; margin: -35px 0; }
  .feature-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); margin-right: 0; padding: 25px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 21px; }
  .form-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 20px 0; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 42px; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-visual { min-height: 405px; }
  .service-mini { padding: 12px; }
  .device-screen { width: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .main-nav a::after { transition: none; }
}
