:root {
  --red: #f00000;
  --red-dark: #9d0000;
  --yellow: #fbff00;
  --gold: #ffe45c;
  --ink: #170b0b;
  --ink-2: #251313;
  --text: #2b2323;
  --muted: #766a6a;
  --soft: #fff8d8;
  --paper: #ffffff;
  --line: rgba(23, 11, 11, 0.12);
  --shadow: 0 28px 80px rgba(35, 5, 5, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 255, 0, 0.22), transparent 34rem),
    linear-gradient(180deg, #fffdf0 0%, #ffffff 42%, #fff9e8 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  position: relative;
  padding: 92px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(23, 11, 11, 0.12);
}

.nav-wrap {
  height: var(--header-height);
  width: min(1200px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.brand-name {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.main-nav a {
  padding: 0.76rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(240, 0, 0, 0.09);
  color: var(--red-dark);
}

.main-nav .nav-cta {
  margin-left: 0.3rem;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(240, 0, 0, 0.28);
}

.main-nav .nav-cta:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 21px;
  height: 2px;
  background: var(--yellow);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 50px);
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 11, 11, 0.96), rgba(65, 0, 0, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(251, 255, 0, 0.45), transparent 27rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(251, 255, 0, 0.10) 45% 45.5%, transparent 45.5% 100%),
    radial-gradient(circle at 86% 18%, rgba(251, 255, 0, 0.22), transparent 20rem),
    radial-gradient(circle at 10% 78%, rgba(240, 0, 0, 0.28), transparent 22rem);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 470px;
  height: 470px;
  border: 70px solid rgba(251, 255, 0, 0.14);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--red-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.kicker span {
  width: 42px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.hero .kicker {
  color: var(--yellow);
}

.hero .kicker span,
.kicker.light span {
  background: var(--yellow);
}

.kicker.light {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.035em;
}

.lead {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 2.3vw, 1.55rem);
  line-height: 1.55;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.hero-badges span {
  border: 1px solid rgba(251, 255, 0, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-size: 1rem;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 34px rgba(240, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #c80000;
}

.btn-outline {
  color: var(--yellow);
  border: 1px solid rgba(251, 255, 0, 0.62);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline.dark {
  color: var(--red-dark);
  border-color: rgba(240, 0, 0, 0.28);
  background: #fff;
}

.btn-light {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(251, 255, 0, 0.18);
}

.btn-copy {
  background: var(--ink);
  color: var(--yellow);
}

.hero-card {
  perspective: 1000px;
}

.logo-display {
  position: relative;
  padding: clamp(1rem, 4vw, 1.8rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.logo-display::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(240, 0, 0, 0.72), rgba(251, 255, 0, 0.38));
  filter: blur(10px);
}

.logo-display img {
  width: min(460px, 100%);
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

.status-strip {
  width: max-content;
  max-width: 100%;
  margin: -26px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(240, 0, 0, 0.75);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 0, 0, 0.72); }
  70% { box-shadow: 0 0 0 12px rgba(240, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 0, 0, 0); }
}

.intro-section {
  padding-top: 64px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.95fr;
  gap: 1rem;
}

.intro-card,
.info-tile,
.area-card,
.team-card,
.contact-panel,
.contact-visual {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.intro-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
  min-height: 250px;
  background:
    linear-gradient(135deg, rgba(251, 255, 0, 0.45), rgba(255, 255, 255, 0.9) 42%),
    #fff;
}

.intro-card p,
.section-title p,
.contact-intro,
.attention-band p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.06rem;
}

.card-number {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.info-tile {
  padding: clamp(1.2rem, 3vw, 1.6rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  overflow: hidden;
  position: relative;
}

.info-tile::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.55;
}

.info-tile small,
.contact-row span,
.visual-card small {
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.info-tile strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.info-tile a {
  width: max-content;
  position: relative;
  z-index: 1;
  color: var(--red-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.section-title {
  max-width: 720px;
  margin-bottom: 2rem;
}

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

.area-card {
  position: relative;
  min-height: 190px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.area-card::before {
  content: "";
  position: absolute;
  inset: auto -45px -52px auto;
  width: 128px;
  height: 128px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.5;
  transition: transform 0.22s ease;
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 0, 0, 0.45);
  box-shadow: 0 34px 80px rgba(84, 4, 4, 0.20);
}

.area-card:hover::before {
  transform: scale(1.18);
}

.area-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 18px;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 14px 28px rgba(23, 11, 11, 0.16);
}

.area-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.attention-band {
  padding: 46px 0;
}

.band-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(251, 255, 0, 0.25), transparent 18rem),
    linear-gradient(135deg, var(--ink), #520000 72%, var(--red-dark));
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: 0 32px 90px rgba(70, 2, 2, 0.28);
}

.band-inner::after {
  content: "24/7";
  position: absolute;
  right: 2rem;
  bottom: -0.56em;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.band-inner h2,
.band-inner p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.band-inner .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

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

.team-card {
  min-height: 220px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(251, 255, 0, 0.38), transparent 42%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(84, 4, 4, 0.18);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card span {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border-radius: 22px;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 18px 34px rgba(240, 0, 0, 0.22);
}

.team-card h3 {
  position: relative;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.2;
}

.contact {
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-panel {
  padding: clamp(1.35rem, 4vw, 2.5rem);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf3;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-row:hover {
  transform: translateX(4px);
  border-color: rgba(240, 0, 0, 0.35);
}

.contact-row strong {
  text-align: right;
  color: var(--ink);
}

.contact-visual {
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(circle at 75% 15%, rgba(251, 255, 0, 0.55), transparent 17rem),
    linear-gradient(150deg, #220909, #780000);
  color: #fff;
  padding: clamp(1.2rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.contact-visual img {
  width: min(390px, 100%);
  margin: auto;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.visual-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.visual-card small {
  color: var(--yellow);
}

.visual-card strong {
  display: block;
  margin-top: 0.6rem;
  line-height: 1.6;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer img {
  width: 78px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
}

.footer strong {
  display: block;
  font-size: 1.05rem;
}

.footer p,
.footer small {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(240, 0, 0, 0.35);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1060px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-tile {
    min-height: 190px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0.4rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(23, 11, 11, 0.22);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.95rem 1rem;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .brand-logo {
    width: 54px;
    height: 46px;
  }

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

  .hero-card {
    max-width: 560px;
  }

  .section {
    padding: 70px 0;
  }

  .band-inner {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

  h1 {
    font-size: clamp(2.75rem, 18vw, 4.9rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .areas-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .area-card,
  .team-card {
    min-height: 160px;
  }

  .contact-row {
    display: grid;
  }

  .contact-row strong {
    text-align: left;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .toast {
    bottom: 76px;
    width: max-content;
    max-width: calc(100% - 24px);
  }
}
