:root {
  --red: #d60000;
  --red-dark: #9f0000;
  --red-ink: #7f0000;
  --red-soft: #ffebeb;
  --black: #111111;
  --text-main: #1f1f1f;
  --text-soft: #4a4a4a;
  --surface-soft: #f8f8f9;
  --gray-900: #1f1f1f;
  --gray-700: #3f3f3f;
  --gray-300: #d3d3d3;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.12);
  --glow-red: rgba(214, 0, 0, 0.2);
  --glow-soft: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 2% 4%, rgba(214, 0, 0, 0.07) 0%, transparent 24%),
    radial-gradient(circle at 98% 8%, rgba(214, 0, 0, 0.05) 0%, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 38%, #f8f8f9 100%);
}

.home-page {
  --page-glow-a: rgba(214, 0, 0, 0.14);
  --page-glow-b: rgba(0, 0, 0, 0.12);
}

.services-page {
  --page-glow-a: rgba(255, 106, 106, 0.13);
  --page-glow-b: rgba(111, 0, 0, 0.12);
}

.about-page {
  --page-glow-a: rgba(214, 0, 0, 0.1);
  --page-glow-b: rgba(35, 35, 35, 0.14);
}

.prices-page {
  --page-glow-a: rgba(214, 0, 0, 0.12);
  --page-glow-b: rgba(62, 62, 62, 0.12);
}

.contact-page {
  --page-glow-a: rgba(214, 0, 0, 0.12);
  --page-glow-b: rgba(0, 0, 0, 0.1);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(34px);
}

body::before {
  top: -120px;
  left: -110px;
  background: radial-gradient(circle, var(--page-glow-a, rgba(214, 0, 0, 0.16)), rgba(214, 0, 0, 0));
}

body::after {
  bottom: -130px;
  right: -110px;
  background: radial-gradient(circle, var(--page-glow-b, rgba(0, 0, 0, 0.12)), rgba(0, 0, 0, 0));
}

main {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(214, 0, 0, 0.55);
  outline-offset: 2px;
  border-radius: 8px;
}

p {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

h2 {
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.topbar {
  background: rgba(17, 17, 17, 0.9);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 2px solid var(--red);
  backdrop-filter: blur(8px);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 95, 95, 0.9) 50%, transparent 100%);
  opacity: 0.75;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.logo {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.logo span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-backdrop {
  display: none;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.45);
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav a {
  position: relative;
  color: var(--gray-300);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.35rem 0.2rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav a:not(.btn):hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black), var(--gray-700));
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 45%, rgba(255, 75, 75, 0.22) 0%, transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
  z-index: 1;
}

.hero-home {
  min-height: clamp(430px, 58vh, 640px);
  display: flex;
  align-items: center;
}

.hero-home .hero-grid {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.8;
  filter: saturate(1.1) contrast(1.04) brightness(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.66) 16%, rgba(0, 0, 0, 0.34) 55%, rgba(0, 0, 0, 0.68) 100%),
  linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.29) 100%),
  radial-gradient(circle at 20% 20%, rgba(214, 0, 0, 0.14) 0%, transparent 36%);
}

.services-page .hero-overlay {
  background:
    linear-gradient(125deg, rgba(10, 10, 10, 0.8) 18%, rgba(65, 6, 6, 0.45) 62%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 126, 126, 0.2) 0%, transparent 36%);
}

.about-page .hero {
  background: linear-gradient(130deg, #1c1c1c, #2a2a2a);
}

.about-page .hero::after {
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 75, 75, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.1) 0%, transparent 34%);
}

.prices-page .hero {
  background: linear-gradient(130deg, #171717, #2a1010);
}

.prices-page .hero::after {
  background:
    radial-gradient(circle at 15% 36%, rgba(255, 94, 94, 0.23) 0%, transparent 38%),
    radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
}

.contact-page .hero {
  background: linear-gradient(135deg, #151515, #241212);
}

.contact-page .hero::after {
  background:
    radial-gradient(circle at 12% 38%, rgba(255, 100, 100, 0.2) 0%, transparent 38%),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.09) 0%, transparent 30%);
}

.hero-page {
  padding: 3.2rem 0;
}

.hero-page .lead {
  max-width: 75ch;
}

.hero-page .container {
  position: relative;
  z-index: 2;
}

.hero-services {
  min-height: clamp(360px, 48vh, 520px);
  display: flex;
  align-items: center;
  background-image: url("https://as2.ftcdn.net/v2/jpg/06/40/33/17/1000_F_640331718_vKhR5zbsnMP87zec1EhBs1oAoyJXjEUg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-services .hero-video {
  opacity: 0.66;
  filter: saturate(1.05) contrast(1.04);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  color: #ff8d8d;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 0.5rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
  position: relative;
  z-index: 2;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(18, 18, 18, 0.38);
  color: #f7f7f7;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.lead {
  color: #f0f0f0;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 68ch;
}

.hero-card {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.74), rgba(20, 20, 20, 0.52));
  border: 1px solid #2d2d2d;
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px) saturate(1.08);
  -webkit-backdrop-filter: blur(6px) saturate(1.08);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
}

.hero-card p,
.hero-card li {
  color: #efefef;
}

.hero-card h2 {
  margin-top: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.hero-home h1,
.hero-services h1 {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(214, 0, 0, 0.2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero .cta-row .btn {
  animation: ctaPulseSoft 3.4s ease-in-out infinite;
}

.hero .cta-row .btn:nth-child(2) {
  animation-delay: 0.7s;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  font-weight: 700;
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 0.75rem 1.2rem;
  box-shadow: 0 8px 18px rgba(214, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(214, 0, 0, 0.24),
    0 9px 20px rgba(159, 0, 0, 0.3);
}

.btn[disabled] {
  opacity: 0.78;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 0.55rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}

.btn::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -150%;
  width: 52%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(159, 0, 0, 0.35);
}

.btn:hover::before {
  opacity: 1;
  animation: btnShimmer 0.85s ease;
}

.btn:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-small {
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
}

.btn-big {
  padding: 0.9rem 1.3rem;
  font-size: 1.05rem;
}

.section {
  padding: 3.4rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 620px;
}

.section:nth-of-type(even):not(.section-dark):not(.section-accent) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(248, 248, 249, 0.9));
}

.services-page .section:nth-of-type(even):not(.section-dark):not(.section-accent) {
  background: linear-gradient(180deg, rgba(255, 247, 247, 0.9), rgba(248, 246, 246, 0.92));
}

.about-page .section:nth-of-type(even):not(.section-dark):not(.section-accent) {
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.92), rgba(244, 244, 246, 0.95));
}

.prices-page .section:nth-of-type(even):not(.section-dark):not(.section-accent) {
  background: linear-gradient(180deg, rgba(255, 246, 246, 0.88), rgba(245, 244, 244, 0.95));
}

.contact-page .section:nth-of-type(even):not(.section-dark):not(.section-accent) {
  background: linear-gradient(180deg, rgba(255, 248, 248, 0.9), rgba(245, 243, 243, 0.94));
}

.section + .section {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.section-cta {
  margin-top: 1.2rem;
}

.section h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-top: 0;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.section-intro {
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 74ch;
  margin-top: -0.2rem;
  margin-bottom: 1.2rem;
}

.card,
.service-card,
.check-card,
.faq-item,
.contact-card,
.price-box,
.info-box {
  color: var(--text-main);
  border-color: #cecece;
  position: relative;
}

.card p,
.service-content p,
.check-card p,
.faq-item p,
.contact-meta,
.info-box p,
.muted {
  color: var(--text-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #b9b9b9;
}

.card h3 {
  margin-top: 0;
  color: var(--red);
  line-height: 1.35;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-grid-lg {
  gap: 1.25rem;
}

.service-grid-lg .service-card {
  border-width: 2px;
}

.service-grid-lg .service-image {
  height: 230px;
}

.service-grid-lg .service-content {
  padding: 1.2rem 1.25rem 1.35rem;
}

.service-grid-lg .service-content h3 {
  font-size: 1.22rem;
}

.service-grid-lg .service-content p {
  font-size: 1.03rem;
}

.service-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 100%);
  transform: translateX(-140%);
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  transform: translateX(140%);
  opacity: 1;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.service-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--red);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-image {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.service-content {
  padding: 1rem 1.1rem 1.2rem;
}

.service-content h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #ffe0e0;
  font-size: 0.95rem;
}

.service-content p {
  margin: 0;
  line-height: 1.75;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.check-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.check-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.check-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--red);
  line-height: 1.35;
}

.check-card p {
  margin-bottom: 0;
}

.muted {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
  background: var(--white);
}

.table th,
.table td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #e9e9e9;
  vertical-align: top;
}

.table th {
  background: linear-gradient(180deg, #f7f7f7, #eeeeee);
  font-size: 0.95rem;
  color: #2b2b2b;
}

.table tbody tr:nth-child(even) {
  background: #fbfbfb;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  color: var(--red);
  font-size: 1.05rem;
}

.info-box a,
.contact-card a,
.faq-item a,
.check-card a,
.card a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item p {
  margin: 0;
  line-height: 1.65;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.55rem;
}

.prices-page .badge,
.services-page .badge {
  background: linear-gradient(180deg, #ffe9e9, #ffdede);
}

.notice {
  border-left: 4px solid var(--red);
  background: #fff5f5;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  margin-top: 0.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(214, 0, 0, 0.12);
}

.notice p {
  margin: 0;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-box {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, #fcfcfc, #f4f4f4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.info-box p {
  line-height: 1.72;
}

.list-clean {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .section-intro,
.section-dark .muted {
  color: #d8d8d8;
}

.section-dark .card,
.section-dark .check-card,
.section-dark .faq-item,
.section-dark .contact-card,
.section-dark .price-box,
.section-dark .info-box {
  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  color: var(--text-main);
}

.section-dark .card h2,
.section-dark .card h3,
.section-dark .check-card h2,
.section-dark .check-card h3,
.section-dark .faq-item h2,
.section-dark .faq-item h3,
.section-dark .contact-card h2,
.section-dark .contact-card h3,
.section-dark .price-box h2,
.section-dark .price-box h3,
.section-dark .info-box h2,
.section-dark .info-box h3 {
  color: var(--red-dark);
}

.section-dark .card p,
.section-dark .check-card p,
.section-dark .faq-item p,
.section-dark .contact-card p,
.section-dark .price-box p,
.section-dark .info-box p,
.section-dark .contact-meta,
.section-dark .muted {
  color: #3f3f3f;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.features > div {
  background: linear-gradient(180deg, #222, #181818);
  border: 1px solid #343434;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.features > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  border-color: #4a4a4a;
}

.features h3 {
  margin-top: 0;
  color: #ff6c6c;
}

.price-box {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: var(--gray-100);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.section-accent {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.section-accent::before,
.section-accent::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 65%);
}

.section-accent::before {
  top: -120px;
  right: -80px;
}

.section-accent::after {
  bottom: -150px;
  left: -90px;
}

.section-accent .btn-outline {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.96);
  color: var(--black);
}

.section-accent .btn-outline:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-card.is-highlight {
  border-color: rgba(214, 0, 0, 0.32);
  background: linear-gradient(170deg, #fff 0%, #fff6f6 100%);
  box-shadow: 0 12px 26px rgba(159, 0, 0, 0.12);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* cinematic polish (desktop only) */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .hero-home,
  .hero-services {
    background-attachment: fixed;
  }

  .hero-video {
    animation: heroVideoDrift 20s ease-in-out infinite alternate;
  }

  .section-accent::before {
    animation: floatGlowA 10s ease-in-out infinite;
  }

  .section-accent::after {
    animation: floatGlowB 12s ease-in-out infinite;
  }
}

@keyframes heroVideoDrift {
  0% {
    transform: scale(1.03) translateY(0);
  }
  100% {
    transform: scale(1.08) translateY(-10px);
  }
}

@keyframes floatGlowA {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.75;
  }
  50% {
    transform: translate(-18px, 12px);
    opacity: 1;
  }
}

@keyframes floatGlowB {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.65;
  }
  50% {
    transform: translate(14px, -16px);
    opacity: 0.95;
  }
}

@keyframes btnShimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 170%;
  }
}

@keyframes ctaPulseSoft {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(214, 0, 0, 0.25);
  }
  50% {
    transform: translateY(-1.5px);
    box-shadow: 0 12px 24px rgba(159, 0, 0, 0.35);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: var(--red);
}

.contact-value {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.contact-meta {
  margin: 0;
  color: #555;
  line-height: 1.65;
}

.contact-note {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #4f4f4f;
}

.form-intro {
  margin-bottom: 1rem;
}

.request-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.form-group {
  display: grid;
  gap: 0.38rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label,
.consent-label {
  font-weight: 700;
  color: var(--gray-900);
}

.form-group label span,
.consent-label span {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  color: var(--text-main);
  padding: 0.72rem 0.78rem;
  font: inherit;
  line-height: 1.45;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
  border-color: rgba(159, 0, 0, 0.7);
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(214, 0, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(214, 0, 0, 0.14);
  outline: none;
}

.field-hint {
  color: #606060;
  font-size: 0.84rem;
}

.consent-row {
  margin-top: -0.1rem;
}

.consent-label {
  display: flex;
  gap: 0.58rem;
  align-items: flex-start;
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 600;
}

.consent-label input {
  margin-top: 0.16rem;
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #0f7e2a;
}

.form-status.is-error {
  color: var(--red-dark);
}

.home-page .cards .card:hover {
  transform: translateY(-5px) rotateX(3deg);
}

.home-page .hero-chip {
  background: rgba(20, 10, 10, 0.46);
}

.home-page .hero-card {
  border-image: linear-gradient(180deg, var(--red), #ff8a8a) 1;
}

.services-page .service-card:hover {
  transform: translateY(-5px) scale(1.01);
}

.services-page .section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.services-page .section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(214, 0, 0, 0.12) 100%);
}

.services-page .service-grid-lg .service-card {
  border-color: #e3c7c7;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f9 100%);
}

.services-page .service-grid-lg .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff3b3b 0%, #8b0000 100%);
  z-index: 2;
}

.services-page .service-icon {
  background: radial-gradient(circle at 30% 30%, #ffe7e7, #ffd0d0);
  box-shadow: 0 6px 14px rgba(214, 0, 0, 0.16);
}

.services-page .service-card:hover {
  box-shadow: 0 18px 34px rgba(130, 0, 0, 0.22);
}

.services-page .hero-chip {
  background: rgba(48, 10, 10, 0.45);
}

.services-page .service-content h3 {
  transition: letter-spacing 0.2s ease;
}

.services-page .service-card:hover .service-content h3 {
  letter-spacing: 0.15px;
}

.about-page .detail-grid .check-card:hover {
  transform: translateY(-4px) rotate(-0.3deg);
}

.about-page .hero-chip {
  background: rgba(28, 28, 28, 0.45);
}

.about-page .features h3 {
  text-shadow: 0 0 14px rgba(255, 108, 108, 0.2);
}

.prices-page .table tbody tr {
  transition: background 0.18s ease;
}

.prices-page .table tbody tr:hover {
  background: #fff1f1 !important;
}

.prices-page .hero-chip {
  background: rgba(42, 12, 12, 0.46);
}

.prices-page .price-box {
  border-style: solid;
  border-color: #d9b4b4;
  background: linear-gradient(180deg, #fff8f8, #f8f2f2);
}

.contact-page .request-form {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
}

.contact-page .hero-chip {
  background: rgba(36, 12, 12, 0.46);
}

.contact-page .contact-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.contact-page .form-group:focus-within label {
  color: var(--red-ink);
}

/* ===== ULTRA POLISH LAYER (site-wide) ===== */

body {
  background:
    radial-gradient(circle at 3% 6%, rgba(214, 0, 0, 0.09) 0%, transparent 26%),
    radial-gradient(circle at 96% 10%, rgba(255, 115, 115, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 50% 120%, rgba(17, 17, 17, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 38%, #f6f6f7 100%);
}

.topbar {
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.94), rgba(14, 14, 14, 0.86));
  border-bottom: 1px solid rgba(255, 85, 85, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.logo {
  letter-spacing: 0.8px;
}

.nav a:not(.btn) {
  padding: 0.42rem 0.52rem;
  border-radius: 8px;
}

.nav a:not(.btn):hover,
.nav a.active:not(.btn) {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.hero h1 {
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero .lead {
  max-width: 64ch;
}

.hero-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-card {
  backdrop-filter: blur(8px);
  background: linear-gradient(160deg, rgba(14, 14, 14, 0.8), rgba(38, 38, 38, 0.65));
  border: 1px solid rgba(255, 130, 130, 0.38);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.section {
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 15%, rgba(0, 0, 0, 0.08) 85%, transparent 100%);
  pointer-events: none;
}

.card,
.service-card,
.check-card,
.faq-item,
.contact-card,
.price-box,
.info-box,
.table-wrap {
  border-color: rgba(152, 152, 152, 0.38);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card:hover,
.service-card:hover,
.check-card:hover,
.faq-item:hover,
.contact-card:hover,
.info-box:hover,
.price-box:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(159, 0, 0, 0.3);
}

.btn-outline {
  border-width: 1px;
  background: rgba(255, 255, 255, 0.02);
}

.table {
  border-collapse: separate;
  border-spacing: 0;
}

.table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, #fdfdfd, #f0f0f0);
}

.table tbody tr {
  transition: transform 0.18s ease, background 0.18s ease;
}

.table tbody tr:hover {
  background: #fff3f3 !important;
  transform: translateY(-1px);
}

.faq-item {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 0, 0, 0.28);
}

.info-box h2,
.check-card h3,
.service-content h3,
.faq-item h3,
.card h3 {
  letter-spacing: 0.2px;
}

.section-accent {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 88, 88, 0.45) 50%, transparent 100%);
}

@media (max-width: 900px) {
  .hero-card {
    backdrop-filter: none;
  }

  .table thead th {
    position: static;
  }
}

.footer {
  background: var(--black);
  color: #e1e1e1;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  border-top: 1px solid #2a2a2a;
}

.services-page .footer,
.about-page .footer,
.prices-page .footer,
.contact-page .footer {
  background: linear-gradient(180deg, #121212, #0d0d0d);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(0.992);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, #ff3a3a, #d60000);
  box-shadow: 0 1px 10px rgba(214, 0, 0, 0.5);
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  z-index: 55;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

/* subtle branded scrollbar */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #bf0000, #8e0000);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .btn::before {
    display: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero .cta-row .btn {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .features,
  .service-grid,
  .split,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 65;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 50vw;
    min-width: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 5rem 0.9rem 1rem;
    border-radius: 0;
    background: #0b0b0b;
    border-left: 2px solid var(--red);
    box-shadow: -22px 0 38px rgba(0, 0, 0, 0.62);
    pointer-events: auto;
    z-index: 60;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: auto;
    z-index: 19;
  }

  .nav-backdrop.open {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    display: block;
    padding: 0.65rem 0.55rem;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.045);
    pointer-events: auto;
    cursor: pointer;
  }

  .nav a.active {
    color: #ffffff;
    background: rgba(214, 0, 0, 0.2);
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav .btn {
    width: 100%;
    margin-top: 0.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .hero-home {
    min-height: 500px;
  }

  .hero-chip {
    font-size: 0.76rem;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }

  body {
    font-size: 16px;
  }
}
