:root {
  --bg: #0b1328;
  --bg-2: #111b38;
  --panel: #162246;
  --panel-2: #1c2b56;
  --text: #f5f8ff;
  --muted: #b6c1d9;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #11c5a7;
  --accent-2: #1d7bf2;
  --accent-3: #d8b45d;
  --danger: #ff795e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(17, 197, 167, 0.24),
      transparent 27rem
    ),
    radial-gradient(
      circle at 100% 20%,
      rgba(29, 123, 242, 0.22),
      transparent 32rem
    ),
    linear-gradient(180deg, #0a1024 0%, #101936 42%, #0b1328 100%);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.narrow {
  max-width: 820px;
}
.skip-link {
  position: absolute;
  left: 14px;
  top: -48px;
  z-index: 1000;
  background: var(--accent);
  color: #04101f;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus {
  top: 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 14, 31, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(17, 197, 167, 0.25);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}
.section-pad {
  padding: 96px 0 78px;
}
.section {
  padding: 86px 0;
}
.section-muted {
  background: rgba(255, 255, 255, 0.025);
}
.center {
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  max-width: 880px;
}
h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}
h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy p {
  font-size: 18px;
  max-width: 710px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  transition: 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 18px 45px rgba(29, 123, 242, 0.24);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(29, 123, 242, 0.36);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-light {
  background: white;
  color: #0b1328;
}
.btn-small {
  min-height: 40px;
  padding: 0 16px;
}
.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.trust-row i,
.check-list i {
  color: var(--accent);
}
.hero-visual {
  min-height: 470px;
  position: relative;
  border-radius: 36px;
  overflow: hidden;

  background-image: url("../img/og-cover.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
}
.glass-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.049),
    rgba(255, 255, 255, 0.07)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow);
}
.case-card {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  border-radius: 24px;
  padding: 26px;
  animation: float 5.5s ease-in-out infinite;
}
.case-top {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
}
.case-top span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.case-line {
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  margin: 22px 0 12px;
}
.case-line.short {
  width: 68%;
  margin-top: 0;
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.case-stats div {
  border-radius: 16px;
  background: rgba(11, 19, 40, 0.52);
  padding: 16px;
}
.case-stats b {
  display: block;
  font-size: 28px;
  color: var(--accent);
}
.case-stats small {
  color: var(--muted);
}
.legal-emblem {
  position: absolute;
  right: 44px;
  bottom: 42px;
  width: 108px;
  height: 108px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-3), #fff1b7);
  color: #1b2542;
  font-size: 42px;
  box-shadow: 0 20px 60px rgba(216, 180, 93, 0.25);
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.85;
}
.orb-one {
  width: 160px;
  height: 160px;
  background: rgba(17, 197, 167, 0.24);
  left: 28px;
  top: 42px;
}
.orb-two {
  width: 210px;
  height: 210px;
  background: rgba(29, 123, 242, 0.18);
  right: -62px;
  top: 96px;
}
.section-intro {
  max-width: 720px;
  margin-inline: auto;
  font-size: 17px;
}
.feature-grid,
.services-grid,
.stats-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card,
.service-card,
.stat-card,
.price-card,
.process-step,
.info-card,
.contact-form,
.values-panel,
.dashboard-card,
.map-placeholder {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}
.feature-card {
  padding: 30px;
  text-align: center;
}
.feature-card > i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 22px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.dashboard-card {
  padding: 32px;
  border-radius: 30px;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 850;
  font-size: 22px;
  margin-bottom: 28px;
}
.dash-header i {
  color: var(--accent);
}
.risk-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
  margin-top: 18px;
}
.risk-row b {
  color: var(--text);
}
.risk-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.risk-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  padding: 32px;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 197, 167, 0.38);
}
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 22px;
  margin-bottom: 22px;
}
.service-card a {
  color: var(--accent);
  font-weight: 850;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  padding: 28px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: var(--accent);
}
.stat-card span {
  color: var(--muted);
  font-weight: 800;
}
.cta-band {
  padding: 72px 0;
  background: linear-gradient(
    135deg,
    rgba(17, 197, 167, 0.16),
    rgba(29, 123, 242, 0.18)
  );
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
}
.page-hero {
  padding: 96px 0 66px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}
.page-hero h1 {
  margin-inline: auto;
}
.page-hero p {
  font-size: 18px;
  max-width: 720px;
  margin-inline: auto;
}
.page-hero.compact {
  padding: 70px 0 34px;
}
.values-panel {
  padding: 26px;
  display: grid;
  gap: 18px;
}
.values-panel div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}
.values-panel i {
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 12px;
}
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}
.process-step {
  padding: 26px;
}
.process-step span,
.timeline-item span,
.badge {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 38px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
}
.service-detail.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.service-detail.reverse .service-copy {
  order: 2;
}
.service-copy .icon-box {
  display: grid;
}
.service-visual {
  min-height: 320px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-size: 90px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(17, 197, 167, 0.26),
      transparent 15rem
    ),
    linear-gradient(135deg, rgba(29, 123, 242, 0.18), rgba(216, 180, 93, 0.14));
  border: 1px solid var(--line);
}
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  padding: 34px;
  text-align: center;
  position: relative;
}
.price-card strong {
  display: block;
  font-size: 34px;
  margin: 12px 0;
  color: var(--text);
}
.price-card.featured {
  border-color: rgba(17, 197, 167, 0.5);
  transform: translateY(-12px);
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.benefit-grid div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.benefit-grid i {
  color: var(--accent);
  font-size: 24px;
}
.benefit-grid strong {
  display: block;
  margin: 10px 0 4px;
}
.benefit-grid span {
  color: var(--muted);
}
.advantage-visual {
  min-height: 430px;
  position: relative;
  border-radius: 34px;
  background-image: url("../img/og-cover.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  left: 44px;
  top: 70px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 850;
  backdrop-filter: blur(12px);
  animation: float 5.2s ease-in-out infinite;
}
.floating-card.second {
  left: auto;
  right: 42px;
  top: 178px;
  animation-delay: 0.4s;
}
.floating-card.third {
  left: 82px;
  top: auto;
  bottom: 74px;
  animation-delay: 0.8s;
}
.floating-card i {
  color: var(--accent);
  margin-right: 8px;
}
.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 920px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
}
.timeline-item {
  position: relative;
  margin-left: 58px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: -46px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(17, 197, 167, 0.12);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 36px;
  align-items: start;
}
.contact-form {
  padding: 32px;
  display: grid;
  gap: 18px;
}
label {
  font-weight: 850;
  color: var(--text);
}
input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
select option {
  color: #111;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(17, 197, 167, 0.12);
}
.form-note {
  font-size: 13px;
  margin-bottom: 0;
}
.contact-side {
  display: grid;
  gap: 22px;
}
.info-card {
  padding: 30px;
}
.info-card p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-card i {
  color: var(--accent);
  width: 18px;
  margin-top: 4px;
}
.map-placeholder {
  padding: 16px;
  border-radius: 30px;
  overflow: hidden;
}
.map-placeholder img {
  width: 100%;
  border-radius: 20px;
}
.legal-page h2 {
  font-size: 24px;
  margin-top: 28px;
}
.legal-page p {
  font-size: 16px;
}
.site-footer {
  background: #071023;
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 38px;
}
.footer-grid h3 {
  font-size: 16px;
}
.footer-grid a {
  display: block;
  color: var(--muted);
  margin: 9px 0;
  font-size: 14px;
}
.footer-grid a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}
.footer-bottom p {
  margin: 0;
}
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  background: rgba(7, 16, 35, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(18px);
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  margin: 4px 0 0;
  font-size: 14px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.32s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #0a132b;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
  }
  .site-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }
  .service-detail.reverse .service-copy {
    order: 0;
  }
  .feature-grid,
  .feature-grid.four,
  .services-grid,
  .stats-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .section-pad {
    padding: 72px 0 58px;
  }
  .section {
    padding: 64px 0;
  }
  h1 {
    font-size: 42px;
  }
  .feature-grid,
  .feature-grid.four,
  .services-grid,
  .stats-grid,
  .pricing-grid,
  .process-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 360px;
  }
  .legal-emblem {
    width: 82px;
    height: 82px;
    font-size: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    display: none;
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-banner.show {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
