*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
  position: relative;
}

body.dark { background-color: #0D1B2A; color: #E2E8F0; }
body.light { background-color: #F8FAFC; color: #0F172A; }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: #6366F1;
  color: #0D1B2A;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  z-index: 10001;
  transition: top 0.2s;
}

.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid #6366F1;
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }

p { text-wrap: pretty; }

.text-primary { }
.dark .text-primary { color: #E2E8F0; }
.light .text-primary { color: #0F172A; }

.text-secondary { }
.dark .text-secondary { color: rgba(226, 232, 240, 0.65); }
.light .text-secondary { color: #64748B; }

.text-muted { }
.dark .text-muted { color: rgba(226, 232, 240, 0.4); }
.light .text-muted { color: #94A3B8; }

.text-accent { }
.dark .text-accent { color: #6366F1; }
.light .text-accent { color: #4F46E5; }

.hover-accent:hover { color: #6366F1; }

.bg-surface { }
.dark .bg-surface { background: rgba(226, 232, 240, 0.035); }
.light .bg-surface { background: #ffffff; }

.bg-raised { }
.dark .bg-raised { background: #1B263B; }
.light .bg-raised { background: #F1F5F9; }

.bg-accent-subtle { }
.dark .bg-accent-subtle { background: rgba(99, 102, 241, 0.1); }
.light .bg-accent-subtle { background: rgba(79, 70, 229, 0.07); }

.border-subtle { }
.dark .border-subtle { border-color: rgba(226, 232, 240, 0.07); }
.light .border-subtle { border-color: rgba(15, 23, 42, 0.08); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.font-tabular {
  font-variant-numeric: tabular-nums;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dark .btn-primary {
  background: #6366F1;
  color: #0D1B2A;
}

.light .btn-primary {
  background: #4F46E5;
  color: #F8FAFC;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.dark .btn-primary:hover {
  background: #818CF8;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.2);
}

.light .btn-primary:hover {
  background: #4F46E5;
  box-shadow: 0 4px 24px rgba(79, 70, 229, 0.2);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: none;
  transition-duration: 0.08s;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .btn-outline {
  color: #E2E8F0;
  border: 1px solid rgba(226, 232, 240, 0.15);
}

.light .btn-outline {
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

.dark .btn-outline:hover {
  background: rgba(226, 232, 240, 0.06);
  border-color: rgba(226, 232, 240, 0.25);
}

.light .btn-outline:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.25);
}

.btn-outline:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.card {
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .card {
  background: rgba(226, 232, 240, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.06);
}

.light .card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.card:hover {
  transform: translateY(-2px);
}

.dark .card:hover {
  background: rgba(226, 232, 240, 0.05);
  border-color: rgba(226, 232, 240, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.light .card:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.badge-purple {
  background: rgba(99, 102, 241, 0.1);
  color: #6366F1;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.badge-gradient {
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  color: #fff;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dark .icon-circle { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.light .icon-circle { background: rgba(79, 70, 229, 0.07); color: #4F46E5; }

.icon-circle svg { width: 22px; height: 22px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 12px;
  border-left: 2px solid #6366F1;
  margin-bottom: 16px;
}

.dark .section-label { color: rgba(226, 232, 240, 0.5); }
.light .section-label { color: #94A3B8; }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
}

.dark .section-subtitle { color: rgba(226, 232, 240, 0.55); font-size: 17px; text-align: center; margin-top: 12px; max-width: 600px; margin-inline: auto; }
.light .section-subtitle { color: #64748B; font-size: 17px; text-align: center; margin-top: 12px; max-width: 600px; margin-inline: auto; }

.gradient-text {
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(0px);
}

.header.scrolled { backdrop-filter: blur(20px); }

.dark .header.scrolled { background: rgba(13, 27, 42, 0.85); border-bottom: 1px solid rgba(226, 232, 240, 0.06); }
.light .header.scrolled { background: rgba(248, 250, 252, 0.85); border-bottom: 1px solid rgba(15, 23, 42, 0.06); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img { border-radius: 8px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.dark .header-nav a { color: rgba(226, 232, 240, 0.6); }
.light .header-nav a { color: #64748B; }

.header-nav a:hover { color: #6366F1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.dark .theme-toggle:hover { background: rgba(226, 232, 240, 0.06); }
.light .theme-toggle:hover { background: rgba(15, 23, 42, 0.04); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: inherit;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  padding: 24px;
}

.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
.dark .mobile-menu.open { background: rgba(13, 27, 42, 0.98); }
.light .mobile-menu.open { background: rgba(248, 250, 252, 0.98); }

.mobile-menu a {
  display: block;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: background-color 0.2s;
}

.dark .mobile-menu a:hover { background: rgba(226, 232, 240, 0.05); }
.light .mobile-menu a:hover { background: rgba(15, 23, 42, 0.04); }

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 40px;
}

.dark .hero {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(99, 102, 241, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(99, 102, 241, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
    #0D1B2A;
}

.light .hero {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(79, 70, 229, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(79, 70, 229, 0.03) 0%, transparent 45%),
    #F8FAFC;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 14px;
  border-left: 2px solid #6366F1;
  margin-bottom: 24px;
}

.dark .hero-label { color: rgba(226, 232, 240, 0.5); }
.light .hero-label { color: #94A3B8; }

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 720px;
  margin-bottom: 20px;
}

.page-hero .hero-title {
  max-width: none;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}

.dark .hero-subtitle { color: rgba(226, 232, 240, 0.6); }
.light .hero-subtitle { color: #64748B; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.dark .hero-feature { color: rgba(226, 232, 240, 0.45); }
.light .hero-feature { color: #94A3B8; }

.hero-feature svg { width: 16px; height: 16px; }

.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-circle-1 {
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
}

.hero-circle-2 {
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06), transparent 70%);
}

.hero-circle-3 {
  top: 30%;
  right: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.04), transparent 70%);
}

.trust-section {
  padding: 64px 0 80px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-stat {
  text-align: center;
  padding: 20px 16px;
  border-radius: 12px;
  transition: background-color 0.2s;
}

.dark .trust-stat:hover { background: rgba(226, 232, 240, 0.03); }
.light .trust-stat:hover { background: rgba(15, 23, 42, 0.02); }

.trust-stat .icon-circle {
  margin: 0 auto 14px;
}

.trust-stat .icon-circle svg { width: 20px; height: 20px; }

.trust-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 13px;
  font-weight: 500;
}

.dark .trust-label { color: rgba(226, 232, 240, 0.45); }
.light .trust-label { color: #94A3B8; }

.steps-section {
  padding: 80px 0 96px;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
}

.dark .steps-grid::before { background: rgba(226, 232, 240, 0.08); }
.light .steps-grid::before { background: rgba(15, 23, 42, 0.08); }

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.dark .step-number { background: #0D1B2A; border: 1px solid rgba(99, 102, 241, 0.2); color: #6366F1; }
.light .step-number { background: #F8FAFC; border: 1px solid rgba(79, 70, 229, 0.15); color: #4F46E5; }

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.65;
}

.dark .step-desc { color: rgba(226, 232, 240, 0.5); }
.light .step-desc { color: #64748B; }

.for-whom-section {
  padding: 80px 0 96px;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.for-whom-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.dark .for-whom-card {
  background: rgba(226, 232, 240, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.06);
}

.light .for-whom-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.for-whom-card:hover {
  transform: translateY(-3px);
}

.dark .for-whom-card:hover {
  background: rgba(226, 232, 240, 0.05);
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.light .for-whom-card:hover {
  border-color: rgba(79, 70, 229, 0.12);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.for-whom-card .icon-circle {
  margin-bottom: 20px;
}

.for-whom-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.for-whom-card p {
  font-size: 14px;
  line-height: 1.65;
  max-width: none;
}

.dark .for-whom-card p { color: rgba(226, 232, 240, 0.55); }
.light .for-whom-card p { color: #64748B; }

.gallery-section {
  padding: 80px 0 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery-card {
  overflow: hidden;
  padding: 0 !important;
  border-radius: 16px;
}

.dark .gallery-card { background: rgba(226, 232, 240, 0.03); border: 1px solid rgba(226, 232, 240, 0.06); }
.light .gallery-card { background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.06); box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04); }

.gallery-card:hover { transform: none; }

.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.ba-before { z-index: 1; }
.ba-after { z-index: 2; clip-path: inset(0 50% 0 0); }

.ba-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.ba-slider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.ba-slider::before {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  font-size: 14px;
  color: #444;
  pointer-events: none;
}

.gallery-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
}

.dark .gallery-hint { color: rgba(226, 232, 240, 0.4); }
.light .gallery-hint { color: #94A3B8; }

.why-section {
  padding: 80px 0 96px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .why-item { background: rgba(226, 232, 240, 0.02); border: 1px solid transparent; }
.light .why-item { background: transparent; border: 1px solid transparent; }

.dark .why-item:hover { background: rgba(226, 232, 240, 0.04); border-color: rgba(226, 232, 240, 0.06); }
.light .why-item:hover { background: rgba(15, 23, 42, 0.02); border-color: rgba(15, 23, 42, 0.06); }

.why-item .icon-circle {
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  line-height: 1.6;
  max-width: none;
}

.dark .why-item p { color: rgba(226, 232, 240, 0.5); }
.light .why-item p { color: #64748B; }

.scenarios-section {
  padding: 80px 0 96px;
}

.scenarios-list {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scenario-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.dark .scenario-item { background: rgba(226, 232, 240, 0.03); border: 1px solid rgba(226, 232, 240, 0.06); }
.light .scenario-item { background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.06); }

.scenario-item.open {
  border-color: rgba(99, 102, 241, 0.2);
}

.dark .scenario-item.open { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15); }
.light .scenario-item.open { box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06); }

.scenario-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.scenario-header span {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scenario-header span svg {
  width: 18px;
  height: 18px;
  color: #6366F1;
  flex-shrink: 0;
}

.scenario-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.dark .scenario-chevron { color: rgba(226, 232, 240, 0.35); }
.light .scenario-chevron { color: #94A3B8; }

.scenario-item.open .scenario-chevron { transform: rotate(180deg); color: #6366F1; }

.scenario-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.scenario-item.open .scenario-body { max-height: 300px; }

.scenario-content {
  padding: 0 24px 20px;
  padding-left: 56px;
  font-size: 14px;
  line-height: 1.7;
}

.dark .scenario-content { color: rgba(226, 232, 240, 0.55); }
.light .scenario-content { color: #64748B; }

.scenario-content ul { padding-left: 20px; margin: 8px 0; }
.scenario-content li { margin-bottom: 4px; }
.scenario-content li::before { content: '\2192 '; color: #6366F1; }

.testimonials-section {
  padding: 80px 0 96px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .testimonial-card {
  background: rgba(226, 232, 240, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.06);
}

.light .testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.dark .testimonial-card:hover {
  border-color: rgba(226, 232, 240, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.light .testimonial-card:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.testimonial-initials {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.dark .testimonial-initials { background: rgba(99, 102, 241, 0.12); color: #6366F1; }
.light .testimonial-initials { background: rgba(79, 70, 229, 0.08); color: #4F46E5; }

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.dark .testimonial-role { color: rgba(226, 232, 240, 0.35); }
.light .testimonial-role { color: #94A3B8; }

.testimonial-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #6366F1;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.dark .testimonial-text { color: rgba(226, 232, 240, 0.6); }
.light .testimonial-text { color: #64748B; }

.faq-section {
  padding: 80px 0 96px;
}

.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dark .faq-item { background: rgba(226, 232, 240, 0.03); border: 1px solid rgba(226, 232, 240, 0.06); }
.light .faq-item { background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.06); }

.faq-item.open { border-color: rgba(99, 102, 241, 0.2); }

.dark .faq-item.open { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15); }
.light .faq-item.open { box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq-question-text { font-size: 15px; font-weight: 600; flex: 1; }

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
}

.dark .faq-toggle { background: rgba(226, 232, 240, 0.06); }
.light .faq-toggle { background: rgba(15, 23, 42, 0.04); }

.faq-toggle svg { width: 18px; height: 18px; }

.faq-item.open .faq-toggle { transform: rotate(180deg); background: rgba(99, 102, 241, 0.15); }
.faq-item.open .faq-toggle svg { stroke: #6366F1; }

.dark .faq-chevron { color: rgba(226, 232, 240, 0.35); }
.light .faq-chevron { color: #94A3B8; }

.faq-item.open .faq-chevron { transform: rotate(180deg); color: #6366F1; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-text {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
}

.dark .faq-answer-text { color: rgba(226, 232, 240, 0.55); }
.light .faq-answer-text { color: #64748B; }

.guarantees-section {
  padding: 80px 0 96px;
}

.dark .guarantees-section { background: #0A1628; }
.light .guarantees-section { background: #F1F5F9; }

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 14px;
  text-align: left;
}

.dark .guarantee-card { background: rgba(226, 232, 240, 0.03); border: 1px solid rgba(226, 232, 240, 0.06); }
.light .guarantee-card { background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.06); }

.guarantee-card .icon-circle { flex-shrink: 0; margin-top: 2px; }
.guarantee-card .icon-circle svg { width: 20px; height: 20px; }

.guarantee-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.guarantee-desc {
  font-size: 13px;
  line-height: 1.6;
}

.dark .guarantee-desc { color: rgba(226, 232, 240, 0.5); }
.light .guarantee-desc { color: #64748B; }

.cta-section {
  padding: 80px 0 96px;
}

.cta-box {
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dark .cta-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.04));
  border: 1px solid rgba(99, 102, 241, 0.12);
}

.light .cta-box {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(79, 70, 229, 0.02));
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.dark .cta-subtitle { color: rgba(226, 232, 240, 0.6); }
.light .cta-subtitle { color: #64748B; }

.cta-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.dark .cta-badge { color: rgba(226, 232, 240, 0.5); }
.light .cta-badge { color: #64748B; }

.cta-badge svg { width: 16px; height: 16px; color: #6366F1; }

.footer {
  padding: 64px 0 40px;
}

.dark .footer { background: #0A1628; border-top: 1px solid rgba(226, 232, 240, 0.06); color: #E2E8F0; }
.light .footer { background: #0F172A; border-top: 1px solid rgba(255, 255, 255, 0.06); color: #F8FAFC; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #F8FAFC;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-bottom: 16px;
}

.footer-badge svg { width: 14px; height: 14px; stroke: #6366F1; }

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 700;
  color: #6366F1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-link:hover { color: #6366F1; }

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.3); }

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
}

.footer-social a svg { width: 18px; height: 18px; stroke: rgba(255, 255, 255, 0.5); }
.footer-social a:hover svg { stroke: #6366F1; }

.page-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.dark .page-hero { background: radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 60%), #0D1B2A; }
.light .page-hero { background: radial-gradient(ellipse at 50% 50%, rgba(79, 70, 229, 0.04) 0%, transparent 60%), #F8FAFC; }

.page-content { padding: 64px 0 80px; }

.page-content .card { max-width: 900px; margin: 0 auto 24px; }

.page-card-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.dark .page-card-number { background: rgba(99, 102, 241, 0.12); color: #6366F1; }
.light .page-card-number { background: rgba(79, 70, 229, 0.08); color: #4F46E5; }

.page-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-card-text {
  font-size: 14px;
  line-height: 1.7;
}

.dark .page-card-text { color: rgba(226, 232, 240, 0.6); }
.light .page-card-text { color: #64748B; }

.page-card-text ul, .page-card-text ol {
  padding-left: 20px;
  margin: 8px 0;
}

.page-card-text li { margin-bottom: 6px; }

.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 24px;
  padding: 16px 24px;
  border-radius: 12px;
}

.dark .info-card { background: rgba(226, 232, 240, 0.03); }
.light .info-card { background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.06); }

.highlight-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid transparent;
  position: relative;
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  z-index: -1;
}

.dark .highlight-card::before { background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05)); }
.light .highlight-card::before { background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(79, 70, 229, 0.05)); }

.dark .highlight-card { background: #1B263B; }
.light .highlight-card { background: #ffffff; }

.highlight-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.highlight-card ul { padding-left: 20px; }
.highlight-card li { margin-bottom: 8px; font-size: 14px; line-height: 1.6; }

.dark .highlight-card li { color: rgba(226, 232, 240, 0.6); }
.light .highlight-card li { color: #64748B; }

.highlight-card li::before { content: '\2713 '; color: #6366F1; font-weight: 700; }

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-title { font-size: 2.25rem; }
  .hero-features { gap: 16px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .cta-box { padding: 48px 24px; }
  .btn-primary, .btn-outline { padding: 12px 20px; font-size: 14px; }

  .scenario-content { padding-left: 24px; }
}
