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

:root {
  --teal: #5cb8b2;
  --teal-light: #c7e7e4;
  --teal-dark: #4a9a95;
  --gold: #ffba03;
  --gold-dark: #f4bf00;
  --purple: #7f54b3;
  --black: #1a1a1a;
  --dark-gray: #565656;
  --gray: #808080;
  --light-gray: #f7f7f7;
  --border-gray: #e5e5e5;
  --white: #ffffff;
  --font: 'Quicksand', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { margin-bottom: 1rem; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,184,178,0.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,186,3,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000000;
  box-shadow: none;
  transition: var(--transition);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 0;
  font-size: 0.8rem !important;
  letter-spacing: 0.5px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO SECTIONS ===== */

/* Composite hero: bg image + cutout photo + text */
.hero-composite {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-composite-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-composite-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}
.hero-composite-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-top: 90px;
}
.hero-composite-text {
  color: var(--white);
  padding-bottom: 40px;
}
.hero-composite-text h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}
.hero-composite-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-composite-photo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 0;
  line-height: 0;
}
.hero-composite-photo img {
  height: 460px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: -4px;
}

/* Standard split hero */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content p {
  font-size: 1.15rem;
  color: var(--dark-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}
.hero-subtitle {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.hero-image { position: relative; }
.hero-image img {
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  max-height: 560px;
}
/* Hero inline stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-gray);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--teal);
  letter-spacing: 0.3px;
}
.hero-stat span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

/* Logo ticker */
.ticker-row {
  overflow: hidden;
  white-space: nowrap;
}
.ticker-row + .ticker-row { margin-top: 24px; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-right .ticker-track {
  animation: ticker-scroll-reverse 30s linear infinite;
}
.ticker-track img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ticker-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Interactive tabs - notebook style */
.tabs-header {
  display: flex;
  gap: 16px;
}
.tab {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: #ececec;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  border-radius: 0;
}
.tab:hover { color: var(--dark-gray); }
.tab.active {
  background: var(--white);
  color: var(--black);
}
.tab-card {
  background: var(--white);
  border-radius: 0;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: tabFade 0.3s ease forwards;
}
@keyframes tabFade {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.tab-content {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.tab-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.tab-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Device composite for On-Demand tab */
.tab-devices {
  position: relative;
}
.tab-devices .device-laptop {
  width: 90%;
  height: auto;
  position: relative;
  z-index: 1;
}
.tab-devices .device-phone {
  position: absolute;
  bottom: 4%;
  right: 4%;
  width: 30%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(-4px 4px 12px rgba(0,0,0,0.2));
}
.tab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
}
.tab-text h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: left;
}
.tab-text p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 28px;
  text-align: left;
}
.tab-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.tab-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* Quote section */
.quote-section {
  background: #000000;
  padding: 0;
  overflow: hidden;
}
.quote-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 120px 60px;
  text-align: left;
}
.quote-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}
.quote-mark {
  color: var(--teal);
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
}
.quote-content blockquote {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 48px;
  text-align: left;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 18px;
}
.quote-photo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  outline: 4px solid var(--teal);
  overflow: hidden;
}
.quote-photo img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}
.quote-name {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.quote-title {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .quote-inner { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .quote-inner { padding: 50px 24px; }
  .quote-mark { width: 40px; height: 40px; }
  .quote-photo { width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .quote-inner { padding: 40px 20px; }
  .quote-photo { width: 48px; height: 48px; }
  .quote-content blockquote { margin-bottom: 36px; }
}

/* Full-width hero */
.hero-full {
  padding: 200px 0 120px;
  text-align: center;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 50%, var(--light-gray) 100%);
}
.hero-full h1 { margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-full p { max-width: 600px; margin-left: auto; margin-right: auto; color: var(--dark-gray); font-size: 1.15rem; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-teal { background: var(--teal); color: var(--white); }
.section-light { background: var(--light-gray); }
.section-dark { background: var(--black); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-header .teal-line {
  width: 60px; height: 3px;
  background: var(--teal);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card {
  background: var(--white);
  border-radius: 0;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.card-icon {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal);
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--gray); font-size: 0.95rem; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 24px 20px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 0.9rem; }

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.two-col img { border-radius: 0; width: 100%; max-width: 100%; }
.two-col > div { min-width: 0; }

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.8rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.stat-item p {
  font-weight: 600;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* ===== CLIENT LOGOS ===== */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.logo-strip img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}
.logo-strip img:hover { opacity: 1; filter: grayscale(0); }

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--light-gray);
  border-radius: 0;
  padding: 40px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--teal-light);
  position: absolute;
  top: 10px; left: 30px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 16px;
  padding-top: 20px;
}
.testimonial-author {
  font-weight: 700;
  color: var(--black);
  font-style: normal;
  font-size: 0.9rem;
}

/* ===== COACHES GRID ===== */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.coach-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.coach-photo {
  width: 100%;
  height: 280px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--teal);
  overflow: hidden;
}
.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-info { padding: 24px 20px; }
.coach-info h3 { margin-bottom: 4px; font-size: 1.15rem; }
.coach-info .coach-title {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.coach-info p { color: var(--gray); font-size: 0.9rem; margin-top: 8px; }

/* ===== PRICING ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: 0;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid var(--border-gray);
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--teal);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 4px 20px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.pricing-card h3 { margin-bottom: 8px; }
.price { font-size: 2.8rem; font-weight: 700; color: var(--teal); margin: 16px 0; }
.price span { font-size: 1rem; color: var(--gray); font-weight: 500; }
.pricing-features { margin: 24px 0; text-align: left; }
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.95rem;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--teal);
  font-weight: 700;
}

/* ===== KEYNOTE CARDS ===== */
.keynote-card {
  background: var(--white);
  border-radius: 0;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}
.keynote-card h3 { color: var(--teal); margin-bottom: 16px; font-size: 1.4rem; }
.keynote-card .objectives { margin-top: 20px; }
.keynote-card .objectives li {
  padding: 6px 0;
  color: var(--dark-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.keynote-card .objectives li::before {
  content: '\25B8';
  color: var(--teal);
  font-weight: 700;
  margin-top: 2px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 30px; font-size: 1.1rem; opacity: 0.9; }

/* ===== FOOTER ===== */
footer {
  background: #000000;
  color: rgba(255,255,255,0.5);
  padding: 32px 0 24px;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { height: 24px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.8rem; line-height: 1.4; margin: 0; display: none; }
footer h4 { display: none; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-nav a:hover { color: var(--white); }
footer ul li { margin-bottom: 0; }
footer ul a { font-size: 0.8rem; transition: var(--transition); }
footer ul a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== BRAIN GYM FEATURES ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.feature-item h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-item p { color: var(--gray); font-size: 0.9rem; margin-bottom: 0; }

/* ===== MODULE GRID ===== */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.module-item {
  background: rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}
.module-item h4 { color: var(--teal-light); font-size: 0.95rem; margin-bottom: 4px; }
.module-item p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 0; }

/* White variant */
.section-light .module-item {
  background: var(--white);
  border-color: var(--border-gray);
}
.section-light .module-item h4 { color: var(--teal); }
.section-light .module-item p { color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.8rem; }
  .hero-composite-photo img { height: 380px; }
  .tab-content { grid-template-columns: 280px 1fr; gap: 36px; }
  .tab-text { min-height: 280px; }
  .tab-card { padding: 36px; }
  .ticker-track img { height: 36px; }
  .ticker-track { gap: 48px; }
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-image { max-width: 500px; margin: 0 auto; order: -1; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-reverse { direction: ltr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--black);
    padding: 24px 24px 30px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .nav-links.open a { font-size: 0.95rem; text-transform: none; }
  .hamburger { display: flex; }
  .hero-composite-inner {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .hero-composite-text { padding-bottom: 30px; }
  .hero-composite-text h1 { font-size: 1.5rem; }
  .hero-composite-text p { font-size: 0.9rem; margin-bottom: 16px; }
  .hero-composite-photo { display: none; }
  .tabs-header { flex-direction: column; gap: 4px; }
  .tab { width: 100%; text-align: center; }
  .tab-card { padding: 24px; }
  .tab-content { grid-template-columns: 1fr; gap: 20px; }
  .tab-img { aspect-ratio: 1 / 1; max-width: 280px; }
  .tab-text { min-height: auto; }
  .tab-text h2 { font-size: 1.3rem; }
  .ticker-track img { height: 28px; }
  .ticker-track { gap: 36px; }
  .hero { padding: 110px 0 50px; }
  .hero .hero-split { text-align: center; }
  .hero .hero-image { order: -1; }
  .hero .hero-stats { justify-content: center; }
  .hero-full { padding: 120px 0 60px; }
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 0; }
  .keynote-card { padding: 30px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-item h3 { font-size: 1.8rem; }
}
