:root {
  --ink: #10131a;
  --ink-2: #171b25;
  --muted: #667085;
  --soft: #f5f7fb;
  --line: #e5e7ef;
  --white: #ffffff;
  --red: #c4161c;
  --red-dark: #941016;
  --red-soft: rgba(196, 22, 28, 0.1);
  --shadow: 0 24px 80px rgba(16, 19, 26, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 200;
}
.skip-link:focus { left: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 15, 22, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  width: 152px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.brand-copy {
  display: none;
  line-height: 1.1;
  color: var(--white);
}
.brand-copy strong {
  display: block;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-copy span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  text-decoration: none;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav .call-link {
  color: var(--white);
  background: var(--red);
  padding-inline: 18px;
  box-shadow: 0 12px 30px rgba(196, 22, 28, .28);
}
.nav .call-link:hover { background: #d51e24; }
.menu-toggle {
  display: none;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 72% 24%, rgba(196,22,28,.38), transparent 28%),
    linear-gradient(135deg, #0a0d14 0%, #151a23 58%, #07090d 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -28%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 90px solid rgba(196,22,28,.12);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffebec;
  background: rgba(196, 22, 28, .16);
  border: 1px solid rgba(255,255,255,.12);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(196,22,28,.16);
}
.hero h1,
.page-hero h1,
.section-heading h2,
.cta-card h2 {
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -.055em;
}
.hero h1 {
  max-width: 810px;
  margin: 26px 0 22px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: .96;
}
.accent-text { color: #ff3d45; }
.hero-lead {
  max-width: 640px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, background .18s ease, border .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 44px rgba(196,22,28,.34);
}
.btn-primary:hover { background: #d51e24; }
.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.btn-secondary:hover { background: rgba(255,255,255,.13); }
.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}
.hero-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(196,22,28,.18);
  color: #ff6469;
  font-size: 12px;
  font-weight: 900;
}
.hero-media {
  position: relative;
  min-height: 610px;
}
.media-card {
  position: absolute;
  inset: 0 0 56px 68px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.16);
  transform: rotate(1.5deg);
  background: #151515;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 44%;
  filter: saturate(.95) contrast(1.03);
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.52), transparent 44%);
}
.floating-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(360px, 88%);
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.floating-card strong {
  display: block;
  font-size: 32px;
  letter-spacing: -.04em;
  margin-bottom: 5px;
}
.floating-card span {
  color: var(--muted);
  line-height: 1.55;
}
.rating-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
  letter-spacing: .18em;
}
.quick-contact {
  position: absolute;
  right: 18px;
  top: 38px;
  display: grid;
  gap: 10px;
}
.quick-contact a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  border-radius: 18px;
  background: rgba(196,22,28,.96);
  box-shadow: 0 14px 32px rgba(196,22,28,.3);
}
.quick-contact svg { width: 22px; height: 22px; }

.section {
  padding: 96px 0;
}
.section-soft { background: var(--soft); }
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
}
.section-heading p {
  margin: 0;
  max-width: 390px;
  color: var(--muted);
  line-height: 1.7;
}
.section-dark .section-heading p,
.section-dark .muted { color: rgba(255,255,255,.65); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 286px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(16, 19, 26, .06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196,22,28,.28);
  box-shadow: 0 28px 80px rgba(16, 19, 26, .12);
}
.service-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255,90,95,.5), transparent 26%),
    linear-gradient(135deg, #181d27, #090b10);
  border-color: rgba(255,255,255,.14);
}
.service-card.featured p,
.service-card.featured .card-link { color: rgba(255,255,255,.72); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--red);
  background: var(--red-soft);
  margin-bottom: 24px;
}
.service-card.featured .service-icon {
  color: var(--white);
  background: var(--red);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.service-card p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.7;
}
.card-link {
  position: absolute;
  left: 28px;
  bottom: 26px;
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  padding: 28px;
  border-radius: 24px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08);
}
.stat strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.stat span { color: rgba(255,255,255,.64); line-height: 1.55; }

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.image-panel {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 520px;
  background: #111;
  box-shadow: var(--shadow);
}
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 48%);
}
.panel-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.panel-badge b { display: block; }
.panel-badge span { color: var(--muted); font-size: 13px; }
.process-list {
  display: grid;
  gap: 14px;
}
.process-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}
.process-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}
.process-item h3 { margin: 0 0 8px; font-size: 20px; }
.process-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.cta-band {
  padding: 34px 0;
  background: var(--red);
  color: var(--white);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band strong {
  display: block;
  font-size: 24px;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.cta-band span { color: rgba(255,255,255,.78); }

.contact-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(196,22,28,.24), transparent 30%),
    linear-gradient(135deg, #10131a, #090b10);
  color: var(--white);
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .55;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.cta-card {
  padding: 42px;
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.cta-card h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
}
.cta-card p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  min-height: 170px;
  padding: 24px;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
}
.contact-card.full { grid-column: 1 / -1; }
.contact-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-value {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
.contact-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  color: var(--red);
  margin-left: auto;
}

.page-hero {
  padding: 86px 0 74px;
  background:
    radial-gradient(circle at 78% 16%, rgba(196,22,28,.32), transparent 30%),
    linear-gradient(135deg, #10131a, #07090d);
  color: var(--white);
  overflow: hidden;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 34px;
}
.breadcrumb:hover { color: var(--white); }
.page-hero h1 {
  max-width: 760px;
  margin: 20px 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
}
.page-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.72;
}
.detail-list {
  display: grid;
  gap: 18px;
}
.detail-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(16, 19, 26, .05);
}
.detail-number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
}
.detail-card h2 {
  margin: 0 0 12px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -.04em;
}
.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.faq-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.faq-card h3 { margin: 0 0 10px; font-size: 20px; }
.faq-card p { margin: 0; color: rgba(255,255,255,.64); line-height: 1.65; }

.site-footer {
  background: #07090d;
  color: rgba(255,255,255,.62);
  padding: 28px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner strong { color: var(--white); }

@media (max-width: 1060px) {
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 560px; max-width: 680px; }
  .media-card { inset: 0 0 54px 52px; }
  .stats, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1180px); }
  .header-inner { height: 72px; }
  .brand-logo { width: 118px; height: 46px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(12, 15, 22, .98);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .18s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 16px; }
  .nav .call-link { text-align: center; justify-content: center; }
  .hero { min-height: auto; padding: 64px 0 48px; }
  .hero-grid { gap: 36px; }
  .hero-media { min-height: 470px; }
  .media-card { inset: 0 0 44px 34px; border-radius: 30px; }
  .floating-card { padding: 20px; }
  .section { padding: 72px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .stats, .service-grid, .contact-cards { grid-template-columns: 1fr; }
  .cta-band .container { display: grid; }
  .detail-card { grid-template-columns: 1fr; }
  .detail-number { width: 60px; height: 60px; border-radius: 20px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; }
  .hero-media { min-height: 380px; }
  .media-card { inset: 0 0 42px 0; transform: none; }
  .quick-contact { display: none; }
  .floating-card { width: 100%; }
  .image-panel, .image-panel img { min-height: 430px; }
  .cta-card, .detail-card, .service-card { padding: 24px; border-radius: 24px; }
  .contact-value { font-size: 20px; }
  .footer-inner { display: grid; }
}

/* Language switcher */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  margin-left: 6px;
  flex: 0 0 auto;
}
.lang-btn {
  width: 40px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.7);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
  transition: .18s ease;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(196,22,28,.28);
}
.lang-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (min-width: 821px) {
  .nav { margin-left: auto; }
}

@media (max-width: 820px) {
  .header-inner { gap: 10px; }
  .language-switcher {
    margin-left: auto;
    padding: 4px;
  }
  .lang-btn {
    width: 34px;
    height: 30px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .brand-logo { width: 104px; }
  .lang-btn { width: 31px; }
  .language-switcher { gap: 2px; }
}
