/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #083041;
  --navy-dark: #041d27;
  --gold: #EDCB50;
  --gold-dim: rgba(237,203,80,0.15);
  --white: #ffffff;
  --light-bg: #f4f6f9;
  --text: #1a1a2e;
  --muted: #566470;
  --border: rgba(8,48,65,0.1);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Asap', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.section-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Asap', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: transparent; color: var(--navy); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(4, 29, 39, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

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

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Asap', sans-serif;
  padding: 0 0 4px 0;
  margin: 0;
  line-height: 1;
  position: relative;
  transition: color var(--transition);
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-dropdown-toggle svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown:hover .nav-dropdown-toggle::after { width: 100%; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  rotate: 45deg;
  border-radius: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--light-bg); color: var(--navy); }
.nav-dropdown-menu a svg { flex-shrink: 0; opacity: 0.5; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 16px 28px 28px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu .btn { align-self: flex-start; margin-top: 12px; }

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  font-family: 'Asap', sans-serif;
  font-size: 1rem;
  padding: 12px 0;
  cursor: pointer;
  text-align: left;
}
.mobile-dropdown-toggle svg { transition: transform var(--transition); }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid rgba(237,203,80,0.3);
  margin: 4px 0 8px;
  gap: 0;
}
.mobile-dropdown-menu.open { display: flex; }
.mobile-dropdown-menu a {
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.65);
}
.mobile-dropdown-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(4,29,39,0.96) 0%,
    rgba(8,48,65,0.88) 45%,
    rgba(8,48,65,0.55) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(237,203,80,0.12);
  border: 1px solid rgba(237,203,80,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero-badge svg { flex-shrink: 0; }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-divider {
  width: 60px; height: 2px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item { }
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* Hero right — service preview cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}
.hero-service-card:hover {
  border-color: rgba(237,203,80,0.4);
  background: rgba(237,203,80,0.06);
  transform: translateX(6px);
}

.hsc-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid rgba(237,203,80,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.hsc-icon svg { width: 22px; height: 22px; }

.hsc-text { flex: 1; }
.hsc-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.hsc-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.hsc-arrow {
  color: rgba(255,255,255,0.25);
  transition: color var(--transition), transform var(--transition);
}
.hero-service-card:hover .hsc-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(8px); opacity: 0; }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 20s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
#services {
  padding: 110px 0;
  background: var(--light-bg);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(8,48,65,0.13);
}

.service-video-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--navy);
}
.service-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--transition), transform 0.5s ease;
}
.service-card:hover .service-video-wrap video {
  opacity: 1;
  transform: scale(1.04);
}
.service-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,48,65,0.85) 0%, transparent 60%);
}

.service-body { padding: 28px 26px 30px; }

.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(8,48,65,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon { background: var(--navy); }
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg polyline,
.service-card:hover .service-icon svg line { stroke: var(--white); }

.service-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(8,48,65,1);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: var(--gold); gap: 12px; }
.service-link svg { transition: transform var(--transition); }
.service-link:hover svg { transform: translateX(4px); }

/* ===== ABOUT ===== */
#about {
  padding: 110px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3.2;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.about-img-secondary img { width: 100%; height: 130px; object-fit: cover; }

.about-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(237,203,80,0.4);
}
.about-badge-float .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-float .lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

.about-content { }

.about-list {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 10px; height: 10px; }

/* ===== FAQ ===== */
#faq {
  padding: 110px 0;
  background: var(--navy);
}
#faq .section-title { color: var(--white); }

.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(237,203,80,0.4); background: rgba(237,203,80,0.04); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Asap', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; transition: stroke var(--transition); }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item.open .faq-icon svg { stroke: var(--navy); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  padding-bottom: 24px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== PARTNERS ===== */
#partners {
  padding: 80px 0;
  background: var(--light-bg);
  overflow: hidden;
}
.partners-header { text-align: center; margin-bottom: 44px; }
.partners-header h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-wrap::before,
.slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.slider-wrap::before { left: 0; background: linear-gradient(to right, var(--light-bg), transparent); }
.slider-wrap::after  { right: 0; background: linear-gradient(to left, var(--light-bg), transparent); }

.slider-track {
  display: flex;
  gap: 20px;
  animation: scroll 24s linear infinite;
  width: max-content;
}
.slider-track:hover { animation-play-state: paused; }

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  flex: 0 0 auto;
  width: 170px; height: 80px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.partner-logo:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.partner-logo img { max-width: 130px; max-height: 50px; object-fit: contain; }
.partner-logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img { height: 38px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 0.85rem;
}

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { border-color: var(--gold); background: var(--gold-dim); color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-inner { gap: 50px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 60px 0 80px; }
  .hero-subtitle { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { display: none; }

  .about-inner { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-badge-float { top: auto; bottom: -16px; left: 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
