:root {
  --bg: #020816;
  --bg-soft: #071226;
  --panel: rgba(8, 21, 41, 0.72);
  --panel-strong: rgba(9, 24, 49, 0.9);
  --line: rgba(106, 197, 255, 0.22);
  --line-strong: rgba(129, 220, 255, 0.35);
  --text: #f7fbff;
  --text-soft: #bdd2ea;
  --accent: #42bfff;
  --accent-2: #7fe8ff;
  --success: #6bf4c9;
  --danger: #ff8ea1;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 12%, rgba(24, 160, 255, 0.24), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(29, 104, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #01060f 0%, #020b17 30%, #03111f 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 999; padding: .75rem 1rem;
  background: #fff; color: #000; border-radius: .5rem;
}
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(2, 8, 22, 0.55); border-bottom: 1px solid rgba(107, 189, 255, 0.12);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 56px; gap: 18px; }
.brand img { width: 80px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; color: var(--text-soft); }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active { color: var(--text); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }
.section { position: relative; padding: 110px 0; }
.section-compact { padding: 80px 0; }
.section-grid-lines::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(89, 163, 255, 0.08), transparent), linear-gradient(180deg, transparent 0%, rgba(94, 173, 255, 0.05) 40%, transparent 100%);
  pointer-events: none;
}
.section-grid-lines::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(133, 211, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(133, 211, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px; mask-image: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.6), rgba(0,0,0,.12)); pointer-events: none;
}
.hero, .page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.hero {
  min-height: 68vh;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) contrast(1.16) saturate(1.04);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 7, 16, 0.82) 0%, rgba(2, 10, 20, 0.60) 42%, rgba(2, 10, 20, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 6, 18, 0.10) 0%, rgba(0, 4, 12, 0.28) 100%);
}
.hero-content, .page-hero .container { position: relative; z-index: 1; padding: 118px 0 72px; }
.hero-copy, .page-hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-2);
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; opacity: .7; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); line-height: 1.06; }
h1 { font-size: clamp(24px, 7vw, 42px); letter-spacing: -0.04em; max-width: 12ch; }
.page-hero h1 { max-width: 14ch; }
h1 span { color: #b7ddff; font-weight: 500; }
p { margin: 0 0 1rem; }
.hero-text, .lead-text { margin: 24px 0 0; max-width: 60ch; font-size: clamp(18px, 2vw, 21px); line-height: 1.7; color: var(--text-soft); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; transition: .25s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, #2177ff 0%, #35b5ff 48%, #83f2ff 100%); box-shadow: 0 10px 30px rgba(45, 128, 255, 0.35); }
.btn-secondary { color: var(--text); border-color: rgba(133, 211, 255, 0.35); background: rgba(6, 19, 38, 0.4); }
.hero-metrics { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 40px 0 0; padding: 0; }
.hero-metrics li, .stat-card {
  padding: 18px 18px 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(5, 17, 34, 0.56); backdrop-filter: blur(10px);
}
.hero-metrics strong, .stat-card strong { display: block; font-size: 26px; margin-bottom: 6px; }
.hero-metrics span, .stat-card span { color: var(--text-soft); font-size: 14px; line-height: 1.45; }
.section-heading { margin-bottom: 28px; }
.section-heading.centered { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.narrow { max-width: 860px; }
.section-heading h2 { font-size: clamp(18px, 4vw, 24px); letter-spacing: -0.04em; }
.section-heading p:last-child, .content-block p:last-child { color: var(--text-soft); line-height: 1.8; }
.centered { text-align: center; }
.split-layout, .contact-layout, .content-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.split-copy p, .content-block p, .legal-content p, .legal-content li { color: var(--text-soft); line-height: 1.8; }
.check-list, .contact-points, .bullet-list, .service-bullets { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li, .contact-points li, .bullet-list li, .service-bullets li {
  padding-left: 28px; position: relative; color: var(--text-soft); line-height: 1.65;
}
.check-list li::before, .contact-points li::before, .bullet-list li::before, .service-bullets li::before {
  content: ''; position: absolute; left: 0; top: .7em; width: 12px; height: 12px; border-radius: 999px; background: linear-gradient(135deg, #32c3ff, #7ef1ff); box-shadow: 0 0 0 4px rgba(53, 179, 255, 0.15); transform: translateY(-50%);
}
.proof-panel, .image-panel, .contact-form-wrap, .glass-panel, .reference-card, .service-card, .benefit-card, .detail-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); overflow: hidden;
}
.proof-panel img, .image-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 440px; }
.proof-float {
  position: absolute; left: 24px; bottom: 24px; max-width: 280px; padding: 18px 20px; border-radius: 18px; border: 1px solid rgba(133, 211, 255, 0.22); background: rgba(4, 14, 28, 0.82); backdrop-filter: blur(12px);
}
.proof-float strong { display: block; font-size: 20px; margin-bottom: 6px; }
.proof-float span { color: var(--text-soft); line-height: 1.5; }
.services-grid, .benefits-grid, .references-grid, .stats-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .benefit-card, .reference-card, .detail-card { padding: 26px; }
.service-card img, .benefit-card img, .detail-card img { width: 84px; height: 84px; object-fit: contain; margin-bottom: 18px; }
.service-card h3, .benefit-card h3, .reference-card h3, .detail-card h3 { font-size: 24px; letter-spacing: -0.03em; margin-bottom: 12px; }
.service-card p, .benefit-card p, .reference-card p, .detail-card p, .service-card li, .detail-card li { color: var(--text-soft); line-height: 1.7; }
.services-grid {
  align-items: start;
}

.service-card {
  --hex-border: rgba(164, 228, 255, 0.95);
  --hex-glow: rgba(88, 198, 255, 0.42);
  --hex-fill-top: rgba(18, 52, 92, 0.78);
  --hex-fill-bottom: rgba(4, 16, 34, 0.92);

  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;

  width: 100%;
  max-width: 360px;
  aspect-ratio: 1.1547;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  background:
    linear-gradient(180deg, rgba(210, 245, 255, 0.95), rgba(110, 210, 255, 0.82));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    0 0 22px var(--hex-glow),
    0 0 46px rgba(0, 174, 255, 0.18);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  background:
    linear-gradient(180deg, var(--hex-fill-top), var(--hex-fill-bottom));
  box-shadow:
    inset 0 0 0 1px rgba(180, 234, 255, 0.18),
    inset 0 18px 34px rgba(120, 210, 255, 0.10);
}

.service-card-inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 46px);
  height: calc(100% - 42px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.service-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 14px rgba(92, 210, 255, 0.28));
}

.service-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: var(--text-soft);
}

.service-card:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}

.service-card:hover::before {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.24),
    0 0 28px rgba(88, 198, 255, 0.55),
    0 0 54px rgba(0, 174, 255, 0.24);
}
.tag {
  display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: rgba(26, 130, 255, 0.15); border: 1px solid rgba(133,211,255,.18); color: var(--accent-2); font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.partners-grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; align-items: center; margin-top: 32px;
}
.partners-grid img {
  width: 100%; height: 76px; object-fit: contain; padding: 16px; border-radius: 18px; border: 1px solid var(--line); background: rgba(6, 17, 35, 0.5); filter: grayscale(1) brightness(1.1);
}
.process-line {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin: 0; padding: 0; list-style: none;
}
.process-line li {
  padding: 28px; border-radius: 24px; border: 1px solid var(--line); background: rgba(6, 18, 37, 0.65);
}
.step-no { display: inline-flex; margin-bottom: 14px; color: var(--accent-2); font-weight: 800; letter-spacing: .08em; }
.process-line h3 { font-size: 24px; margin-bottom: 10px; }
.process-line p { color: var(--text-soft); line-height: 1.7; }
.cta-box {
  display: flex; gap: 30px; align-items: center; justify-content: space-between; padding: 42px; border: 1px solid var(--line-strong); border-radius: 28px; background: linear-gradient(180deg, rgba(9, 25, 47, 0.95), rgba(7, 20, 39, 0.88)); box-shadow: var(--shadow);
}
.cta-box h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.04em; margin-bottom: 12px; }
.cta-box p { color: var(--text-soft); max-width: 62ch; line-height: 1.8; }
.contact-form-wrap { padding: 28px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 16px 18px; border-radius: 16px; border: 1px solid rgba(133, 211, 255, 0.22); background: rgba(5, 16, 32, 0.82); color: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(102, 210, 255, 0.35); border-color: rgba(133, 211, 255, 0.4); }
.form-note { color: var(--text-soft); font-size: 14px; line-height: 1.6; }
.hp-field { position: absolute; left: -5000px; }
.form-alert {
  padding: 16px 18px; border-radius: 16px; font-weight: 600; margin-bottom: 18px; border: 1px solid transparent;
}
.form-alert.success { background: rgba(49, 205, 162, 0.14); color: #d4fff0; border-color: rgba(107,244,201,.24); }
.form-alert.error { background: rgba(255, 83, 116, 0.12); color: #ffe4ea; border-color: rgba(255,142,161,.24); }
.content-block, .legal-content, .feature-grid, .stats-grid, .faq-grid { position: relative; z-index: 1; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
.glass-panel { padding: 24px; }
.glass-panel h3 { font-size: 24px; margin-bottom: 10px; }
.glass-panel p { color: var(--text-soft); line-height: 1.75; }
.stats-grid { margin-top: 28px; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.site-footer { position: relative; padding: 60px 0 30px; border-top: 1px solid rgba(107, 189, 255, 0.12); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-logo { width: 180px; margin-bottom: 18px; }
.footer-text { max-width: 40ch; color: var(--text-soft); line-height: 1.8; }
.footer-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 12px; color: var(--text-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 26px; margin-top: 32px; border-top: 1px solid rgba(107, 189, 255, 0.1); color: var(--text-soft); font-size: 14px; }
.page-content { padding-top: 40px; }
.legal-content { max-width: 900px; }
.legal-content h2, .legal-content h3 { margin: 2rem 0 1rem; letter-spacing: -0.03em; }
.reveal { opacity: 0; transform: translateY(24px); transition: .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-layout, .contact-layout, .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; right: 20px; top: calc(100% + 12px); width: min(360px, calc(100vw - 40px)); padding: 18px; border-radius: 20px; border: 1px solid var(--line); background: rgba(5, 17, 34, 0.96); display: none; flex-direction: column; align-items: flex-start; gap: 16px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { width: 100%; margin-left: 0; }
  .hero, .page-hero { min-height: auto; }
  .hero-content, .page-hero .container { padding: 104px 0 64px; }
  .hero-metrics, .services-grid, .references-grid, .stats-grid { grid-template-columns: 1fr; }
  .feature-grid, .benefits-grid, .process-line, .footer-grid, .partners-grid { grid-template-columns: 1fr; }
  .cta-box, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .brand img { width: 118px; }
}


.recaptcha-wrap { margin-top: 4px; overflow-x: auto; }
.recaptcha-note { margin-top: 10px; font-size: 13px; }
.form-alert.compact { margin: 0 0 4px; padding: 12px 14px; }


@media (max-width: 420px) {
  .recaptcha-wrap { transform: scale(0.92); max-width: 304px; }
}
