:root {
  --bg: #08090c;
  --bg-soft: #0d0f12;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f4f7fb;
  --muted: #d2d6dd;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #b40014;
  --accent-strong: #ff2d3d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --container: min(1180px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(180, 0, 20, 0.24), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 45, 61, 0.10), transparent 22%),
    linear-gradient(180deg, #020202 0%, #0a0a0b 48%, #020202 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 999px;
}
.skip-link:focus { left: 1rem; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-dark { background: rgba(255,255,255,0.02); }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.eyebrow {
  margin: 0 0 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}
.mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

h1, h2, h3, p, ul { margin-top: 0; }
h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.7rem);
  line-height: 0.98;
  margin-bottom: 1.15rem;
  max-width: 11ch;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}
h3 { font-size: 1.3rem; line-height: 1.18; margin-bottom: 0.75rem; }
p, li { color: var(--muted); }
.lead { font-size: clamp(1.03rem, 1.65vw, 1.18rem); max-width: 62ch; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 16px 36px rgba(227, 38, 47, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(227, 38, 47, 0.28);
}
.button-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}
.button-small { min-height: 44px; padding: 0.75rem 1.05rem; }
.hero-actions .button, .cta-actions .button { flex: 1 1 220px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: stretch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 8, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand-logo {
  width: 72px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.26);
}
.brand-text {
  display: block;
  font-weight: 900;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-subtext {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a { color: #eef2f6; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  padding: 4.9rem 0 2.2rem;
  overflow: clip;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(227,38,47,0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.06), transparent 14%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 48%);
  pointer-events: none;
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.86fr);
  gap: 2.25rem;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-benefits {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  max-width: 42rem;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-benefits li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 0 6px rgba(227, 38, 47, 0.12);
  flex: 0 0 auto;
}
.hero-media { position: relative; }
.hero-image-shell {
  position: relative;
  min-height: 620px;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.44) 100%);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  animation: heroFloat 9s ease-in-out infinite;
}
.metric-row {
  position: relative;
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.metric-card,
.service-card,
.result-card,
.review-card,
.contact-form,
.image-panel,
.process-panel,
.cta-panel,
.faq-item,
.contact-copy,
.review-head,
.feature-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.metric-card {
  padding: 1.15rem 1rem;
  border-radius: 22px;
  text-align: center;
}
.metric-value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.metric-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.trust-track {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}
.trust-track span::before {
  content: "•";
  color: var(--accent-strong);
  margin-right: 1rem;
}

.service-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card,
.result-card {
  border-radius: var(--radius);
  padding: 1.55rem;
}
.service-number {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(180,0,20,0.18);
  border: 1px solid rgba(255,45,61,0.28);
  color: #ffffff;
  font-weight: 900;
}
.service-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
  display: grid;
  gap: 0.45rem;
}
.service-card li::marker { color: var(--accent-strong); }

.experience-grid,
.contact-grid,
.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 2rem;
  align-items: center;
}
.feature-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.feature-list article {
  border-radius: 22px;
  padding: 1rem 1.1rem;
}
.feature-list strong,
.process-steps strong,
.contact-points strong,
.footer-label {
  display: block;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.experience-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.gallery-card {
  aspect-ratio: 4 / 5;
}
.tilt-card {
  transform: translateY(0);
  animation: galleryFloat 7s ease-in-out infinite;
}
.delay-card-1 { animation-delay: 0.8s; }
.delay-card-2 { animation-delay: 1.6s; }
.image-panel {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card img {
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.02) contrast(1.03);
}
.gallery-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.06);
}

.process-panel {
  margin-top: 1.3rem;
  border-radius: calc(var(--radius) + 6px);
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  align-items: center;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.process-steps div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.review-head {
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}
.review-track { position: relative; min-height: 260px; }
.review-card {
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 6px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.review-card.active {
  opacity: 1;
  transform: translateY(0);
}
.carousel-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.carousel-button:hover { transform: scale(1.04); background: rgba(255,255,255,0.09); }
.stars {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: #ffd972;
  margin-bottom: 1rem;
}
.review-controls { margin-top: 1rem; }
.review-dots {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
}
.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.review-dot.active {
  background: var(--accent-strong);
  transform: scale(1.15);
}

.faq-copy,
.contact-copy {
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem;
}
.faq-grid {
  display: grid;
  gap: 0.85rem;
}
.faq-item {
  border-radius: 22px;
  padding: 1rem 1.15rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.8rem 0 0; }

.cta-band { padding-top: 0; }
.cta-panel {
  border-radius: calc(var(--radius) + 10px);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
}

.contact-grid { align-items: start; }
.contact-points {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.9rem;
}
.contact-form {
  border-radius: calc(var(--radius) + 10px);
  padding: 1.45rem;
  display: grid;
  gap: 0.95rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
  color: #fff;
  padding: 0.95rem 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #93a0b2; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(255, 73, 84, 0.35);
  outline-offset: 1px;
  border-color: rgba(255, 73, 84, 0.45);
}
.hidden-field { position: absolute; left: -9999px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.85fr;
  gap: 1.4rem;
}
.footer-brand { max-width: 28rem; }
.footer-logo {
  width: 88px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer-wrap a {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--muted);
}
.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(227, 38, 47, 0.28);
}
.floating-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.floating-call-icon svg { width: 22px; height: 22px; display: block; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@keyframes heroFloat {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.04) translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-layout,
  .experience-grid,
  .contact-grid,
  .faq-layout,
  .cta-panel,
  .process-panel,
  .footer-wrap {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .result-grid,
  .metric-row,
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-image-shell { min-height: 560px; }
  
}

@media (max-width: 780px) {
  .section { padding: 4.3rem 0; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(10, 12, 16, 0.98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero { padding-top: 3.8rem; }
  h1 { max-width: 12ch; }
  .hero-image-shell { min-height: 460px; }
  .service-grid,
  .result-grid,
  .metric-row,
  .process-steps,
  .experience-gallery { grid-template-columns: 1fr; }
  .review-carousel { grid-template-columns: 1fr; }
  .review-track { min-height: 360px; }
  .carousel-button { display: none; }
  .review-head { align-items: start; }
}

@media (max-width: 780px) {
  .hero-actions, .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero-actions .button,
  .cta-actions .button,
  .review-head .button-small {
    width: 100%;
  }
  .review-controls { margin-top: 1.25rem; }
  .review-dot { width: 16px; height: 16px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 1.1rem, 100%); }
  .nav-wrap { min-height: 78px; }
  .brand-logo { width: 58px; }
  .brand-subtext { display: none; }
  h1 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .button, .button-small { width: 100%; }
  .hero-actions, .cta-actions { display: grid; }
  .hero-image-shell { min-height: 400px; }
  .metric-card,
  .service-card,
  .result-card,
  .review-card,
  .contact-form,
  .faq-item,
  .cta-panel,
  .contact-copy,
  .review-head { padding: 1.2rem; }
  .floating-call {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 54px;
    height: 54px;
  }
}

@keyframes galleryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.review-card p { font-size: 1.04rem; }
.footer-bottom a { color: #fff; text-decoration: underline; text-underline-offset: 0.18em; }
