@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Sans:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-base:      #07090F;
  --bg-surface:   #0C1018;
  --bg-card:      #111722;
  --bg-card-2:    #141D2A;
  --border:       #1E2D42;
  --border-light: #243350;
  --accent:       #00C2D9;
  --accent-hover: #00DFF8;
  --accent-dim:   rgba(0, 194, 217, 0.10);
  --accent-glow:  rgba(0, 194, 217, 0.22);
  --accent-line:  rgba(0, 194, 217, 0.40);
  --text-primary: #E2EDF8;
  --text-secondary:#8BA4C0;
  --text-muted:   #4D6480;
  --red:          #E05555;
  --green:        #3DD68C;

  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow:       0 4px 24px rgba(0,0,0,.45);
  --shadow-card:  0 2px 16px rgba(0,0,0,.35);
  --glow:         0 0 32px rgba(0, 194, 217, 0.18);

  --nav-height:   72px;
  --max-w:        1200px;
  --section-gap:  96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.accent { color: var(--accent); }
.tag-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--accent); text-transform: uppercase; letter-spacing: .12em;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  padding: 5px 14px; border-radius: 100px;
}
.section { padding: var(--section-gap) 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.fade-in {
  animation: fadeUp 0.55s ease both;
  animation-delay: var(--anim-delay, 0ms);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% -10%, rgba(0,194,217,.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 110%, rgba(0,194,217,.04) 0%, transparent 55%);
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(7,9,15,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.5); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-mono);
  font-size: 18px; font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
.logo-name span { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px; font-weight: 400;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,.05);
}
.nav-cta {
  margin-left: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--bg-base) !important;
  background: var(--accent) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-sm) !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.06); }
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(7,9,15,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 99;
  flex-direction: column; gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); }
.mobile-nav .nav-link { display: block; padding: 12px 16px; font-size: 15px; }
.mobile-nav .nav-cta {
  display: block; margin: 12px 0 0;
  text-align: center; padding: 13px 22px !important;
  color: var(--bg-base) !important; background: var(--accent) !important;
  border-radius: var(--radius-sm) !important;
}

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(0,194,217,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-label { margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-desc {
  font-size: 17px; font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 40px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500;
  padding: 13px 28px; border-radius: var(--radius-sm);
  transition: all .2s;
}
.btn-primary {
  background: var(--accent); color: var(--bg-base);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--glow); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.btn i { font-size: 18px; }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px; width: 100%; max-width: 400px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
}
.hc-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hc-dots { display: flex; gap: 6px; }
.hc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-light);
}
.hc-dots span:nth-child(1) { background: #E05555; }
.hc-dots span:nth-child(2) { background: #E0A655; }
.hc-dots span:nth-child(3) { background: var(--green); }
.hc-title {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); margin-left: auto;
}
.hc-messages { display: flex; flex-direction: column; gap: 12px; }
.msg {
  display: flex; gap: 10px; align-items: flex-end;
}
.msg-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--accent);
}
.msg-bubble {
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  font-size: 13px; color: var(--text-secondary);
  max-width: 240px;
}
.msg.own { flex-direction: row-reverse; }
.msg.own .msg-bubble {
  background: var(--accent-dim);
  border-color: var(--accent-line);
  color: var(--text-primary);
  border-radius: 12px 12px 4px 12px;
}
.hc-input {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.hc-input-box {
  flex: 1; background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 14px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
}
.hc-send {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--accent); color: var(--bg-base);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}

.hero-badge {
  position: absolute; bottom: -10px; left: -20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  font-size: 13px;
}
.hero-badge i { color: var(--accent); font-size: 20px; }
.hb-text strong { display: block; font-size: 14px; color: var(--text-primary); }
.hb-text span { color: var(--text-muted); font-size: 12px; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin: 64px 0 0;
}
.stat-item {
  background: var(--bg-surface);
  padding: 32px 24px; text-align: center;
}
.stat-number {
  font-family: var(--font-head); font-size: 38px; font-weight: 800;
  color: var(--accent); letter-spacing: -.03em; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--text-muted); }

.section-header { margin-bottom: 56px; }
.section-header .tag-label { margin-bottom: 16px; }
.section-title {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.12; margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-desc {
  font-size: 16px; color: var(--text-secondary);
  max-width: 520px; line-height: 1.75;
}
.section-header.text-center .section-desc { margin: 0 auto; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line) 50%, transparent);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--accent);
  margin-bottom: 22px;
}
.feature-title {
  font-family: var(--font-head); font-size: 19px; font-weight: 700;
  margin-bottom: 10px; color: var(--text-primary);
}
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; gap: 24px;
  transition: border-color .25s, transform .25s;
}
.service-card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.service-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent);
}
.service-body {}
.service-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-tag {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted); background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 3px 10px;
}

.tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tech-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 18px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.tech-item:hover { border-color: var(--accent-line); background: var(--bg-card-2); }
.tech-icon { font-size: 28px; color: var(--accent); margin-bottom: 10px; }
.tech-name {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text-secondary); font-weight: 500;
}

.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: opacity .2s;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-content {}
.process-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.process-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,194,217,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; letter-spacing: -.03em;
  margin-bottom: 16px;
}
.cta-desc { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line) 50%, transparent);
}
.page-hero-title {
  font-family: var(--font-head); font-size: clamp(34px, 5vw, 58px);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 18px;
}
.page-hero-title em { font-style: normal; color: var(--accent); }
.page-hero-desc {
  font-size: 17px; color: var(--text-secondary);
  max-width: 560px; line-height: 1.75;
}

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.value-icon { font-size: 28px; color: var(--accent); margin-bottom: 16px; }
.value-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 10px;
}
.value-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.about-text h2 {
  font-family: var(--font-head); font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; letter-spacing: -.03em;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 16px;
}
.about-info { display: flex; flex-direction: column; gap: 16px; }
.info-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.info-item i { font-size: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-item-body strong { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 4px; font-weight: 400; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); }
.info-item-body span { font-size: 15px; color: var(--text-primary); }
.info-item-body a { color: var(--accent); transition: color .2s; }
.info-item-body a:hover { color: var(--accent-hover); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px; align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.contact-info-item i { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.cii-body strong { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.cii-body span, .cii-body a { font-size: 15px; color: var(--text-primary); line-height: 1.6; }
.cii-body a { color: var(--accent); }

.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; color: var(--text-secondary);
  margin-bottom: 8px; font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 12px 16px;
  color: var(--text-primary); font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--bg-card); }
.form-group.has-error input, .form-group.has-error textarea { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 6px; display: none; }
.form-group.has-error .form-error { display: block; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; font-weight: 500; }
.form-success {
  display: none; text-align: center; padding: 32px;
  color: var(--green);
}
.form-success i { font-size: 44px; margin-bottom: 12px; }
.form-success h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 14px; }

.legal-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 48px; align-items: start;
}
.legal-toc {
  position: sticky; top: calc(var(--nav-height) + 24px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; font-size: 13px;
}
.legal-toc h3 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px;
}
.legal-toc ul { display: flex; flex-direction: column; gap: 2px; }
.legal-toc a {
  display: block; padding: 6px 10px;
  color: var(--text-secondary); border-radius: 6px;
  transition: color .2s, background .2s;
}
.legal-toc a:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }

.legal-content h2 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  margin: 40px 0 14px; padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  margin: 24px 0 10px; color: var(--text-primary);
}
.legal-content p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  margin: 10px 0 16px 20px;
}
.legal-content li {
  font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 6px;
}
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--text-primary); }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-meta {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); margin-bottom: 32px;
}

.cookies-decided .cookie-banner { display: none !important; }
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 780px;
  background: var(--bg-card-2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 22px 28px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: var(--shadow); z-index: 200;
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-text { flex: 1; font-size: 14px; color: var(--text-secondary); }
.cookie-text strong { color: var(--text-primary); }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent); color: var(--bg-base);
  font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: var(--radius-sm);
  transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--accent-hover); }
.btn-cookie-decline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--text-muted);
  font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: var(--radius-sm);
  transition: border-color .2s, color .2s;
}
.btn-cookie-decline:hover { border-color: var(--text-secondary); color: var(--text-primary); }

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { width: 34px; height: 34px; }
.footer-logo-name {
  font-family: var(--font-mono); font-size: 16px;
  color: var(--text-primary);
}
.footer-brand-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 260px;
  margin-bottom: 20px;
}
.footer-address {
  font-size: 13px; color: var(--text-secondary); line-height: 1.75;
}
.footer-col h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: .08em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--text-muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-size: 13px; color: var(--text-muted);
}
.footer-copy a { color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--text-muted); transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
  font-family: var(--font-mono);
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 12px; }

.divider {
  height: 1px; background: var(--border); margin: 0;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-banner { flex-direction: column; gap: 16px; bottom: 16px; padding: 20px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .service-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .contact-form-wrap { padding: 28px 20px; }
}
