* {
  box-sizing: border-box;
}

:root {
  --bg: #08111f;
  --bg-2: #0f172a;
  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --line: #e5e7eb;
  --red: #e11d48;
  --red-dark: #be123c;
  --soft: #f8fafc;
  --soft-2: #f1f5f9;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.15);
}

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: #fff;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d7dce3;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: 0.2s ease;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  padding: 0;
  border-radius: 6px;
  box-shadow: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}

.brand-logo,
.brand-logo-image {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef4444, #be123c);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(225, 29, 72, 0.32);
  overflow: hidden;
}

.brand-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.desktop-nav,
.desktop-cta,
.nav-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 8px;
}

.nav-actions {
  gap: 10px;
}

.nav-btn {
  padding: 12px 16px;
  border-radius: 999px;
  background: transparent;
  color: #cbd5e1;
  transition: 0.2s ease;
}

.nav-btn:hover,
.mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-btn.active,
.mobile-link.active {
  background: var(--red);
  color: white;
}

.menu-btn {
  display: none;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #07101e;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 18px 0 20px;
}

.mobile-link {
  display: block;
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
}

.btn {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ef4444, #d90429);
  color: white;
  box-shadow: 0 18px 34px rgba(225, 29, 72, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-secondary.inverse {
  background: rgba(255, 255, 255, 0.06);
}

.btn-light {
  background: white;
  color: var(--red-dark);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn.small {
  padding: 12px 16px;
}

.btn.block {
  display: block;
  width: 100%;
}

.red-outline {
  background: transparent;
  color: var(--red-dark);
  border: 1px solid #f2b6c4;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.22), transparent 24%),
    radial-gradient(circle at 25% 80%, rgba(56, 189, 248, 0.14), transparent 18%),
    linear-gradient(135deg, #020617 0%, #111827 46%, #0f172a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(225, 29, 72, 0.22), transparent 20%),
    radial-gradient(circle at right bottom, rgba(245, 158, 11, 0.12), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 64px 0;
}

.hero-copy h1,
.page-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  max-width: 700px;
  color: #dbe3ef;
  font-size: 1.06rem;
  line-height: 1.8;
}

.pill,
.eyebrow {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.pill {
  background: rgba(255, 255, 255, 0.08);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  padding: 0;
  background: transparent;
  color: var(--red);
}

.eyebrow.light,
.section-title h2.light,
.section-text.light {
  color: white;
}

.section-title h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-text {
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.stat-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-chip {
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}

.dots {
  display: flex;
  gap: 8px;
  margin-left: 4px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.dot.active {
  width: 34px;
  background: var(--red);
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-panel {
  position: relative;
}

.glass-card {
  position: relative;
  border-radius: 34px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

.mini-card {
  background: rgba(2, 6, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  padding: 24px;
}

.mini-card h3,
.plan-card h3,
.white-plan h3,
.info-card h3,
.feature-box h3,
.coverage-box h3,
.contact-panel h2,
.form-card h2,
.dark-card h3,
.soft-card h3,
.cta-row h3,
.article-card h3,
.faq-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.mini-card p,
.info-card p,
.feature-box p,
.testimonial-card span,
.coverage-box p,
.contact-panel p,
.form-card p,
.soft-card p,
.cta-row p,
.footer-copy,
.footer-links span,
.footer-links a,
.article-card p,
.faq-card p {
  color: #d3d9e6;
  line-height: 1.75;
}

.mini-icon,
.icon-box,
.feature-icon,
.article-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.45rem;
}

.mini-icon,
.article-icon {
  background: rgba(239, 68, 68, 0.12);
  margin-bottom: 16px;
}

.mini-card.full {
  grid-column: 1 / -1;
}

.mini-eyebrow,
.plan-accent,
.coverage-eyebrow,
.meta-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 800;
}

.mini-eyebrow,
.plan-accent,
.meta-kicker {
  color: #fda4af;
}

.input-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.input-row input,
.input-row select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.input-row input::placeholder {
  color: #94a3b8;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: white;
}

.section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-dark {
  background: linear-gradient(135deg, #020617 0%, #0f172a 52%, #111827 100%);
  color: white;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.testimonial-card,
.white-plan,
.form-card,
.soft-card,
.article-card,
.faq-card,
.team-card,
.client-card,
.media-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.info-card p,
.white-plan li,
.feature-box p,
.testimonial-card .quote,
.contact-panel p,
.form-card p,
.soft-card p,
.article-card p,
.faq-card p,
.team-card p,
.client-card p,
.media-card p {
  color: var(--muted);
}

.info-card ul,
.plan-card ul,
.white-plan ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.info-card li,
.plan-card li,
.white-plan li {
  margin-bottom: 12px;
}

.icon-box {
  background: #fff1f2;
  margin-bottom: 16px;
}

.plan-card {
  border-radius: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  outline: 2px solid rgba(239, 68, 68, 0.85);
}

.price {
  margin: 14px 0 20px;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price.dark {
  color: var(--text);
}

.plan-accent.red {
  color: var(--red);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-box {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
}

.feature-icon {
  background: #fff1f2;
  margin-bottom: 14px;
}

.coverage-box {
  border-radius: 34px;
  padding: 34px;
  color: white;
  background: linear-gradient(135deg, #ef4444 0%, #be123c 100%);
  box-shadow: var(--shadow);
}

.coverage-eyebrow {
  color: #ffe4e6;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 26px;
}

.city-pill {
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-card .quote {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.testimonial-card strong,
.team-card strong {
  display: block;
  margin-bottom: 4px;
}

.cta-strip {
  padding-top: 0;
}

.cta-row {
  border-radius: 34px;
  padding: 40px;
  color: white;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.page-hero {
  color: white;
  padding: 92px 0;
}

.page-hero.dark-red {
  background: linear-gradient(135deg, #111827 0%, #0f172a 60%, #7f1d1d 100%);
}

.page-hero.dark-blue {
  background: linear-gradient(135deg, #0f172a 0%, #111827 55%, #7f1d1d 100%);
}

.page-hero.bright-red {
  background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 36%, #111827 100%);
}

.top-gap {
  margin-top: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
}

.contact-panel {
  border-radius: 34px;
  padding: 30px;
  color: white;
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
  box-shadow: var(--shadow);
}

.contact-item {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item span {
  margin-top: 8px;
  color: #dbe3ef;
}

.form-grid {
  margin: 24px 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.field-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label-site {
  font-weight: 700;
  color: var(--text);
}

.required-mark {
  color: var(--red);
}

.field-help {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.dynamic-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
}

.dynamic-form-grid {
  align-items: start;
}

.form-static-block {
  gap: 12px;
}

.form-section-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.form-section-title.compact {
  font-size: 1.05rem;
}

.form-paragraph {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  white-space: pre-line;
}

.form-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 6px 0 2px;
}

.choice-group {
  display: grid;
  gap: 12px;
}

.choice-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.choice-option span {
  line-height: 1.5;
}

.checkbox-field {
  align-items: center;
}

.span-2 {
  grid-column: 1 / -1;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 26px;
}

.side-stack {
  display: grid;
  gap: 22px;
}

.dark-card {
  border-radius: 34px;
  padding: 30px;
  color: white;
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
  box-shadow: var(--shadow);
}

.soft-card {
  background: #fff1f2;
  border-color: #fecdd3;
}

.steps {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.step p {
  margin: 0;
  color: #dbe3ef;
  line-height: 1.7;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--red);
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at top, rgba(239, 68, 68, 0.18), transparent 18%),
    linear-gradient(135deg, #020617 0%, #0f172a 60%, #111827 100%);
}

.footer-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(225, 29, 72, 0.16), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(239, 68, 68, 0.12), transparent 14%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 26px;
  padding: 72px 0 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 360px;
  color: #cbd5e1;
}

.badge-row,
.social-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge,
.social-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.site-footer h3 {
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  padding: 0;
  color: #cbd5e1;
}

.footer-news {
  margin: 18px 0 0;
}

.top-gap-sm {
  margin-top: 20px;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0 34px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.alert-banner {
  margin: 24px auto 0;
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 600;
}

.alert-banner.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-banner.danger {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

.page-copy,
.article-content {
  line-height: 1.9;
  color: var(--muted);
}

.section-stack {
  display: grid;
  gap: 18px;
}

.section-stack .info-card {
  height: 100%;
}

.blog-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-card details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-card details summary::-webkit-details-marker {
  display: none;
}

.faq-card details[open] summary {
  margin-bottom: 14px;
}

.team-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.avatar-chip,
.client-logo-chip {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #fff1f2;
  color: var(--red-dark);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.media-preview {
  display: block;
  min-height: 180px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fef2f2, #eff6ff);
  margin-bottom: 16px;
}

.empty-state {
  padding: 26px;
  border: 1px dashed #d7dce3;
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .request-grid,
  .footer-grid,
  .cta-row {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .feature-grid,
  .team-grid,
  .client-grid,
  .blog-grid,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .feature-grid,
  .mini-grid,
  .city-grid,
  .form-grid,
  .team-grid,
  .client-grid,
  .blog-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .span-2,
  .mini-card.full {
    grid-column: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 56px 0;
  }

  .section,
  .page-hero {
    padding: 68px 0;
  }

  .info-card,
  .testimonial-card,
  .white-plan,
  .form-card,
  .soft-card,
  .contact-panel,
  .dark-card,
  .coverage-box,
  .glass-card,
  .cta-row,
  .article-card,
  .faq-card,
  .team-card,
  .client-card,
  .media-card {
    padding: 22px;
    border-radius: 24px;
  }

  .input-row,
  .hero-actions,
  .footer-bottom,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn.small {
    width: 100%;
    text-align: center;
  }
}
