:root {
  --bg: #0c0c0c;
  --bg-soft: #0f0f0f;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --accent: #ff3b30;
  --accent-soft: rgba(255, 59, 48, 0.12);
  --text: #ffffff;
  --text-muted: #8a8a8a;
  --text-dim: #525252;
  --section-x: 80px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.section {
  padding: 80px 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 59, 48, 0), rgba(255, 59, 48, 0.3), rgba(255, 59, 48, 0));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--text);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.icon {
  display: inline-flex;
  width: var(--icon-size, 18px);
  height: var(--icon-size, 18px);
  color: var(--icon-color, currentColor);
}

.icon svg {
  width: 100%;
  height: 100%;
}

.site-header {
  position: relative;
  z-index: 3;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.logo-text {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px;
  z-index: 50;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

body.menu-open .mobile-nav {
  transform: translateX(0);
}

body.menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 360px 100%, 360px 100%;
  opacity: 0.35;
  pointer-events: none;
  animation: grid-breathe 14s ease-in-out infinite;
}

.hero-orb,
.hero-orb-small,
.hero-orb-soft,
.hero-cube,
.hero-cube-small,
.hero-sphere,
.hero-sphere-small,
.hero-ring,
.hero-diamond {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-orb {
  top: 100px;
  right: 120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.14) 0%, rgba(255, 59, 48, 0) 70%);
  animation: orb-float-1 18s ease-in-out infinite;
}

.hero-orb-small {
  left: 200px;
  top: 300px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.09) 0%, rgba(255, 59, 48, 0) 70%);
  animation: orb-float-2 16s ease-in-out infinite;
}

.hero-orb-soft {
  right: 40px;
  bottom: 120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 26, 21, 0.1) 0%, rgba(12, 12, 12, 0) 70%);
  animation: orb-float-3 22s ease-in-out infinite;
}

.hero-cube,
.hero-cube-small,
.hero-diamond {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.16), rgba(255, 59, 48, 0.02));
  border: 1px solid rgba(255, 59, 48, 0.12);
  box-shadow: 0 20px 40px rgba(255, 59, 48, 0.08);
}

.hero-cube {
  left: 80px;
  top: 180px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  transform: rotate(15deg);
  animation: cube-drift-1 12s ease-in-out infinite;
}

.hero-cube-small {
  right: 100px;
  top: 250px;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  transform: rotate(-20deg);
  animation: cube-drift-2 10s ease-in-out infinite;
}

.hero-sphere,
.hero-sphere-small {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 59, 48, 0.3), rgba(255, 59, 48, 0) 70%);
  box-shadow: 0 12px 24px rgba(255, 59, 48, 0.1);
}

.hero-sphere {
  right: 80px;
  top: 520px;
  width: 40px;
  height: 40px;
  animation: sphere-pulse 8s ease-in-out infinite;
}

.hero-sphere-small {
  left: 50px;
  top: 500px;
  width: 28px;
  height: 28px;
  animation: sphere-pulse 7s ease-in-out infinite reverse;
}

.hero-ring {
  right: 180px;
  top: 120px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 59, 48, 0.2);
  animation: ring-orbit 14s linear infinite;
}

.hero-diamond {
  left: 180px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  transform: rotate(45deg);
  animation: diamond-spin 11s ease-in-out infinite;
}

@keyframes grid-breathe {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.38;
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes orb-float-1 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(-20px, 24px, 40px) scale(1.05);
    opacity: 0.95;
  }
}

@keyframes orb-float-2 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 30px) scale(1.08);
  }
}

@keyframes orb-float-3 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(-14px, -10px, 20px) scale(1.04);
    opacity: 0.75;
  }
}

@keyframes cube-drift-1 {
  0%,
  100% {
    transform: rotate(15deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(32deg) translate3d(12px, -10px, 48px);
  }
}

@keyframes cube-drift-2 {
  0%,
  100% {
    transform: rotate(-20deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-38deg) translate3d(-10px, 12px, 42px);
  }
}

@keyframes sphere-pulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(0, -8px, 30px) scale(1.18);
    opacity: 0.9;
  }
}

@keyframes ring-orbit {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(180deg) translate3d(0, 10px, 36px);
  }
  100% {
    transform: rotate(360deg) translate3d(0, 0, 0);
  }
}

@keyframes diamond-spin {
  0%,
  100% {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(225deg) translate3d(8px, -12px, 36px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 0 100px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 59, 48, 0.25);
  background: rgba(255, 59, 48, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
}

.hero-subtitle {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logos {
  padding: 32px 0;
  text-align: center;
}

.trust-label {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
}

.trust-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.trust-pill-name {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 40px 0;
}

.stat-card {
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a1a, #141414);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.stat-card strong {
  display: block;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 15px;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-kicker {
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.section-title-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title {
  max-width: 600px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  min-height: 280px;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a1a, #141414);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 59, 48, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  padding: 32px;
  border-radius: 20px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  color: rgba(255, 59, 48, 0.2);
}

.step-card h3 {
  margin-top: 16px;
  font-size: 22px;
}

.step-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.testimonial-card {
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a1a, #141414);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.page-hero .container {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.page-hero-title {
  max-width: 820px;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.page-hero-text {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 48px;
  padding: 48px;
  min-height: 388px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a1a, #141414);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
  align-items: center;
}

.service-detail-card.reverse {
  grid-template-columns: 480px minmax(0, 1fr);
}

.service-detail-box {
  padding: 24px;
  min-height: 320px;
  border-radius: 16px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
}

.service-detail-box .price-item {
  color: var(--text);
}

.service-detail-card h3 {
  font-size: 32px;
  line-height: 1.15;
}

.service-detail-card p {
  margin-top: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-card {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.case-card.reverse {
  grid-template-columns: minmax(0, 1fr) 560px;
}

.case-image {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.case-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.case-content h3 {
  font-size: 26px;
  line-height: 1.2;
}

.case-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.case-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.case-stat strong {
  display: block;
  color: var(--accent);
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 28px;
}

.case-stat span {
  color: var(--text-dim);
  font-size: 12px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: 20px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  isolation: isolate;
}

.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 59, 48, 0.12);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 12px -10px -28px;
  z-index: -1;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 59, 48, 0.5), rgba(255, 59, 48, 0) 65%);
  filter: blur(30px);
  opacity: 0.95;
}

.price-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-tier {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.price-card.featured .price-tier {
  color: var(--accent);
}

.price-value-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.price-value {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
}

.price-period {
  color: var(--text-dim);
  font-size: 16px;
}

.price-copy {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-divider {
  width: 100%;
  height: 1px;
  background: #2a2a2a;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  margin-top: auto;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.price-btn:hover {
  transform: translateY(-1px);
  border-color: #555;
}

.price-card.featured .price-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(255, 59, 48, 0.3);
}

.pricing-grid-large {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.faq-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1120px;
  margin: 48px auto 0;
}

.faq-row {
  padding: 24px;
  border-radius: 12px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.faq-row strong {
  display: block;
  font-size: 18px;
}

.faq-row p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 48px;
}

.form-card,
.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-card {
  padding: 40px;
  border-radius: 20px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.form-card h3 {
  font-size: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.field-group input,
.field-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #3a3a3a;
  background: #242424;
  color: var(--text);
  font: inherit;
}

.field-group textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--text-dim);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 24px;
  border-radius: 16px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 59, 48, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-card small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.contact-card strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.form-card .btn {
  width: 100%;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-consent a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 59, 48, 0.5);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 0;
  background: linear-gradient(180deg, #1a0a08, #0c0c0c);
}

.cta-content {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  padding: 80px 0;
}

.cta-title {
  max-width: 700px;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.cta-text {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 0 0;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-columns {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 14px;
}

.footer-divider {
  height: 1px;
  background: #1a1a1a;
  margin-top: 48px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0 32px;
  color: #5d5d5d;
  font-size: 12px;
}

@media (max-width: 1200px) {
  :root {
    --section-x: 48px;
  }

  .hero-title {
    font-size: 60px;
  }

  .stats-grid,
  .cards-3,
  .steps-grid,
  .testimonials-grid,
  .pricing-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-card,
  .service-detail-card.reverse,
  .contact-grid,
  .case-card,
  .case-card.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav .btn {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  :root {
    --section-x: 24px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle,
  .cta-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .cards-3,
  .steps-grid,
  .testimonials-grid,
  .pricing-grid-large {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .page-hero-title,
  .cta-title {
    font-size: 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
    width: 100%;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-columns {
    gap: 32px;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid-lines,
  .hero-orb,
  .hero-orb-small,
  .hero-orb-soft,
  .hero-cube,
  .hero-cube-small,
  .hero-sphere,
  .hero-sphere-small,
  .hero-ring,
  .hero-diamond {
    animation: none !important;
  }
}
