:root {
  --accent: #79c92b;
  --accent-dark: #5fae1e;
  --dark: #18212a;
  --dark-soft: #27333e;
  --light: #f5f7f5;
  --white: #ffffff;
  --muted: #66727c;
  --line: rgba(24, 33, 42, 0.11);
  --shadow-sm: 0 12px 35px rgba(19, 30, 38, 0.08);
  --shadow-lg: 0 32px 80px rgba(18, 28, 36, 0.15);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--dark);
  background: var(--light);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.page-noise {
  position: fixed; inset: 0; z-index: -1; opacity: .22; pointer-events: none;
  background-image: radial-gradient(rgba(24,33,42,.15) .5px, transparent .5px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-height);
  display: flex; align-items: center;
  background: rgba(245,247,245,.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 12px 30px rgba(24,33,42,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; min-width: 220px; }
.brand img { width: 244px; height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav a {
  padding: 11px 14px; border-radius: 999px; font-weight: 650; font-size: 14px;
  color: #42505a; transition: .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--dark); background: rgba(24,33,42,.06); }
.main-nav .nav-cta { color: var(--white); background: var(--dark); padding-inline: 20px; margin-left: 5px; }
.main-nav .nav-cta:hover, .main-nav .nav-cta.active { background: var(--accent); color: var(--dark); }
.menu-toggle { display: none; width: 45px; height: 45px; border: 0; border-radius: 14px; background: var(--dark); padding: 12px; }
.menu-toggle span { display: block; height: 2px; border-radius: 9px; background: #fff; margin: 5px 0; transition: .2s; }

main { min-height: 68vh; }
.loading-screen { min-height: 62vh; display: grid; place-content: center; text-align: center; color: var(--muted); }
.loading-mark { width: 90px; height: 90px; margin: 0 auto 18px; border-radius: 28px; background: white; box-shadow: var(--shadow-sm); padding: 12px; animation: pulse 1.5s infinite; }
.loading-mark img { width: 100%; height: 100%; object-fit: contain; }
@keyframes pulse { 50% { transform: translateY(-5px); } }

.hero { position: relative; padding: 85px 0 94px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 580px; height: 580px; border-radius: 50%;
  right: -230px; top: -240px; background: color-mix(in srgb, var(--accent) 18%, transparent); filter: blur(4px);
}
.hero::after {
  content: ""; position: absolute; width: 350px; height: 350px; left: -230px; bottom: -260px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent); border-radius: 50%; box-shadow: 0 0 0 70px rgba(121,201,43,.04), 0 0 0 140px rgba(121,201,43,.025);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 850; color: var(--accent-dark); margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(48px, 6.4vw, 82px); line-height: .98; letter-spacing: -.055em; margin-bottom: 26px; max-width: 800px; }
h1 .accent-word, .accent-text { color: var(--accent-dark); }
.hero-copy > p { max-width: 670px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; padding: 14px 23px; font-weight: 800; line-height: 1.1; transition: .22s ease; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--dark); box-shadow: 0 15px 35px rgba(121,201,43,.23); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-soft); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--accent); background: #fff; transform: translateY(-2px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 28px; color: #52606a; font-size: 14px; font-weight: 650; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "✓"; color: var(--accent-dark); font-weight: 900; }

.hero-visual { position: relative; min-height: 555px; }
.browser-card {
  position: absolute; inset: 25px 0 5px 10px; border-radius: 30px; background: #fff; border: 1px solid rgba(24,33,42,.09);
  box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(1.2deg);
}
.browser-top { height: 54px; display: flex; align-items: center; gap: 8px; padding: 0 18px; border-bottom: 1px solid var(--line); background: #fbfcfb; }
.browser-top i { width: 9px; height: 9px; border-radius: 50%; background: #d3d8dc; }
.browser-top i:nth-child(1) { background: var(--accent); }
.browser-address { margin-left: 12px; height: 26px; flex: 1; max-width: 210px; border-radius: 999px; background: #edf0ee; }
.browser-body { padding: 28px; background: linear-gradient(145deg,#fff,#f5f7f5); min-height: 500px; }
.visual-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.visual-logo { display: flex; gap: 9px; align-items: center; font-weight: 850; }
.visual-logo img { width: 42px; height: 35px; object-fit: contain; }
.visual-menu { display: flex; gap: 9px; }
.visual-menu i { display:block; width: 33px; height: 6px; border-radius: 6px; background: #dce1de; }
.visual-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.visual-kicker { width: 95px; height: 8px; border-radius: 8px; background: var(--accent); margin-bottom: 15px; }
.visual-title { height: 22px; border-radius: 8px; background: var(--dark); margin-bottom: 10px; }
.visual-title.short { width: 72%; }
.visual-text { height: 7px; border-radius: 8px; background: #d6dcda; margin: 10px 0; }
.visual-text.short { width: 68%; }
.visual-button { width: 108px; height: 31px; border-radius: 999px; background: var(--accent); margin-top: 20px; }
.visual-art { aspect-ratio: 1; position: relative; border-radius: 28px; background: var(--dark); overflow: hidden; }
.visual-art::before { content:""; position:absolute; width:140px; height:140px; border:26px solid var(--accent); border-radius:42px; transform:rotate(45deg); left:45px; top:62px; }
.visual-art::after { content:""; position:absolute; width:130px; height:130px; border-radius:50%; background:rgba(255,255,255,.08); right:-38px; top:-38px; }
.visual-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin-top: 28px; }
.visual-small-card { background:#fff; border:1px solid var(--line); border-radius:17px; padding:16px; min-height:105px; }
.visual-small-card b { display:block; width:34px; height:34px; border-radius:11px; background:rgba(121,201,43,.18); margin-bottom:12px; }
.visual-small-card i { display:block; height:6px; background:#d9dedb; border-radius:8px; margin:7px 0; }
.visual-small-card i:last-child { width:65%; }
.floating-card { position: absolute; z-index: 3; border: 1px solid rgba(24,33,42,.08); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); border-radius: 18px; padding: 15px 18px; font-weight: 800; }
.floating-card small { display:block; color:var(--muted); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; }
.floating-card.one { left:-25px; top:0; }
.floating-card.two { right:-28px; bottom:40px; }
.floating-dot { display:inline-block; width:9px; height:9px; border-radius:50%; background:var(--accent); margin-right:7px; box-shadow:0 0 0 6px rgba(121,201,43,.14); }

.logo-strip { padding: 22px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.5); }
.logo-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px 48px; color: #75818a; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 800; }
.logo-strip-inner span { display:flex; align-items:center; gap:9px; }
.logo-strip-inner span::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--accent); }

.section { padding: 105px 0; }
.section-sm { padding: 72px 0; }
.section-white { background: #fff; }
.section-dark { background: var(--dark); color:#fff; position:relative; overflow:hidden; }
.section-dark::after { content:""; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(121,201,43,.08); right:-250px; bottom:-300px; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:48px; }
.section-head > div { max-width:760px; }
.section-label { color:var(--accent-dark); font-size:12px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; margin-bottom:12px; }
.section-dark .section-label { color:var(--accent); }
h2 { font-size: clamp(36px, 5vw, 58px); line-height:1.05; letter-spacing:-.045em; margin-bottom:16px; }
.section-head p, .section-intro { color:var(--muted); font-size:18px; max-width:720px; }
.section-dark .section-head p, .section-dark .section-intro { color:#aeb9c0; }

.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.service-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:29px; min-height:300px; position:relative; overflow:hidden; transition:.25s ease; }
.service-card::after { content:""; position:absolute; inset:auto -60px -80px auto; width:160px; height:160px; border-radius:50%; background:rgba(121,201,43,.08); transition:.25s; }
.service-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-sm); border-color:rgba(121,201,43,.35); }
.service-card:hover::after { transform:scale(1.4); }
.icon-box { width:52px; height:52px; border-radius:16px; display:grid; place-items:center; color:var(--dark); background:rgba(121,201,43,.18); margin-bottom:45px; }
.icon-box svg { width:25px; height:25px; }
.service-card h3 { font-size:21px; margin-bottom:12px; letter-spacing:-.02em; }
.service-card p { color:var(--muted); margin-bottom:0; }

.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; counter-reset:steps; }
.process-card { position:relative; border-top:1px solid rgba(255,255,255,.16); padding-top:26px; counter-increment:steps; z-index:1; }
.process-card::before { content:"0" counter(steps); display:block; color:var(--accent); font-weight:900; font-size:14px; margin-bottom:45px; }
.process-card h3 { font-size:21px; }
.process-card p { color:#aeb9c0; margin:0; }

.demo-grid, .reference-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.demo-card, .reference-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:.25s ease; }
.demo-card:hover, .reference-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-sm); }
.demo-preview { height:230px; padding:18px; position:relative; overflow:hidden; background:linear-gradient(140deg, color-mix(in srgb, var(--card-accent,#79c92b) 18%, #fff), #f7f9f7); }
.demo-preview::after { content:""; position:absolute; width:180px; height:180px; border-radius:50%; background:color-mix(in srgb, var(--card-accent,#79c92b) 16%, transparent); right:-70px; top:-75px; }
.demo-window { position:absolute; inset:32px 22px 18px; background:#fff; border-radius:16px 16px 8px 8px; box-shadow:0 18px 35px rgba(24,33,42,.12); overflow:hidden; transform:rotate(-1.4deg); }
.demo-window-top { height:24px; background:#f1f3f2; border-bottom:1px solid #e6eae7; display:flex; align-items:center; gap:4px; padding:0 9px; }
.demo-window-top i { width:4px; height:4px; border-radius:50%; background:#c4cbc7; }
.demo-window-body { display:grid; grid-template-columns:1.05fr .95fr; gap:12px; padding:15px; }
.demo-mini-copy b { display:block; height:9px; border-radius:5px; background:var(--dark); margin:5px 0; }
.demo-mini-copy b:nth-child(2) { width:75%; }
.demo-mini-copy i { display:block; height:4px; border-radius:4px; background:#d9dfdc; margin:6px 0; }
.demo-mini-copy span { display:block; width:45px; height:12px; border-radius:7px; background:var(--card-accent,#79c92b); margin-top:10px; }
.demo-mini-art { border-radius:10px; background:var(--card-accent,#79c92b); opacity:.88; min-height:95px; position:relative; overflow:hidden; }
.demo-mini-art::before { content:""; position:absolute; width:70px; height:70px; border-radius:20px; border:12px solid rgba(255,255,255,.55); left:25px; top:25px; transform:rotate(35deg); }
.demo-content, .reference-content { padding:25px; }
.card-meta { color:var(--accent-dark); text-transform:uppercase; letter-spacing:.11em; font-size:11px; font-weight:900; margin-bottom:10px; }
.demo-card h3, .reference-card h3 { font-size:22px; margin-bottom:10px; }
.demo-card p, .reference-card p { color:var(--muted); }
.card-link { display:inline-flex; align-items:center; gap:8px; font-weight:850; font-size:14px; }
.card-link svg { width:17px; transition:.2s; }
.card-link:hover svg { transform:translateX(4px); }
.reference-image { height:235px; background:linear-gradient(145deg,#dce3de,#f5f7f5); overflow:hidden; }
.reference-image img { width:100%; height:100%; object-fit:cover; }
.reference-placeholder { height:100%; display:grid; place-items:center; padding:30px; text-align:center; color:#738078; font-weight:800; }

.package-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.package-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:34px; position:relative; display:flex; flex-direction:column; }
.package-card.highlighted { background:var(--dark); color:#fff; transform:translateY(-12px); border-color:transparent; box-shadow:var(--shadow-lg); }
.package-badge { display:inline-flex; align-self:flex-start; color:var(--accent-dark); background:rgba(121,201,43,.13); padding:7px 11px; border-radius:999px; font-size:11px; font-weight:900; letter-spacing:.06em; text-transform:uppercase; }
.highlighted .package-badge { color:var(--dark); background:var(--accent); }
.package-card h3 { font-size:30px; margin:22px 0 5px; }
.package-price { font-size:24px; font-weight:900; letter-spacing:-.03em; margin-bottom:14px; }
.package-card > p { color:var(--muted); }
.highlighted > p { color:#acb7be; }
.feature-list { list-style:none; padding:0; margin:15px 0 28px; display:grid; gap:12px; }
.feature-list li { display:flex; gap:10px; align-items:flex-start; }
.feature-list li::before { content:"✓"; color:var(--accent-dark); font-weight:900; }
.highlighted .feature-list li::before { color:var(--accent); }
.package-card .btn { margin-top:auto; }

.cta-panel { position:relative; overflow:hidden; background:var(--accent); border-radius:34px; padding:58px; display:grid; grid-template-columns:1.35fr .65fr; align-items:center; gap:35px; }
.cta-panel::after { content:""; position:absolute; width:300px; height:300px; border:55px solid rgba(24,33,42,.12); border-radius:55px; right:-90px; bottom:-160px; transform:rotate(35deg); }
.cta-panel h2 { color:var(--dark); margin-bottom:12px; }
.cta-panel p { color:rgba(24,33,42,.72); font-size:18px; margin:0; max-width:700px; }
.cta-actions { display:flex; justify-content:flex-end; position:relative; z-index:1; }

.page-hero { padding:82px 0 65px; }
.page-hero-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:55px; align-items:end; }
.page-hero h1 { font-size:clamp(48px,7vw,78px); }
.page-hero p { color:var(--muted); font-size:19px; max-width:700px; }
.page-side-note { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:27px; box-shadow:var(--shadow-sm); }
.page-side-note strong { display:block; font-size:18px; margin-bottom:8px; }
.page-side-note p { font-size:15px; margin:0; }
.filter-row { display:flex; flex-wrap:wrap; gap:9px; margin-bottom:32px; }
.filter-btn { border:1px solid var(--line); background:#fff; border-radius:999px; padding:10px 15px; font-weight:800; color:#59656e; }
.filter-btn.active, .filter-btn:hover { background:var(--dark); color:#fff; border-color:var(--dark); }
.empty-state { grid-column:1/-1; text-align:center; background:#fff; border:1px dashed rgba(24,33,42,.2); border-radius:var(--radius); padding:70px 30px; }
.empty-state .icon-box { margin:0 auto 20px; }
.empty-state h3 { font-size:26px; margin-bottom:8px; }
.empty-state p { color:var(--muted); max-width:620px; margin:0 auto 23px; }

.about-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.about-visual { min-height:520px; position:relative; }
.about-main-card { position:absolute; inset:0 40px 35px 0; background:var(--dark); border-radius:32px; overflow:hidden; }
.about-main-card::before { content:"FM"; position:absolute; font-weight:950; font-size:220px; letter-spacing:-.1em; color:rgba(255,255,255,.04); right:-20px; bottom:-70px; }
.about-main-card img { position:absolute; width:65%; height:65%; object-fit:contain; left:12%; top:12%; }
.about-accent-card { position:absolute; width:210px; right:0; bottom:0; background:var(--accent); border-radius:24px; padding:24px; font-weight:900; font-size:19px; box-shadow:var(--shadow-lg); }
.about-copy p { color:var(--muted); font-size:18px; }
.value-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:28px; }
.value-item { border:1px solid var(--line); border-radius:17px; padding:18px; background:#fff; }
.value-item strong { display:block; margin-bottom:5px; }
.value-item span { color:var(--muted); font-size:14px; }

.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:36px; align-items:start; }
.contact-info { display:grid; gap:14px; position:sticky; top:110px; }
.contact-info-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:22px; display:flex; gap:15px; align-items:flex-start; }
.contact-info-card .icon-box { flex:0 0 auto; margin:0; width:44px; height:44px; border-radius:13px; }
.contact-info-card small { display:block; color:var(--muted); margin-bottom:3px; }
.contact-info-card strong, .contact-info-card a { font-weight:850; overflow-wrap:anywhere; }
.contact-form-wrap { background:#fff; border:1px solid var(--line); border-radius:30px; padding:38px; box-shadow:var(--shadow-sm); }
.contact-form-wrap h2 { font-size:36px; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.form-field { display:grid; gap:7px; }
.form-field.full { grid-column:1/-1; }
.form-field label { font-size:13px; font-weight:850; }
.form-field input, .form-field textarea, .form-field select {
  width:100%; border:1px solid rgba(24,33,42,.14); border-radius:14px; padding:13px 14px; background:#fbfcfb; color:var(--dark); outline:none; transition:.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color:var(--accent); box-shadow:0 0 0 4px rgba(121,201,43,.12); background:#fff; }
.form-field textarea { min-height:155px; resize:vertical; }
.checkbox-field { display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:13px; }
.checkbox-field input { margin-top:4px; accent-color:var(--accent-dark); }
.checkbox-field a { color:var(--dark); text-decoration:underline; }
.honeypot { position:absolute !important; left:-10000px !important; opacity:0 !important; pointer-events:none !important; }
.form-status { margin-top:14px; border-radius:14px; padding:12px 14px; display:none; }
.form-status.success { display:block; color:#225d19; background:#edf8e7; border:1px solid #cce8be; }
.form-status.error { display:block; color:#7c2323; background:#fff0f0; border:1px solid #efc6c6; }

.legal-content { max-width:900px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:50px; box-shadow:var(--shadow-sm); }
.legal-content h1 { font-size:48px; }
.legal-content h2 { font-size:28px; margin-top:35px; }
.legal-content h3 { font-size:21px; margin-top:28px; }
.legal-content p, .legal-content li { color:#4f5b64; }

.site-footer { background:#10171d; color:#fff; padding:72px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.6fr .75fr 1fr .7fr; gap:45px; }
.footer-brand img { width:300px; height:72px; object-fit:contain; object-position:left center; filter:brightness(0) invert(1); opacity:.95; margin-bottom:18px; }
.footer-brand p { max-width:430px; color:#9ca8af; }
.site-footer h3 { font-size:14px; text-transform:uppercase; letter-spacing:.12em; color:var(--accent); margin-bottom:18px; }
.site-footer a, .site-footer span { display:block; color:#aeb8be; margin:8px 0; }
.site-footer a:hover { color:#fff; }
.footer-bottom { margin-top:50px; border-top:1px solid rgba(255,255,255,.1); padding-top:24px; display:flex; justify-content:space-between; color:#7f8a91; font-size:13px; }
.footer-bottom span { display:inline; margin:0; }
.toast { position:fixed; z-index:200; left:50%; bottom:30px; transform:translate(-50%,30px); opacity:0; pointer-events:none; background:var(--dark); color:#fff; border-radius:999px; padding:12px 20px; box-shadow:var(--shadow-lg); font-weight:750; transition:.25s; }
.toast.show { transform:translate(-50%,0); opacity:1; }

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

@media (max-width: 1040px) {
  .main-nav { gap:0; }
  .main-nav a { padding-inline:10px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { text-align:center; }
  .hero-copy h1, .hero-copy > p { margin-inline:auto; }
  .eyebrow { justify-content:center; }
  .hero-actions, .hero-trust { justify-content:center; }
  .hero-visual { width:min(100%,720px); margin-inline:auto; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .demo-grid, .reference-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2; }
}

@media (max-width: 800px) {
  :root { --header-height:72px; }
  .container { width:min(calc(100% - 28px), var(--container)); }
  .brand img { width:205px; height:50px; }
  .menu-toggle { display:block; }
  .main-nav { position:fixed; inset:var(--header-height) 0 auto; height:calc(100dvh - var(--header-height)); background:rgba(245,247,245,.98); backdrop-filter:blur(18px); display:flex; flex-direction:column; align-items:stretch; gap:6px; padding:24px 18px; transform:translateX(100%); transition:.25s; }
  .main-nav.open { transform:none; }
  .main-nav a { padding:15px 18px; font-size:18px; }
  .main-nav .nav-cta { margin:8px 0 0; text-align:center; }
  .menu-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity:0; }
  .menu-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .hero { padding:58px 0 70px; }
  .hero-grid { gap:30px; }
  h1 { font-size:clamp(43px,13vw,63px); }
  .hero-visual { min-height:470px; }
  .browser-card { inset:20px 4px 5px; }
  .browser-body { padding:20px; }
  .floating-card.one { left:0; }
  .floating-card.two { right:0; bottom:10px; }
  .section { padding:78px 0; }
  .section-head { align-items:flex-start; flex-direction:column; margin-bottom:34px; }
  .service-grid, .process-grid, .package-grid { grid-template-columns:1fr; }
  .package-card.highlighted { transform:none; }
  .cta-panel { grid-template-columns:1fr; padding:38px 28px; }
  .cta-actions { justify-content:flex-start; }
  .page-hero { padding:55px 0 45px; }
  .page-hero-grid, .about-grid, .contact-grid { grid-template-columns:1fr; }
  .page-side-note { display:none; }
  .about-grid { gap:35px; }
  .about-visual { min-height:430px; }
  .contact-info { position:static; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:last-child { grid-column:auto; }
}

@media (max-width: 560px) {
  .brand { min-width:0; }
  .brand img { width:177px; }
  .hero-actions .btn { width:100%; }
  .hero-trust { display:grid; justify-content:start; text-align:left; margin-left:auto; margin-right:auto; width:max-content; }
  .hero-visual { min-height:390px; }
  .browser-card { inset:15px 0; }
  .browser-top { height:40px; }
  .browser-body { min-height:350px; padding:14px; }
  .visual-nav { margin-bottom:20px; }
  .visual-logo { font-size:12px; }
  .visual-logo img { width:31px; height:25px; }
  .visual-menu { display:none; }
  .visual-hero { grid-template-columns:1fr .9fr; gap:10px; }
  .visual-art::before { left:18px; top:35px; width:80px; height:80px; border-width:15px; }
  .visual-cards { gap:7px; margin-top:15px; }
  .visual-small-card { min-height:72px; padding:9px; }
  .visual-small-card b { width:22px; height:22px; margin-bottom:8px; }
  .floating-card { font-size:12px; padding:10px 12px; }
  .floating-card.one { top:0; }
  .floating-card.two { bottom:0; }
  .service-grid, .demo-grid, .reference-grid { grid-template-columns:1fr; }
  .service-card { min-height:260px; }
  .form-grid { grid-template-columns:1fr; }
  .form-field.full { grid-column:auto; }
  .contact-form-wrap { padding:26px 20px; }
  .legal-content { padding:30px 20px; }
  .legal-content h1 { font-size:40px; }
  .value-grid { grid-template-columns:1fr; }
  .about-main-card { right:15px; }
  .about-accent-card { width:170px; padding:18px; font-size:16px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand img { width:250px; }
  .footer-bottom { flex-direction:column; gap:8px; }
}
