/* ================================================================
   AJANTA TRADERS — STYLESHEET
   Color Scheme: Deep Navy · Steel Blue · White · Light Grey
   Fonts: Playfair Display (headings) · DM Sans (body)
================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  --navy:        #0B1F3A;   /* Primary dark — headings, header bg */
  --blue:        #1D5FA8;   /* Brand blue — buttons, accents */
  --blue-light:  #2E7DD4;   /* Hover states */
  --steel:       #4A6FA5;   /* Mid-tone links, borders */
  --sky:         #EBF2FC;   /* Light blue tint — bg sections */
  --grey-light:  #F4F6F9;   /* Alt background */
  --grey-mid:    #8C9BAD;   /* Subtext, muted elements */
  --grey-border: #D8E0EB;   /* Dividers, card borders */
  --white:       #FFFFFF;
  --text-dark:   #1A2A3A;   /* Body copy */
  --text-mid:    #4A5C6E;   /* Secondary body copy */
  --accent:      #F4A81D;   /* Gold accent — used sparingly */

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', Helvetica, sans-serif;

  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:    0 8px 28px rgba(11,31,58,0.12);
  --shadow-lg:    0 20px 60px rgba(11,31,58,0.16);
  --transition:   0.25s ease;
  --max-width:    1180px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ----------------------------------------------------------------
   UTILITY
---------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.bg-light { background: var(--grey-light); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.75;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-subtext { margin: 0 auto; }

.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.accent { color: var(--accent); }

.mt-btn { margin-top: 12px; }

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,95,168,0.3);
}

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

.full-width-btn { width: 100%; justify-content: center; }

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo-mark.small { width: 32px; height: 32px; font-size: 0.75rem; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Main nav */
.main-nav ul {
  display: flex;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: all 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); }

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

/* Subtle grid pattern overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,95,168,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,95,168,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 65%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(29,95,168,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 160px;
}

.hero-badge {
  display: inline-block;
  background: rgba(29,95,168,0.25);
  border: 1px solid rgba(29,95,168,0.5);
  color: #90BEF2;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 740px;
}

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

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 680px;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Decorative vertical text */
.hero-decor-text {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-preview { background: var(--white); }

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

.about-img-frame {
  position: relative;
}

.about-img-placeholder {
  background: var(--sky);
  border: 2px dashed var(--grey-border);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-mid);
}
.about-img-placeholder i {
  font-size: 3.5rem;
  color: var(--steel);
  opacity: 0.5;
}
.about-img-placeholder span { font-weight: 600; font-size: 0.95rem; }
.about-img-placeholder small { font-size: 0.78rem; }

/* If using a real image, uncomment: */
/* .about-img-frame img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; } */

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-box strong { display: block; font-size: 0.95rem; font-weight: 700; }
.about-badge-box span   { display: block; font-size: 0.78rem; opacity: 0.8; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}
.pillar i {
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   SERVICES SECTION
---------------------------------------------------------------- */
.services-section { background: var(--grey-light); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(29,95,168,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--sky);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-icon i {
  font-size: 1.6rem;
  color: var(--blue);
}
.service-card:hover .service-icon { background: var(--blue); }
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ----------------------------------------------------------------
   BRANDS SECTION
---------------------------------------------------------------- */
.brands-section { background: var(--white); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.brand-card {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.brand-card img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition);
}
.brand-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.brand-name-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.brand-category {
  font-size: 0.75rem;
  color: var(--grey-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand-card--muted { opacity: 0.55; }

.brands-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--sky);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-mid);
}
.brands-disclaimer i { font-size: 1.1rem; color: var(--steel); flex-shrink: 0; margin-top: 1px; }

/* ----------------------------------------------------------------
   INFRASTRUCTURE SECTION
---------------------------------------------------------------- */
.infra-section { background: var(--grey-light); }

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.infra-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.infra-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.infra-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--grey-border);
  line-height: 1;
  margin-bottom: 16px;
}
.infra-icon {
  font-size: 1.8rem;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
}
.infra-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.infra-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ----------------------------------------------------------------
   STATS BAND
---------------------------------------------------------------- */
.stats-band {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,95,168,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,95,168,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats-band-inner {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
}
.stats-band-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-band-item:last-child { border-right: none; }

.big-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.big-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------------
   CONTACT SECTION
---------------------------------------------------------------- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-details {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item i {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-item a { color: var(--blue); }
.contact-item a:hover { text-decoration: underline; }

/* Registration block */
.reg-block {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reg-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
}
.reg-label {
  font-weight: 600;
  color: var(--text-dark);
}
.reg-val {
  font-family: 'Courier New', monospace;
  color: var(--steel);
  font-size: 0.82rem;
  background: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--grey-border);
}

/* Map */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-border);
  margin-bottom: 28px;
}
.map-frame iframe { display: block; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 11px 15px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,95,168,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }

.form-note {
  font-size: 0.85rem;
  color: var(--blue);
  min-height: 20px;
  margin-top: -4px;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: #07152A;
  color: rgba(255,255,255,0.72);
  padding-top: 72px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.footer-contact-col i { color: var(--steel); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-col a { color: rgba(255,255,255,0.6); }
.footer-contact-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}

/* ----------------------------------------------------------------
   BACK TO TOP BUTTON
---------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (≤ 960px)
---------------------------------------------------------------- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { max-width: 520px; }
  .about-badge-box { right: 0; bottom: -16px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .brands-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .infra-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .stats-band-inner { flex-wrap: wrap; }
  .stats-band-item {
    flex: none;
    width: 33.33%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

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

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 600px)
---------------------------------------------------------------- */
@media (max-width: 600px) {
  .section { padding: 56px 0; }

  /* Header */
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(11,31,58,0.98);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 16px 24px 24px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .nav-link { display: block; padding: 12px 16px; font-size: 1rem; }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-decor-text { display: none; }
  .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .infra-grid { grid-template-columns: 1fr; }

  /* Stats band */
  .stats-band-item { width: 50%; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
.ops-capability-box {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 100%;
}

.ops-capability-box .section-eyebrow {
  margin-bottom: 16px;
}

.ops-body {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-border);
}

.ops-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ops-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-border);
}

.ops-point:last-child {
  border-bottom: none;
}

.ops-point i {
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}