:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --accent: #d97706;
  --accent-2: #0369a1;
  --line: #e2e8f0;
  --shadow: 0 18px 45px rgba(2, 12, 27, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f8fb 0%, #eef4fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
}

p {
  margin: 0;
  color: var(--text-soft);
}

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

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

.background-glow {
  position: fixed;
  inset: -20% auto auto -20%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.22),
    rgba(217, 119, 6, 0)
  );
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 248, 251, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-mark {
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: white;
  padding: 0.25rem 0.55rem;
  border-radius: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.brand-text {
  font-weight: 800;
  font-size: 1.08rem;
}

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

.main-nav a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 700;
  position: relative;
  padding: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-2);
  color: #fff !important;
  padding: 0.55rem 0.95rem !important;
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  border: 0;
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1e293b;
}

.hero {
  padding: 1rem 0 0;
}

.hero-slider {
  position: relative;
  width: min(1250px, 96vw);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  min-height: 74vh;
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.75s ease,
    transform 1.1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(3, 105, 161, 0.72),
    rgba(15, 23, 42, 0.46)
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 5.2rem 0;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
}

.slide-content .eyebrow {
  color: var(--accent);
}

.slide-content h1,
.slide-content h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  max-width: 760px;
}

.slide-content p {
  color: #e2e8f0;
  max-width: 670px;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #fff;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.35);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 3;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.slider-dots button.active {
  background: #fff;
  transform: scale(1.2);
}

section {
  padding: 4.8rem 0;
}

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

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.stat-card h3 {
  font-size: 1.85rem;
  color: var(--accent-2);
}

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

.section-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.section-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.95rem;
  margin: 0 0 1.15rem;
}

.section-image-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
  min-height: 180px;
}

.section-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.section-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.1) 15%,
    rgba(2, 6, 23, 0.72) 100%
  );
}

.section-image-card figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.75rem;
  margin: 0;
  color: #fff;
  font-weight: 800;
  z-index: 2;
  font-size: 0.95rem;
}

.section-image-card:hover img {
  transform: scale(1.05);
}

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

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(217, 119, 6, 0.5);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), #0ea5e9);
  color: white;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.coverage-wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.2rem;
}

.coverage-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.coverage-image-wrap {
  margin: 0 0 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.coverage-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.coverage-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.coverage-card p {
  color: #cbd5e1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.35rem;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.about-points {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-points span {
  background: #e2e8f0;
  color: #0f172a;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.section-wide-image {
  margin: 0 0 1.2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-wide-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-card h4 {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--accent-2);
}

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

.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.faq-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.55rem;
}

.contact-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-intro h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

.contact-image {
  margin: 0.5rem 0 0.95rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-list a,
.contact-list span {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  color: #334155;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 11px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.site-footer {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

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

.footer-wrap a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section-image-grid,
  .stat-grid,
  .service-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-wrap,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(247, 248, 251, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 4vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    z-index: 25;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  }

  .main-nav a {
    width: 100%;
    padding: 0.35rem 0;
  }

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

  .hero-slider,
  .slide-content {
    min-height: 68vh;
  }

  .hero-slider {
    width: 100%;
    border-radius: 18px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: clamp(1.5rem, 8vw, 2.1rem);
  }

  .slide-content p {
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .slider-dots {
    bottom: 0.7rem;
  }

  .section-image-grid,
  .stat-grid,
  .service-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .coverage-image-wrap img,
  .section-wide-image img,
  .contact-image img {
    height: 190px;
  }

  .contact-wrap {
    padding: 1rem;
  }

  .contact-form .btn {
    width: 100%;
  }

  section {
    padding: 3.7rem 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, 94vw);
  }

  .brand-mark {
    font-size: 0.76rem;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 0.5rem;
  }

  .hero-slider,
  .slide-content {
    min-height: 64vh;
  }

  .slide-content {
    gap: 0.75rem;
    padding: 4.5rem 0 4rem;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: clamp(1.35rem, 7.4vw, 1.75rem);
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .service-card,
  .stat-card,
  .testimonial-card {
    padding: 1rem;
  }

  .about-points span {
    font-size: 0.82rem;
  }

  .contact-list a,
  .contact-list span {
    font-size: 0.95rem;
  }
}
