/* Styles for Take a Break Marketing Website */
/* Brand System: Moo Brand (v1.2) */

/* Fonts: system stack only — keeps the "No External Tracking" footer claim true (no third-party requests). */

:root {
  /* Color Tokens */
  --purple: #7B61FF;
  --purple-light: #A78BFA;
  --pink: #FFD6E7;
  --yellow: #FFE082;
  --mint: #61E7D7;
  --bg-light: #F3EDFF;
  --bg-white: #FFFFFF;
  --text-dark: #2D203A;
  --text-muted: #5C4B6E;
  
  /* Gradients */
  --grad-violet: linear-gradient(135deg, #7B61FF 0%, #A78BFA 100%);
  --grad-pastel: linear-gradient(135deg, #FFD6E7 0%, #FFE082 100%);
  --grad-hero: radial-gradient(circle at 10% 20%, rgba(243, 237, 255, 0.8) 0%, rgba(255, 255, 255, 1) 90%);
  --grad-glass: rgba(255, 255, 255, 0.75);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(45, 32, 58, 0.05), 0 2px 4px -1px rgba(45, 32, 58, 0.03);
  --shadow-md: 0 10px 20px -5px rgba(45, 32, 58, 0.08), 0 8px 8px -5px rgba(45, 32, 58, 0.04);
  --shadow-lg: 0 20px 35px -8px rgba(45, 32, 58, 0.12), 0 12px 16px -8px rgba(45, 32, 58, 0.06);
  --shadow-purple: 0 10px 25px -5px rgba(123, 97, 255, 0.3);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Common Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--purple);
  font-weight: var(--weight-semibold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-semibold);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1rem;
  gap: 8px;
}

.btn-primary {
  background: var(--grad-violet);
  color: var(--bg-white);
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(123, 97, 255, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* Sticky Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--grad-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 97, 255, 0.08);
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.9);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--weight-bold);
  font-size: 1.25rem;
  color: var(--text-dark);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-item-link {
  font-weight: var(--weight-medium);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-item-link:hover {
  color: var(--purple);
}

/* Hamburger Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin-bottom: 6px;
  transition: var(--transition-normal);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Hamburger Active Transform */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 100px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: var(--transition-normal);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: var(--weight-medium);
  color: var(--text-dark);
}

.mobile-nav-link:hover {
  color: var(--purple);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(45, 32, 58, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  background: var(--grad-hero);
  padding: 160px 0 100px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--weight-extrabold);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title .gradient-text {
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: var(--weight-light);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-coming-soon {
  display: flex;
  flex-direction: column;
  position: relative;
}

.badge-coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: -10px;
  right: -5px;
  background-color: var(--pink);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: var(--weight-semibold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  border: 1px solid rgba(45, 32, 58, 0.1);
  box-shadow: var(--shadow-sm);
}

.play-badge-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.store-badge-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-ring {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(255, 214, 231, 0.4) 0%, rgba(123, 97, 255, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

.mascot-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  padding: 16px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(123, 97, 255, 0.1);
  max-width: 420px;
  width: 100%;
  transform: rotate(-2deg);
  transition: var(--transition-slow);
}

.mascot-container:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-purple);
}

.mascot-inner {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grad-pastel);
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-img {
  width: 80%;
  max-width: 280px;
  filter: drop-shadow(0 10px 15px rgba(45, 32, 58, 0.15));
  animation: float-mascot 6s infinite ease-in-out;
}

/* Floating Badges in Hero */
.floating-card {
  position: absolute;
  background: var(--grad-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float-card 5s infinite alternate ease-in-out;
}

.floating-card-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 10%;
  right: -20px;
  animation-delay: 1.5s;
}

.floating-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-title {
  font-size: 0.85rem;
  font-weight: var(--weight-bold);
  color: var(--text-dark);
}

.floating-card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Why Take a Break - 4 Card Grid */
.benefits {
  background-color: var(--bg-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.benefit-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 32, 58, 0.04);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 97, 255, 0.1);
}

.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-card:nth-child(1) .benefit-icon-wrapper { background-color: var(--pink); }
.benefit-card:nth-child(2) .benefit-icon-wrapper { background-color: var(--yellow); }
.benefit-card:nth-child(3) .benefit-icon-wrapper { background-color: var(--mint); }
.benefit-card:nth-child(4) .benefit-icon-wrapper { background-color: var(--bg-light); }

.benefit-card-title {
  font-size: 1.35rem;
  font-weight: var(--weight-bold);
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* How It Works Section */
.how-it-works {
  background-color: var(--bg-light);
  overflow: hidden;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 48px;
  gap: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: var(--purple-light);
  opacity: 0.3;
  z-index: 1;
}

.timeline-step {
  flex: 1;
  position: relative;
  z-index: 2;
  background-color: var(--bg-light);
  padding: 10px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-violet);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm), var(--shadow-purple);
  border: 4px solid var(--bg-light);
  transition: var(--transition-normal);
}

.timeline-step:hover .step-number {
  transform: scale(1.1);
}

.step-title {
  font-size: 1.15rem;
  font-weight: var(--weight-bold);
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 250px;
}

/* Testimonial & Circadian Info */
.testimonials {
  background-color: var(--bg-white);
}

.testimonial-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  border: 1px solid rgba(123, 97, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.testimonial-wrapper::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 32px;
  font-size: 8rem;
  font-family: 'Poppins', sans-serif;
  color: var(--purple-light);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  border: 2px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.author-info h4 {
  font-weight: var(--weight-bold);
  font-size: 1rem;
  color: var(--text-dark);
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Email Subscribe Block */
.subscribe-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.subscribe-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--grad-pastel);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subscribe-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.subscribe-title {
  font-size: 2rem;
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.subscribe-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 32px;
}

.subscribe-form {
  display: flex;
  width: 100%;
  max-width: 500px;
  gap: 12px;
}

.subscribe-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(45, 32, 58, 0.1);
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.subscribe-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.15);
}

.subscribe-btn {
  background: var(--grad-violet);
  color: var(--bg-white);
  border-radius: var(--radius-full);
  font-weight: var(--weight-semibold);
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-purple);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(123, 97, 255, 0.4);
}

.subscribe-success-msg {
  color: #10B981;
  font-weight: var(--weight-medium);
  margin-top: 16px;
  display: none;
}

/* Purple CTA Band */
.purple-cta-band {
  background: var(--grad-violet);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: var(--weight-extrabold);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 36px;
  opacity: 0.9;
}

.cta-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-appstore-link {
  transition: var(--transition-normal);
}

.cta-appstore-link:hover {
  transform: scale(1.05);
}

.cta-coming-soon {
  position: relative;
  opacity: 0.75;
}

.cta-coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: -12px;
  right: -5px;
  background-color: var(--yellow);
  color: var(--text-dark);
  font-size: 0.6rem;
  font-weight: var(--weight-semibold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

/* FAQ Accordion Section */
.faq {
  background-color: var(--bg-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Styled Details Element */
.faq-item {
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  border: 1px solid rgba(123, 97, 255, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--purple-light);
}

.faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-weight: var(--weight-bold);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-dark);
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: var(--transition-normal);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--purple);
  transition: var(--transition-normal);
}

/* Horizontal line */
.faq-icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
}

.faq-content {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px solid rgba(123, 97, 255, 0.05);
  animation: slide-down 0.25s ease-out;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 64px 0 32px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--weight-bold);
  font-size: 1.25rem;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-title {
  font-weight: var(--weight-bold);
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
}

.footer-link:hover {
  color: var(--purple-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
}

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

/* Animations */
@keyframes float-mascot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-card {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-text {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .timeline {
    flex-direction: column;
    gap: 24px;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
    padding: 16px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  
  .step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .step-desc {
    max-width: 100%;
  }

  .floating-card-1 {
    left: 10px;
  }

  .floating-card-2 {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-wrapper {
    padding: 32px 24px;
  }
  
  .subscribe-card {
    padding: 32px 24px;
  }
  
  .subscribe-form {
    flex-direction: column;
    gap: 16px;
  }
  
  .subscribe-btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
