/* ============================================================
   AUREVO / BITVERGE — Global Stylesheet
   ============================================================
   Design Tokens:
     Background  : #EDF5F8  (uniform light blue-white across ALL pages)
     Accent Teal : #00C2CB
     Dark Navy   : #0B1E35
     Text Black  : #111827  (all text is black/near-black)
     Muted Text  : #4B5563
     White       : #FFFFFF
     Border      : #C9E4EE
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties (Design Tokens) ────────────────── */
:root {
  --bg:           #EDF5F8;   /* Uniform background — every page */
  --bg-white:     #FFFFFF;
  --bg-section:   #F7FBFD;   /* Alternate section tint */
  --navy:         #0B1E35;
  --teal:         #00C2CB;
  --teal-soft:    #E3F7F8;
  --teal-mid:     #B2EDF0;
  --text:         #111827;   /* Primary text — all black */
  --text-muted:   #4B5563;
  --text-light:   #6B7280;
  --border:       #C9E4EE;
  --border-light: #DFF0F5;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.12);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --nav-height:   70px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.22s ease;
  --max-width:    1180px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);  /* Uniform background applied globally */
  color: var(--text);           /* All text defaults to black */
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ── Skip Link (Accessibility) ───────────────────────────── */
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── Layout Containers ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* Section spacing — zero margin/gap between sections */
.section {
  padding: 90px 0;
  margin: 0;           /* No gaps between sections */
}
.section--white   { background-color: var(--bg-white); }
.section--tint    { background-color: var(--bg-section); }
.section--navy    { background-color: var(--navy); }
.section--teal    { background-color: var(--teal-soft); }

/* ── Typography ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid var(--teal-mid);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '▶';
  font-size: 0.45rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);  /* Headings are black */
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid var(--teal-mid);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title .accent { color: var(--teal); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

.title-bar {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
  margin: 12px auto 0;
}

/* Text alignment helpers */
.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover {
  background: #00adb5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,194,203,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: #162d4a;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 10px;
}

/* ── Grids ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── Feature Item ────────────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-item:last-child { border-bottom: none; }
.feature-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.feature-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Process Steps ───────────────────────────────────────── */
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 5px;
}
.step-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Pricing Cards ───────────────────────────────────────── */
.pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,194,203,0.1);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}
.pricing-per {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* ── Tech Pills ──────────────────────────────────────────── */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
}
.tech-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  margin: 0; /* No gap above/below */
}
.cta-banner .section-title { color: #fff; }
.cta-banner .section-title .accent { color: var(--teal); }
.cta-banner .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 14px auto 32px;
}

/* ── Contact Form ────────────────────────────────────────── */
.form-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 38px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-full { grid-column: 1 / -1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,194,203,0.12);
  background: var(--bg-white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ── Info Items (Contact) ────────────────────────────────── */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-value {
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}
.info-value a { color: var(--teal); }

/* ── Map Card ────────────────────────────────────────────── */
.map-card {
  background: var(--teal-soft);
  border: 1.5px solid var(--teal-mid);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
}
.map-pin { font-size: 2.5rem; margin-bottom: 12px; }
.map-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.map-addr {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ── Discipline Cards (Careers) ──────────────────────────── */
.disc-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.disc-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,194,203,0.12);
}
.disc-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.disc-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 6px;
}
.disc-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Value Grid (About section) ──────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}
.value-item:hover { border-color: var(--teal-mid); }
.value-icon { font-size: 1.4rem; margin-bottom: 10px; }
.value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 5px;
}
.value-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── Hero Image ──────────────────────────────────────────── */
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--border);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim {
  animation: fadeInUp 0.6s ease both;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }

/* Scroll-triggered animation support */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 7px;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(237, 245, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 19px 34px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 27px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.40rem;
  color: var(--text);
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg {
  width: 20px;
  height: 20px;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.nav-link:hover { background: var(--teal-soft); color: var(--teal); }
.nav-link.active { color: var(--teal); background: var(--teal-soft); }

/* Technology Dropdown ─────────────────────── */
/* The dropdown trigger is a nav-link styled button */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: var(--teal-soft);
  color: var(--teal);
}

.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Dropdown panel — contains AI, Cloud, IT */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

/* Show dropdown on hover OR open class */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Each dropdown item (AI / Cloud / IT) */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover {
  background: var(--teal-soft);
  color: var(--teal);
}
.nav-dropdown-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.nav-dropdown-item-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 1px;
}
.nav-dropdown-item-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Nav Right Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger for mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 998;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-mobile.open {
  max-height: 600px;
}
.nav-mobile a,
.nav-mobile span {
  display: block;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}
.nav-mobile a:hover { background: var(--teal-soft); color: var(--teal); }
.nav-mobile .mob-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-section);
}
.nav-mobile .mob-cta {
  padding: 18px 24px 24px;
  border-bottom: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030303;
  color: #fff;
  padding: 64px 0 28px;
  margin: 0; /* No gap above footer */
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 220px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--navy); }

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   HERO (shared structure)
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-height) + 100px);
  padding-bottom: 85px;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background texture for hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,203,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,203,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid var(--teal-mid);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: '▶'; font-size: 0.42rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.07;
  color: var(--text);  /* Hero title is black */
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--teal); }

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Tablet ≤1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile ≤768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  /* Stack hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; } /* Hide hero image on mobile */

  /* Stack grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .hero-inner { grid-template-columns: 1fr !important; }

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

  /* Value grid */
  .value-grid { grid-template-columns: 1fr; }

  /* Section padding */
  .section { padding: 60px 0; }
  .cta-banner { padding: 56px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Small Mobile ≤480px ─────────────────────────────────── */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .container { padding: 0 18px; }
  .hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 44px; }
}

/* ── Focus styles (Accessibility) ─────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
