:root {
  --primary: #c91522;
  --primary-dark: #8d0f18;
  --primary-soft: #ffe8eb;
  --secondary: #121212;
  --text: #2b2b2b;
  --muted: #6d6d6d;
  --white: #ffffff;
  --line: rgba(201, 21, 34, 0.1);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

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

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

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

.topbar {
  background: #111;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.topbar__inner,
.header__inner,
.footer__inner,
.cta-band__inner,
.section__grid,
.contact-grid,
.stats__grid,
.cards-grid,
.benefits-grid,
.hero__content,
.coverage__box,
.download-actions,
.hero__actions,
.hero__highlights,
.topbar__left,
.topbar__right {
  display: flex;
}

.topbar__inner {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
}

.topbar__left {
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__left a,
.topbar__left span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__right {
  gap: 10px;
}

.topbar__right a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.topbar__right a:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.header__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.brand__badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #ef3744);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(201, 21, 34, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-weight: 600;
  color: #292929;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #ef3744);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(201, 21, 34, 0.22);
}

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

.btn--light {
  background: var(--white);
  color: var(--primary);
}

.btn--outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--sm {
  padding: 12px 18px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-image: url('images/banner1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: background-image 0.8s ease-in-out;
}

.hero__overlay {
  background:
    linear-gradient(120deg, rgba(16, 16, 16, 0.88) 18%, rgba(132, 10, 20, 0.78) 55%, rgba(201, 21, 34, 0.45) 100%),
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 30%);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 90px 0;
}

.hero__text {
  max-width: 670px;
}

.eyebrow,
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.section__eyebrow {
  background: var(--primary-soft);
  color: var(--primary);
}

.section__eyebrow--light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.hero h1,
.section-heading h2,
.section__content h2,
.cta-band h2,
.coverage__box h2 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 18px;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  max-width: 12ch;
}

.hero h1 span {
  color: #fff0f2;
}

.hero p,
.section-heading p,
.section__content p,
.coverage__box p,
.cta-band p,
.service-card__body p,
.benefit-card p,
.contact-card p,
.footer p,
.feature-list__item p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.section-heading p,
.section__content p,
.coverage__box p,
.service-card__body p,
.benefit-card p,
.contact-card p,
.footer p,
.feature-list__item p {
  color: var(--muted);
}

.hero__highlights {
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.hero__highlights div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

.hero__actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero__card {
  width: min(100%, 380px);
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero__card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.65rem;
  margin: 14px 0 14px;
}

.hero__card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-card__tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-card__link {
  color: #fff;
  font-weight: 700;
}

.stats {
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.stats__grid,
.cards-grid,
.benefits-grid,
.contact-grid {
  gap: 22px;
  flex-wrap: wrap;
}

.stat-card,
.service-card,
.benefit-card,
.contact-card,
.map-card,
.image-card,
.download-card,
.coverage__box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  flex: 1 1 220px;
  padding: 28px;
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.section-heading h2,
.section__content h2,
.cta-band h2,
.coverage__box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--secondary);
}

.section__grid {
  align-items: center;
  gap: 42px;
}

.section__grid--about > * {
  flex: 1 1 480px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, #fff6f7);
  border: 1px solid var(--line);
}

.feature-list__item i,
.benefit-card i,
.contact-card i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-list__item h3,
.service-card__body h3,
.benefit-card h3,
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 6px;
  color: var(--secondary);
}

.image-card {
  padding: 18px;
}

.image-card img {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
  object-fit: cover;
}

.download-card {
  margin-top: 18px;
  padding: 24px;
}

.download-card p {
  margin-top: 0;
  font-weight: 700;
  color: var(--secondary);
}

.download-actions {
  gap: 16px;
  flex-wrap: wrap;
}

.download-actions a {
  flex: 1 1 220px;
}

.download-actions img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.services {
  background: linear-gradient(180deg, #fff7f8 0%, #ffffff 100%);
}

.service-card {
  flex: 1 1 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.benefit-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(201, 21, 34, 0.12);
}

.service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 24px;
}

.benefits-grid {
  justify-content: center;
}

.benefit-card,
.contact-card {
  flex: 1 1 240px;
  padding: 28px;
  border: 1px solid var(--line);
}

.cta-band {
  padding: 36px 0;
}

.cta-band__inner {
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  box-shadow: 0 30px 70px rgba(201, 21, 34, 0.25);
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.coverage__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
}

.contact-grid {
  margin-bottom: 26px;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.map-card {
  padding: 12px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
}

.footer {
  background: #0f0f10;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 60px;
}

.footer__inner {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0;
}

.footer strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

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

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

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }

@media (max-width: 1024px) {
  .hero__content,
  .section__grid,
  .coverage__box,
  .cta-band__inner,
  .footer__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px 6px;
  }

  .topbar {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 72px 0;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .hero__card,
  .stat-card,
  .benefit-card,
  .contact-card,
  .service-card__body,
  .download-card,
  .coverage__box,
  .cta-band__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__highlights div,
  .btn {
    width: 100%;
  }

  .footer__inner,
  .download-actions,
  .hero__actions,
  .cta-band__actions {
    flex-direction: column;
  }

  .map-card iframe {
    min-height: 320px;
  }
}
