/* ===== DESIGN TOKENS ===== */
:root {
  --orange: #FF6A00;
  --orange-light: #FFF3EB;
  --orange-hover: #E55E00;
  --bg-white: #FFFFFF;
  --bg-offwhite: #FAFAF8;
  --bg-beige: #F5F3EF;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-light: #E8E6E1;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --max-width: 1140px;
  --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { color: var(--text-secondary); line-height: 1.8; }
.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 100px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,106,0,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 64px;
  width: auto;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo-accent {
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links .btn { padding: 10px 24px; font-size: 0.8125rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-content .label { margin-bottom: 20px; }
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content h1 .arrow {
  color: var(--orange);
  font-weight: 400;
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-micro {
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-micro .dot {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  max-width: 500px;
  width: 100%;
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-offwhite);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.about .container {
  max-width: 800px;
  text-align: center;
}
.about .label { margin-bottom: 16px; }
.about h2 { margin-bottom: 24px; }
.about p { font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

/* ===== OFFERINGS ===== */
.offerings { background: var(--bg-white); }
.offerings .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.offerings .label { margin-bottom: 16px; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.offering-card {
  padding: 40px 32px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,106,0,0.2);
}
.offering-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offering-icon svg { width: 40px; height: 40px; }
.offering-card h3 { margin-bottom: 12px; }
.offering-card p { font-size: 0.9375rem; }

/* ===== WORKSHOP ===== */
.workshop {
  background: var(--bg-offwhite);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.workshop .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.workshop-content .label { margin-bottom: 16px; }
.workshop-content h2 { margin-bottom: 24px; }
.workshop-content p { margin-bottom: 24px; }
.workshop-programs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.program-item {
  padding: 20px 24px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.program-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.program-item h4 { margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.program-item p { font-size: 0.875rem; color: var(--text-muted); }
.workshop-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.workshop-visual img { max-width: 480px; width: 100%; }

/* ===== JAPAN CREDIBILITY ===== */
.japan {
  background: var(--bg-white);
  position: relative;
}
.japan .container {
  max-width: 900px;
  text-align: center;
}
.japan .label { margin-bottom: 16px; }
.japan h2 { margin-bottom: 24px; }
.japan > .container > p {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 48px;
}
.japan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.japan-card {
  padding: 32px 28px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.japan-card .card-icon {
  font-size: 2.25rem;
  margin-bottom: 16px;
  display: block;
}
.japan-card h4 {
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.japan-card p { font-size: 0.875rem; }

/* ===== PARTNERSHIP ===== */
.partnership {
  background: var(--bg-offwhite);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.partnership .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.partnership-content .label { margin-bottom: 16px; }
.partnership-content h2 { margin-bottom: 24px; }
.partnership-content p { margin-bottom: 24px; font-size: 1.0625rem; }
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.partner-item .check {
  width: 20px;
  height: 20px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-item .check svg { width: 12px; height: 12px; }
.partnership-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partnership-visual-inner {
  width: 100%;
  max-width: 420px;
  padding: 48px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
}
.partnership-visual-inner .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.partnership-visual-inner .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.partnership-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.mini-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mini-stat .stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== TIB BADGE ===== */
.tib-badge {
  margin: 32px auto 48px;
  max-width: 480px;
}
.tib-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--orange-light);
  border: 2px solid rgba(255,106,0,0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: left;
}
.tib-link:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tib-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}
.tib-link strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.tib-link span {
  font-size: 0.8125rem;
  color: var(--orange);
  font-weight: 500;
}

/* ===== MEDIA / PODCASTS ===== */
.media { background: var(--bg-white); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.media-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.media-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.media-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.media-info { flex: 1; }
.media-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.media-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.media-arrow {
  color: var(--text-muted);
  font-size: 1.125rem;
  transition: color var(--transition);
}
.media-card:hover .media-arrow { color: var(--orange); }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--text-primary);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-primary:hover {
  background: #fff;
  color: var(--orange);
}
.final-cta .btn-secondary {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.final-cta .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ===== CONNECT PAGE ===== */
.connect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-offwhite);
  padding: 40px 24px;
}
.connect-card {
  max-width: 480px;
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.connect-card .nav-logo {
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.connect-card h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.connect-card > p {
  margin-bottom: 36px;
  font-size: 0.9375rem;
}
.connect-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.connect-links .btn {
  width: 100%;
  justify-content: center;
}
.connect-divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--border-light);
}
.connect-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.connect-social .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.8125rem;
}

/* ===== CONNECT FORM ===== */
.connect-form {
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-offwhite);
  color: var(--text-primary);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success.visible {
  display: block;
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 {
  margin-bottom: 8px;
}

/* ===== COLLEGES PAGE ===== */
.college-hero {
  padding: 160px 0 100px;
  background: var(--bg-beige);
  border-bottom: 1px solid var(--border-light);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.gap-section { background: var(--bg-white); }
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: center;
}
.gap-card {
  padding: 40px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.gap-card h4 {
  margin-bottom: 24px;
  text-align: center;
}
.story-card { text-align: left; }
.story-card h4 { text-align: left; }
.short-hr { margin: 24px 0; border: none; border-top: 1px dashed var(--border-light); }
.gap-list { display: flex; flex-direction: column; gap: 16px; }
.gap-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; font-size: 0.9375rem; }
.funnel-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.funnel-layer {
  background: var(--orange);
  color: #fff;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  width: 100%;
}
.funnel-top { max-width: 100%; opacity: 0.8; }
.funnel-mid { max-width: 70%; opacity: 0.9; }
.funnel-bot { max-width: 40%; opacity: 1; }
.makeathon-section { background: var(--bg-offwhite); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timeline-item {
  display: flex;
  gap: 24px;
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.timeline-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255,106,0,0.3); }
.timeline-day {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding-top: 4px;
  min-width: 70px;
}
.timeline-content h4 { margin-bottom: 8px; }
.benefits-section { background: var(--bg-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
}
.benefit-card {
  padding: 40px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.b-icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card h4 { margin-bottom: 12px; }

.program-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.tab-btn {
  padding: 12px 32px;
  border-radius: 30px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--orange); color: var(--text-primary); }
.tab-btn.active { background: var(--orange); color: white; border-color: var(--orange); }

.agenda-wrapper {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.agenda-wrapper::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 10px;
  bottom: 20px;
  width: 2px;
  background: var(--border-light);
  z-index: 0;
}
.agenda-item {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.agenda-icon {
  width: 56px;
  height: 56px;
  background: white;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--bg-offwhite);
}
.agenda-text {
  background: var(--bg-white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  width: 100%;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.outcomes-bar {
  margin-top: 64px;
  background: var(--orange-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,106,0,0.2);
}
.outcomes-grid {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.outcome-item {
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  max-width: 150px;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container,
  .workshop .container,
  .partnership .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 360px; }
  .offerings-grid,
  .japan-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .workshop-visual img { max-width: 360px; margin: 0 auto; }
  .partnership-visual-inner { margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.active a { font-size: 1.125rem; }
  .nav-toggle { display: block; }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero { padding: 120px 0 72px; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-micro { justify-content: center; }
  .btn-group { justify-content: center; }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .connect-card { padding: 40px 24px; }
  .gap-grid, .benefits-grid { grid-template-columns: 1fr; }
  .timeline-item { flex-direction: column; gap: 12px; }
  .timeline-day { padding-top: 0; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 24px; font-size: 0.875rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
}
