:root {
  --primary: #20b44a;
  --primary-dark: #159239;
  --accent: #0f172a;
  --text-main: #050816;
  --text-muted: #6b7280;
  --bg-light: #f5f5f7;
  --bg-white: #ffffff;
  --border-soft: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== NAVBAR ========== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209,213,219,0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: .08em;
  color: #111827;
  white-space: nowrap;
}

.nav-link i {
  font-size: 0.6rem;
}

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

/* Simple dropdown */
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
  padding: 0.7rem 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.16s ease;
  z-index: 30;
}

.dropdown a {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.86rem;
  color: #111827;
  border-radius: 8px;
}

.dropdown a:hover {
  background: #f3f4f6;
  color: var(--primary-dark);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid #111827;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: #111827;
  color: var(--bg-white);
}

.btn-primary {
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1.6rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(34,197,94,0.45);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 45px rgba(34,197,94,0.6);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: #111827;
  padding: 0.25rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #e8f7ee 40%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--primary-dark);
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.4rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-tag {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
  background: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111827;
  cursor: pointer;
}

.hero-secondary i {
  font-size: 0.9rem;
  color: var(--primary);
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: #6b7280;
}

.hero-media {
  position: relative;
}

.hero-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d1d5db;
  box-shadow: 0 22px 55px rgba(15,23,42,0.22);
  background: #000;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 360px;
}

.hero-overlay-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(15,23,42,0.8);
  color: #f9fafb;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-overlay-label i {
  color: #22c55e;
}

/* ========== SECTION BASE ========== */
section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* ========== TABS ========== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.about-visual {
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  position: relative;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(15,23,42,0.6), rgba(15,23,42,0.0));
}

.about-visual-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #f9fafb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

.tab-btn.active {
  background: #020617;
  color: #ffffff;
  border-color: #020617;
}

.tab-panel {
  display: none;
  font-size: 0.9rem;
  color: #4b5563;
}

.tab-panel.active {
  display: block;
}

.tab-panel strong {
  color: #111827;
}

/* ========== COVERAGE SEARCH ========== */
.search-block {
  background: url('https://local-ooh.com/images/texture/map-pattern-light.svg') no-repeat center/cover, #ffffff;
  border-radius: 24px;
  padding: 2.4rem 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 45px rgba(15,23,42,0.05);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.search-block::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 60%);
}

.search-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
}

.search-text {
  font-size: 0.9rem;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 1.3rem;
}

.search-field-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-input-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.65rem 0.9rem 0.65rem 2.3rem;
  font-size: 0.9rem;
  outline: none;
  background: #fff;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.3);
}

.search-helper {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.04);
  position: relative;
  overflow: hidden;
}

.stat-label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.stat-desc {
  font-size: 0.88rem;
  color: #4b5563;
  max-width: 280px;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.4rem;
  margin-top: 0.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 1.3rem 1.2rem 1.4rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34,197,94,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(15,23,42,0.12);
  border-color: rgba(34,197,94,0.7);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.service-title {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-text {
  font-size: 0.86rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.service-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== CASE STUDIES ========== */
.cases-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
}

.case-list {
  border-left: 3px solid var(--primary);
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.case-pill {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.case-item {
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #e5e7eb;
}

.case-item span {
  color: var(--text-muted);
  font-weight: 500;
  margin-left: .4rem;
  font-size: 0.85rem;
}

.case-highlight {
  background: #020617;
  color: #f9fafb;
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.case-highlight em {
  color: #bbf7d0;
  font-style: normal;
  font-weight: 800;
}

.case-highlight p {
  font-size: 0.9rem;
  margin-top: 0.6rem;
  color: #e5e7eb;
}

.case-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-top: 0.9rem;
}

.case-cta i {
  font-size: 0.8rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #020617;
  color: #f9fafb;
}

.testimonials .section-title {
  color: #ffffff;
}

.testimonials .section-sub {
  color: #9ca3af;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: #020617;
  border-radius: 18px;
  border: 1px solid #111827;
  padding: 1.4rem 1.2rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.75);
}

.testimonial-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text em {
  color: #a7f3d0;
  font-style: normal;
  font-weight: 700;
}

.testimonial-name {
  font-size: 0.86rem;
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ========== FOOTER ========== */
footer {
  background: #000000;
  color: #e5e7eb;
  padding: 2.6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.footer-links a:hover {
  color: #d1d5db;
}

.newsletter-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #4b5563;
  background: transparent;
  padding: 0.45rem 0;
  font-size: 0.86rem;
  color: #f3f4f6;
  outline: none;
}

.newsletter-input::placeholder {
  color: #6b7280;
}

.footer-bottom {
  border-top: 1px solid #111827;
  padding-top: 1rem;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.footer-social a:hover {
  background: var(--primary);
  color: #020617;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  /* Navbar */
  .nav {
    padding: 0.7rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15,23,42,0.18);
    display: none;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 10px;
    border: none;
    padding: 0.3rem 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown a {
    padding-left: 0;
  }

  .nav-right {
    display: none;
  }

  header.is-open .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0 1.5rem 0.6rem;
    gap: 0.5rem;
  }

  .btn-outline,
  .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 0 2rem;
  }

  .hero-inner > div:first-child {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    max-width: 500px;
    margin: 1.5rem auto 0;
  }

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

  .search-block {
    padding: 1.8rem 1.4rem;
  }

  .search-field-wrap {
    flex-direction: column;
    align-items: stretch;
  }

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

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-title {
    font-size: 2.2rem;
  }

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



.media-category-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}

.media-category-title:first-of-type {
  margin-top: 0;
}
