/* ============================================
   BEST DAY EVA! — Styles
   Brand: Warm, energetic, personal
   ============================================ */

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

:root {
  --navy: #1C1C3A;
  --gold: #F5A623;
  --sunshine: #FFD966;
  --cream: #FFF5E1;
  --teal: #0080B0;
  --deep-teal: #003040;
  --brown: #5C4A3A;
  --white: #FFFFFF;
  --gold-glow: rgba(245, 166, 35, 0.15);
  --shadow-soft: 0 4px 24px rgba(28, 28, 58, 0.08);
  --shadow-card: 0 8px 32px rgba(28, 28, 58, 0.12);
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--brown);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* --- Skip to content (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 16px;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}

p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  max-width: 680px;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.caption {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--sunshine);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--navy);
  color: var(--white);
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(28, 28, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  color: var(--white);
  z-index: 1001;
}

.logo svg {
  height: 48px;
  width: auto;
}

.site-header.scrolled .logo svg {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 58, 0.75) 0%,
    rgba(28, 28, 58, 0.6) 50%,
    rgba(28, 28, 58, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-tagline {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 40px;
  max-width: 640px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION 2: THE PROBLEM (EMPATHY HOOK)
   ============================================ */
.problem {
  background: var(--cream);
  padding: 100px 0;
}

.problem-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.problem h2 {
  color: var(--navy);
  margin-bottom: 32px;
}

.problem p {
  margin: 0 auto 24px;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.9;
  color: var(--brown);
}

.problem .hook {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
  margin-top: 40px;
}

/* ============================================
   SECTION 3: THE GUIDE (ABOUT REBECCA)
   ============================================ */
.about {
  background: var(--white);
  padding: 100px 0;
}

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

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--brown);
}

.authority-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  list-style: none;
}

.authority-markers li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.authority-markers li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   SECTION 4: THE FRAMEWORK (BDE RESET)
   ============================================ */
.framework {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}

.framework h2 {
  color: var(--white);
  margin-bottom: 60px;
}

.framework-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.framework-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition);
}

.framework-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
}

.framework-card .letter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.framework-card h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.framework-card .subtitle {
  color: var(--gold);
  font-style: italic;
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.framework-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0 auto;
}

/* ============================================
   SECTION 5: THE EXPERIENCE
   ============================================ */
.experience {
  background: var(--cream);
  padding: 100px 0;
}

.experience-header {
  text-align: center;
  margin-bottom: 56px;
}

.experience-header h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.experience-header p {
  margin: 0 auto;
  font-style: italic;
  color: var(--brown);
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.outcome-item:hover {
  transform: translateY(-2px);
}

.outcome-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outcome-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.outcome-item p {
  font-size: 0.9375rem;
  color: var(--brown);
}

.formats {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(92, 74, 58, 0.12);
}

.formats h3 {
  color: var(--navy);
  margin-bottom: 24px;
}

.format-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 32px;
}

.format-list li {
  font-size: 0.9375rem;
  color: var(--brown);
  padding-left: 20px;
  position: relative;
}

.format-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.experience .closing {
  text-align: center;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: 32px;
}

/* ============================================
   SECTION 6: TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.testimonials h2 {
  color: var(--navy);
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  position: relative;
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author .info .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
}

.testimonial-author .info .role {
  font-size: 0.8125rem;
  color: var(--brown);
  opacity: 0.7;
}

/* ============================================
   SECTION 7: VIDEO
   ============================================ */
.video-section {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}

.video-section h2 {
  color: var(--white);
  margin-bottom: 48px;
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 58, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background var(--transition);
}

.video-container:hover .video-overlay {
  background: rgba(28, 28, 58, 0.35);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.video-container:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
}

.play-btn svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  margin-left: 4px;
}

.video-overlay span {
  color: var(--white);
  font-style: italic;
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* ============================================
   SECTION 8: BOOKING INQUIRY
   ============================================ */
.booking {
  background: linear-gradient(135deg, var(--gold) 0%, #E8941A 100%);
  padding: 100px 0;
  text-align: center;
}

.booking h2 {
  color: var(--navy);
  margin-bottom: 12px;
}

.booking .subtitle {
  color: var(--navy);
  opacity: 0.8;
  margin: 0 auto 48px;
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-placeholder {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(92, 74, 58, 0.2);
  border-radius: 8px;
  color: var(--brown);
  font-style: italic;
  padding: 24px;
}

.booking-alt {
  margin-top: 32px;
  font-size: 0.9375rem;
  color: var(--navy);
}

.booking-alt a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   SECTION 9: LEAD MAGNET / NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--cream);
  padding: 100px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.newsletter-text h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.newsletter-text p {
  color: var(--brown);
  margin-bottom: 12px;
}

.newsletter-text .secondary {
  font-style: italic;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 24px;
}

.newsletter-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.newsletter-form .form-placeholder {
  min-height: 200px;
}

/* ============================================
   SECTION 10: FOOTER
   ============================================ */
.site-footer {
  background: var(--deep-teal);
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo svg {
  height: 64px;
}

.footer-brand .tagline {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--gold);
}

.footer-social {
  text-align: center;
}

.footer-social h4 {
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
  list-style: none;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 8px;
}

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

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================
   ANIMATIONS (fade-in on scroll)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9999;
  font-size: 0.875rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.875rem;
  max-width: none;
}

.cookie-banner button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 8px 24px;
  border-radius: 4px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.cookie-banner button:hover {
  background: var(--sunshine);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 58, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .framework-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about-grid {
    gap: 40px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Header */
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header.scrolled .logo svg {
    height: 36px;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Framework */
  .framework-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Newsletter */
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    padding: 32px 24px;
  }

  /* Booking */
  .form-container {
    padding: 32px 20px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact a {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Sections padding */
  .problem,
  .about,
  .framework,
  .experience,
  .testimonials,
  .video-section,
  .booking,
  .newsletter {
    padding: 72px 0;
  }

  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Formats */
  .format-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .framework-card {
    padding: 36px 24px;
  }

  .btn {
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }
}
