/* ============================================================
   Mayra Consulting — Global Stylesheet
   Clean & Professional | Tech/Consulting Brand
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* --- CSS Variables (Color Palette) --- */
:root {
  --navy:        #1B2A4A;   /* primary — deep navy, trust & authority */
  --navy-light:  #243659;
  --blue:        #1A6FC4;   /* secondary — tech blue */
  --teal:        #00B4A6;   /* accent — fresh, innovative */
  --teal-light:  #E0F7F5;
  --slate:       #4A5568;   /* body text */
  --light-slate: #718096;
  --bg:          #FFFFFF;
  --bg-soft:     #F7F9FC;
  --border:      #E2E8F0;
  --white:       #FFFFFF;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);

  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
}

/* --- 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(--slate);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-teal   { color: var(--teal); }
.text-blue   { color: var(--blue); }
.text-muted  { color: var(--light-slate); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 90px 0;
}
.section--soft { background: var(--bg-soft); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header p {
  color: var(--light-slate);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #00C9B8, #1A6FC4);
  color: var(--white);
  border-radius: 50px;
  border-color: transparent;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #00b5a5, #155fa8);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 180, 166, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0a0c16;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4af0e0, #1A6FC4);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.55);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 0;
  /* Clip off the rectangular dark background edges so it
     bleeds seamlessly into the identical dark navbar */
  overflow: hidden;
  border-radius: 6px;
}
.navbar__logo img {
  display: block;
  height: 108px;
  width: auto;
  margin-left: -8px;
}

.navbar__logo-mark {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 800;
  color: var(--navy);
}
.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white);
}
.navbar__logo-text span { color: var(--teal); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.navbar__links a {
  padding: 0.45rem 0.95rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: all var(--transition);
}
.navbar__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.navbar__links a.active {
  color: var(--teal);
  background: rgba(74,240,224,0.08);
  font-weight: 600;
}

/* Dropdown nav */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #0d1120;
  border: 1px solid rgba(74,240,224,0.15);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  list-style: none;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown {
  display: block;
}
.has-dropdown .dropdown li a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  transition: all var(--transition);
}
.has-dropdown .dropdown li a:hover {
  color: var(--teal);
  background: rgba(74,240,224,0.08);
}

/* Pivot badge (™ trademark pill) */
.pivot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(0,180,166,0.15), rgba(26,111,196,0.15));
  border: 1px solid rgba(0,180,166,0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Framework cards (The Pivot™ page) */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
.framework-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.framework-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.framework-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.framework-card:hover::before { transform: scaleX(1); }
.framework-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.framework-card h3 { margin-bottom: 0.5rem; }
.framework-card p  { font-size: 0.9rem; color: var(--light-slate); margin: 0; }

/* Insights / blog cards */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.insight-card__header {
  background: linear-gradient(135deg, var(--navy), #1A5A8A);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  min-height: 120px;
}
.insight-card__body { padding: 1.5rem; }
.insight-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.insight-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.insight-card p  { font-size: 0.88rem; color: var(--light-slate); margin-bottom: 1rem; }
.insight-card__meta { font-size: 0.78rem; color: var(--light-slate); }

/* Recovery process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 21px; top: 42px; bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0 0 2rem 0;
}
.process-step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step__body h4 { margin-bottom: 0.25rem; }
.process-step__body p  { font-size: 0.9rem; color: var(--light-slate); margin: 0; }

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border: none;
  background: none;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 190px 0 100px;
  background: linear-gradient(135deg, #0a0d18 0%, #152040 40%, #1A5A8A 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,166,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,111,196,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,180,166,0.12);
  border: 1px solid rgba(0,180,166,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__title span { color: var(--teal); }

.hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual — abstract grid card */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(6px);
}
.hero__card-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.hero__service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hero__service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.hero__service-list li .icon-dot {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,180,166,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 36px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card p  { font-size: 0.9rem; color: var(--light-slate); margin-bottom: 1rem; }
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 0.55rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why__point-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why__point-body h4 { margin-bottom: 0.2rem; color: var(--navy); }
.why__point-body p  { font-size: 0.9rem; color: var(--light-slate); margin: 0; }

.why__visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1A5A8A 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
}
.why__quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}
.why__quote-author {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail {
  padding: 90px 0;
}
.service-detail + .service-detail { padding-top: 0; }

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail__inner.reverse { direction: rtl; }
.service-detail__inner.reverse > * { direction: ltr; }

.service-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.service-detail__heading { margin-bottom: 1rem; }
.service-detail__desc    { color: var(--light-slate); margin-bottom: 1.5rem; font-size: 0.97rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
}
.feature-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-detail__visual {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail__visual .icon-hero {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}
.service-detail__visual h3 { margin-bottom: 0.75rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card__avatar {
  width: 72px; height: 116px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1rem;
}
.team-card h4 { margin-bottom: 0.25rem; }
.team-card p  { font-size: 0.85rem; color: var(--light-slate); margin: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1A5A8A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,180,166,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2  { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p   { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info__body h4 { margin-bottom: 0.15rem; }
.contact-info__body p  { font-size: 0.9rem; color: var(--light-slate); margin: 0; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--slate);
  background: var(--bg-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: 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,180,166,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0d18 0%, #152040 50%, #243E6B 100%);
  padding: 168px 0 70px;
  text-align: center;
}
.page-hero h1  { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p   { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.page-hero__breadcrumb a { color: var(--teal); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
}
.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--teal); }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.footer__logo-mark {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--teal);
}
.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-text span { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: var(--teal); }

/* ============================================================
   DIVIDERS & MISC
   ============================================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.tag-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--teal-light);
  color: var(--teal);
  margin-bottom: 0.3rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .service-cards       { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid     { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer__grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .insights-grid       { grid-template-columns: repeat(2, 1fr); }
  .framework-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section             { padding: 60px 0; }
  .hero                { padding: 110px 0 70px; }
  .hero__inner         { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual        { display: none; }
  .why-grid            { grid-template-columns: 1fr; }
  .why__visual         { display: none; }
  .service-detail__inner { grid-template-columns: 1fr; }
  .service-detail__inner.reverse { direction: ltr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .service-cards       { grid-template-columns: 1fr; }
  .stats-bar__grid     { grid-template-columns: repeat(2, 1fr); }
  .footer__grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom      { flex-direction: column; text-align: center; }
  .insights-grid       { grid-template-columns: 1fr; }
  /* Mobile dropdown — show inline under parent */
  .has-dropdown .dropdown {
    position: static;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.25rem;
    display: none;
  }
  .has-dropdown.dropdown-open .dropdown { display: block; }

  .navbar__links,
  .navbar__cta         { display: none; }
  .navbar__hamburger   { display: flex; }
  .navbar__links.open  {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 116px; left: 0; right: 0;
    background: #0a0c16;
    border-bottom: 1px solid rgba(74,240,224,0.12);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    gap: 0.25rem;
  }
  .navbar__links.open a {
    padding: 0.65rem 0.9rem;
    display: block;
    color: rgba(255,255,255,0.75);
  }
  .navbar__links.open a.active { color: var(--teal); }
  .navbar__cta.open {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.5rem;
    background: #0a0c16;
    border-top: 1px solid rgba(74,240,224,0.12);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  }
  .navbar__cta.open .btn { flex: 1; justify-content: center; }
}

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