:root {
  --navy-950: #050b17;
  --navy-900: #091227;
  --navy-800: #101b35;
  --navy-700: #1b2950;
  --slate-500: #7f8aa3;
  --slate-300: #c6cfdd;
  --white: #f7f9fc;
  --surface: rgba(16, 27, 53, 0.82);
  --surface-strong: rgba(10, 18, 39, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #f53f51;
  --accent-bright: #ff6b79;
  --accent-soft: rgba(245, 63, 81, 0.14);
  --shadow-xl: 0 40px 90px rgba(3, 7, 18, 0.4);
  --shadow-lg: 0 20px 50px rgba(3, 7, 18, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--navy-900);
  background:
    radial-gradient(circle at top left, rgba(245, 63, 81, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(69, 112, 175, 0.1), transparent 26%),
    #eef2f8;
}

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

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(5, 11, 23, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 14px 28px rgba(245, 63, 81, 0.25);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 10px 11px;
  border-left: 4px solid #fff;
  border-top: 4px solid #fff;
  border-radius: 10px 0 0 0;
  transform: skew(-8deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.brand-copy span {
  color: var(--slate-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(247, 249, 252, 0.82);
  font-size: 0.94rem;
}

.site-nav a:hover,
.footer-links a:hover,
.footer-credit-links a:hover {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 14px 30px rgba(245, 63, 81, 0.26);
  font-weight: 700;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 18px 34px rgba(245, 63, 81, 0.28);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-section {
  padding: 68px 0 84px;
  background:
    linear-gradient(140deg, rgba(5, 11, 23, 0.98), rgba(9, 18, 39, 0.95)),
    radial-gradient(circle at 20% 20%, rgba(245, 63, 81, 0.18), transparent 20%);
  color: var(--white);
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.hero-grid,
.advantage-grid,
.contact-grid,
.proof-grid {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-header h2,
.proof-card h2,
.advantage-copy h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 7vw, 5.7rem);
  max-width: 11ch;
}

.hero-text,
.proof-card p,
.advantage-copy > p,
.contact-copy > p {
  color: rgba(247, 249, 252, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 30px;
}

.hero-actions,
.trust-row,
.footer-credit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  margin-top: 24px;
}

.trust-row span {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 249, 252, 0.88);
  font-size: 0.9rem;
}

.metric-grid,
.service-grid,
.review-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.metric-card,
.service-card,
.review-card,
.contact-card,
.proof-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.metric-card {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}

.metric-card span {
  color: rgba(247, 249, 252, 0.72);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-frame {
  position: relative;
  min-height: 620px;
}

.hero-image-card {
  position: absolute;
  inset: 24px 12px 52px 72px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(9, 18, 39, 0.48), transparent 42%),
    linear-gradient(180deg, transparent, rgba(9, 18, 39, 0.48));
}

.dispatch-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 70%);
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.dispatch-panel p,
.dispatch-panel span {
  margin: 0;
  color: rgba(247, 249, 252, 0.76);
  line-height: 1.6;
}

.dispatch-panel p {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.dispatch-panel strong {
  display: block;
  font-size: 2.4rem;
  letter-spacing: -0.06em;
  margin: 10px 0;
}

.service-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 700;
}

.chip-primary {
  left: 24px;
  top: 36px;
}

.chip-secondary {
  right: 40px;
  top: 108px;
}

.chip-tertiary {
  left: 92px;
  bottom: 146px;
}

.proof-section,
.services-section,
.advantage-section,
.reviews-section,
.contact-section {
  padding: 88px 0;
}

.proof-grid {
  grid-template-columns: 1.25fr 0.9fr;
}

.proof-card {
  padding: 34px;
}

.proof-dark {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.proof-dark p {
  color: rgba(247, 249, 252, 0.76);
}

.proof-light {
  background: rgba(255, 255, 255, 0.8);
}

.proof-light p,
.proof-light .section-label {
  color: #4f5b74;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2,
.advantage-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

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

.service-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.service-index {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3,
.advantage-list h3,
.proof-light h3 {
  margin: 18px 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.service-card p,
.service-card li,
.advantage-list p,
.review-card p,
.contact-card p {
  color: #4f5b74;
  line-height: 1.65;
}

.service-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
}

.advantage-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.advantage-media {
  position: relative;
  min-height: 620px;
}

.media-card {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.main-media {
  inset: 0 72px 54px 0;
}

.detail-media {
  right: 0;
  bottom: 0;
  width: 240px;
  height: 300px;
  border: 10px solid rgba(255, 255, 255, 0.88);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.advantage-list article {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(9, 18, 39, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

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

.review-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.review-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.review-card strong {
  display: block;
  font-size: 1.1rem;
}

.review-card span {
  display: block;
  color: var(--slate-500);
  margin-top: 4px;
}

.review-card p {
  margin: 16px 0 0;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.contact-card span {
  display: block;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card a,
.footer-credit p {
  font-weight: 700;
}

.contact-form {
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 15px 16px;
  margin-bottom: 18px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 249, 252, 0.48);
}

.contact-form select {
  appearance: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.site-footer {
  padding: 34px 0 48px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 24px;
  align-items: end;
}

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

.footer-note {
  max-width: 360px;
  color: rgba(247, 249, 252, 0.68);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(247, 249, 252, 0.82);
}

.footer-credit {
  text-align: right;
}

.footer-credit p {
  margin: 0 0 12px;
}

.footer-credit-links {
  justify-content: flex-end;
  color: rgba(247, 249, 252, 0.8);
}

@media (max-width: 1080px) {
  .hero-grid,
  .proof-grid,
  .advantage-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .review-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .hero-frame,
  .advantage-media {
    min-height: auto;
  }

  .hero-image-card,
  .dispatch-panel,
  .service-chip,
  .main-media,
  .detail-media {
    position: relative;
    inset: auto;
    right: auto;
    left: auto;
    bottom: auto;
    top: auto;
  }

  .hero-image-card {
    min-height: 480px;
  }

  .dispatch-panel,
  .detail-media {
    margin-top: 20px;
    width: 100%;
  }

  .service-chip {
    display: inline-flex;
    margin: 16px 12px 0 0;
  }

  .main-media {
    min-height: 420px;
  }

  .footer-credit {
    text-align: left;
  }

  .footer-credit-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(1120px, calc(100vw - 32px));
  }

  .header-row {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .site-nav {
    order: 3;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-section,
  .proof-section,
  .services-section,
  .advantage-section,
  .reviews-section,
  .contact-section {
    padding: 72px 0;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
  }

  .hero-image-card {
    min-height: 360px;
  }

  .proof-card,
  .service-card,
  .review-card,
  .contact-form,
  .contact-card {
    padding: 24px;
  }
}
