* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

ul {
  list-style: none;
}

:root {
  /* Colors — Liora brand */
  --primary: #000000;
  --primary-invert: #ffffff;
  --secondary: #FF6E88;
  --bg: #ffffff;
  --text: #000000;
  --text-muted: #888688;
  --card-bg: #FAF8F9;
  --card-border: rgba(0,0,0,0.05);
  --nav-bg: rgba(255, 255, 255, 0.8);
  --accent-teal: #2CB8A0;
  --liora-pink-light: #FBEAEB;
  --liora-pink-soft: #F5D8DE;
  
  /* Gradients */
  --grad-hero: linear-gradient(180deg, #FBEAEB 0%, #FAF8F9 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08);
  
  /* Typography */
  --font-main: 'Inter', -apple-system, system-ui, sans-serif;
  
  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.5s var(--ease);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 8vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
h3 { font-size: 1.15rem; }

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

.glass {
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-invert);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 1px solid #e5e7eb;
  color: var(--text);
}

.btn-outline:hover {
  background: #f9fafb;
}

.badge {
  background: #f3f4f6;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 24px;
}

/* Navbar Architecture (Floating Glass) */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1100px;
  height: 72px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.logo {
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.logo:hover {
  opacity: 0.8;
}

.navbar.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 24px;
}

.nav-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: #4b5563;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* App Buttons in Navbar */
.nav-app-btns {
  display: flex;
  gap: 10px;
}

.nav-app-btn {
  width: 42px;
  height: 42px;
  background: #f1f1f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav-app-btn:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
  border-color: #ddd;
}

.nav-app-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: #f1f1f1;
  border: 1px solid transparent;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-menu-toggle:hover,
.nav-menu-toggle.open {
  background: #e5e5e5;
  border-color: #ddd;
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  z-index: 1001;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
  padding: 0 8px;
}

.nav-mobile-app-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.nav-mobile-app-link:hover {
  background: #f3f4f6;
}

.nav-mobile-app-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .category-tabs-wrapper {
    text-align: left;
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px;
    width: calc(100% + 48px);
  }

  .tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .navbar {
    top: 12px;
    width: calc(100% - 20px);
    height: 60px;
    border-radius: 18px;
  }

  .navbar .container {
    padding: 0 12px;
    gap: 8px;
  }

  .logo img {
    height: 24px !important;
  }

  .nav-links {
    position: static;
    transform: none;
    flex: 1;
    justify-content: center;
    gap: clamp(6px, 2vw, 12px);
    min-width: 0;
    overflow: hidden;
  }

  .nav-links a {
    font-size: clamp(10px, 2.8vw, 12px);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-app-btns {
    display: none;
  }

  .nav-menu-toggle {
    display: flex;
  }
}

@media (max-width: 360px) {
  .navbar .container {
    padding: 0 10px;
    gap: 6px;
  }

  .nav-links {
    gap: 5px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .nav-menu-toggle {
    width: 38px;
    height: 38px;
  }
}

/* Unified Section Spacing */
.section {
  padding: 100px 0;
}

.hero {
  background: var(--grad-hero);
  padding: 130px 0 80px;
  text-align: center;
}

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 20px auto 32px;
}

.hero-image {
  margin-top: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Flo-style two-column hero */
.hero-flo {
  background: var(--grad-hero);
  padding: 120px 0 0;
  text-align: left;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero-flo .container {
  max-width: 1200px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-flo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  flex: 1;
  min-height: calc(100vh - 120px);
  min-height: calc(100dvh - 120px);
}

.hero-flo-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 64px;
}

.hero-flo-left h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  color: var(--text);
}

.hero-flo-left p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-stars svg {
  flex-shrink: 0;
}

.hero-stars span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-app-store img {
  height: 52px;
  width: auto;
}

.hero-handwritten {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--accent-teal);
  line-height: 1.3;
  max-width: 220px;
  position: relative;
}

.hero-handwritten svg {
  position: absolute;
  top: -28px;
  left: -12px;
  opacity: 0.85;
}

.hero-flo-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  min-height: 100%;
  margin-right: 0;
}

.hero-main-visual {
  width: 100%;
  max-width: 520px;
  line-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.hero-main-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  background: transparent;
}

@media (max-width: 900px) {
  .hero-flo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-flo {
    text-align: center;
    padding: 110px 0 0;
    min-height: auto;
    display: block;
  }

  .hero-flo .container {
    display: block;
    flex: none;
  }

  .hero-flo-grid {
    flex: none;
    min-height: auto;
  }

  .hero-flo-left {
    padding-bottom: 40px;
  }

  .hero-flo-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stars {
    justify-content: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-flo-right {
    margin-right: 0;
    margin-top: 0;
    min-height: 320px;
  }

  .hero-main-visual {
    max-width: 380px;
  }

  .hero-main-visual img {
    max-width: 380px;
  }
}

.features-section {
  padding-top: 100px;
}

@media (max-width: 900px) {
  .features-section {
    padding-top: 72px;
  }
}

/* Feature Shelf */
.feature-shelf {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.feature-shelf::-webkit-scrollbar { display: none; }

.feature-pill {
  background: #fff;
  border: 1px solid var(--card-border);
  padding: 10px 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.category-tabs-wrapper {
  width: 100%;
  margin-bottom: 80px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: center;
}

.category-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.category-tabs {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 99px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  flex-wrap: nowrap;
  width: max-content;
  max-width: none;
}

.tab {
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #666;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab:hover {
  background: #f9fafb;
}

.tab.active {
  background: var(--primary);
  color: #fff;
}

/* Bento Grid Sophisticated */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 16px;
  margin-top: 32px;
}

.bento-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.bento-card.bento-row-2 {
  grid-row: span 2;
  min-height: 456px;
}

.bento-content {
  padding: 24px;
  z-index: 2;
}

.bento-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.bento-card p { opacity: 0.8; font-size: 13px; margin-bottom: 16px; line-height: 1.4; }

.bento-card.blue {
  background: linear-gradient(180deg, #FF6E88 0%, #E85570 100%);
  color: #fff;
}

.bento-card.bento-dashboard {
  background: linear-gradient(180deg, #FF6E88 0%, #E85570 100%);
}

.bento-card.bento-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('bento_dashboard_bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

.bento-card.bento-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 110, 136, 0.9) 0%,
    rgba(232, 85, 112, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.bento-card.bento-dashboard .bento-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}

.bento-card.bento-dashboard .bento-content h3,
.bento-card.bento-dashboard .bento-content p {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.bento-card.bento-dashboard .bento-content p {
  opacity: 1;
  max-width: 280px;
  line-height: 1.5;
}

.bento-card.charcoal {
  background: linear-gradient(180deg, #3D2438 0%, #2A1828 100%);
  color: #fff;
}

.bento-card.green {
  background: linear-gradient(135deg, #C6CED9 0%, #A8B4C4 100%);
  color: #1a1a1a;
}

.bento-card.bento-premium {
  background: linear-gradient(135deg, #C6CED9 0%, #A8B4C4 100%);
  color: #1a1a1a;
}

.bento-card.bento-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('bento_premium_bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

.bento-card.bento-premium::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(198, 206, 217, 0.9) 0%,
    rgba(168, 180, 196, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.bento-card.bento-premium .bento-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}

.bento-card.bento-premium .bento-content h3,
.bento-card.bento-premium .bento-content p {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.7), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.bento-card.bento-premium .bento-content p {
  opacity: 1;
  line-height: 1.5;
}

.bento-card.cyan {
  background: linear-gradient(135deg, #4A90E2 0%, #5C6BC0 100%);
  color: #fff;
}

.bento-card.bento-insights {
  background: linear-gradient(135deg, #4A90E2 0%, #5C6BC0 100%);
  color: #fff;
}

.bento-card.bento-insights::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('bento_insights_bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

.bento-card.bento-insights::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.9) 0%,
    rgba(92, 107, 192, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.bento-card.bento-insights .bento-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}

.bento-card.bento-insights .bento-content h3,
.bento-card.bento-insights .bento-content p {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.bento-card.bento-insights .bento-content p {
  opacity: 1;
  line-height: 1.5;
}

.bento-content {
  padding: 24px;
  z-index: 2;
}

.bento-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.bento-card p { opacity: 0.8; font-size: 13px; margin-bottom: 16px; line-height: 1.4; }

.bento-visual {
  position: relative;
  width: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.bento-visual img {
  width: 80%;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: translateY(30%); /* Show only about half/top part */
}

.bento-span-4 { grid-column: span 4; }
.bento-span-8 { grid-column: span 8; }
.bento-row-2 { grid-row: span 2; }

/* Social Proof Carousel */
.social-proof {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: flex-start; /* Start from left for JS transform math */
  overflow: visible;
}

.carousel-track {
  display: flex;
  gap: 24px;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.review-card {
  position: relative;
  width: 80px;
  height: 400px;
  border-radius: 99px; /* Pill for slivers */
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  filter: grayscale(1) opacity(0.3);
  transform: scale(0.85);
  flex-shrink: 0;
}

.review-card.active {
  width: 420px; /* Square-ish but slightly taller */
  height: 420px;
  border-radius: 32px !important; /* Force rounded square */
  filter: grayscale(0) opacity(1);
  transform: scale(1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  z-index: 10;
}

.review-card img.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glassmorphic Bottom Bar */
.review-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.review-card.active .review-overlay {
  opacity: 1;
  transform: translateY(0);
}

.review-quote {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
  opacity: 0.95;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.author-info h4 { font-size: 15px; margin: 0; font-weight: 600; }
.author-info p { font-size: 12px; margin: 0; opacity: 0.7; }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-btn:hover {
  background: #f9fafb;
  transform: scale(1.05);
}

/* App video showcase (Built For section) */
.video-showcase {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 24px;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

.video-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.video-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-btn:hover {
  transform: scale(1.06);
  background: #fff;
}

.video-btn:active {
  transform: scale(0.96);
}

/* X/Twitter Grid Section */
.tweet-section {
  padding: 80px 0 120px;
  background: #fdfdfd;
}

.tweet-grid-container {
  position: relative;
  max-height: 800px; /* Initial view height */
  overflow: hidden;
  transition: max-height 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.tweet-grid-container.expanded {
  max-height: 3000px; /* Large enough for all cards */
}

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

.tweet-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: fit-content;
}

.tweet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.tweet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.tweet-user {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tweet-pfp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-meta h4 { font-size: 15px; margin: 0; font-weight: 600; color: #111; }
.user-meta p { font-size: 12px; margin: 0; color: var(--text-muted); }

.x-logo { 
  opacity: 0.8; 
  width: 20px;
  height: 20px;
}

.tweet-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.tweet-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.tweet-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* Fading for non-expanded */
.tweet-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(to top, #fdfdfd 10%, rgba(253, 253, 253, 0));
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 5;
}

.tweet-grid-container.expanded .tweet-fade-overlay {
  opacity: 0;
}

.load-more-btn {
  display: block;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

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

@media (max-width: 640px) {
  .tweet-grid { grid-template-columns: 1fr; }
  .tweet-section { padding: 60px 0 100px; }
}

/* FAQ Section Styles */
.faq-section {
  padding: 100px 0;
  background: #fff;
}

.faq-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  flex: 0 0 400px;
  position: sticky;
  top: 120px;
}

.faq-right {
  flex: 1;
}

.faq-contact-card {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #1a1a1a;
  margin-top: 40px;
}

.faq-contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.faq-contact-content {
  position: relative;
  z-index: 2;
}

/* Accordion Styles */
.faq-item {
  border-bottom: 1px solid #f3f4f6;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header h4 {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.faq-arrow {
  color: #111;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-right: 40px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* Active State */
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer.show {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 32px;
}

@media (max-width: 991px) {
  .faq-container {
    flex-direction: column;
    gap: 60px;
  }
  .faq-left {
    flex: none;
    position: static;
    max-width: 100%;
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 120px 0;
  background: #fff;
}

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

.process-block {
  text-align: left;
}

.process-visual-bg {
  background: #f8fafc;
  border-radius: 40px;
  height: 480px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.process-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.process-info p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

/* Step 1 Visual: Card Stack */
.card-stack-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-img {
  position: absolute;
  width: 220px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border: 4px solid #fff;
  background: #fff;
}

.stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-1 { transform: translateX(-60px) rotate(-8deg); z-index: 1; }
.img-2 { transform: translateX(0) scale(1.05); z-index: 2; }
.img-3 { transform: translateX(60px) rotate(8deg); z-index: 3; }

.arrow-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step 2 Visual: Booking Hub */
.booking-hub-visual {
  width: 100%;
  padding: 40px;
}

.hub-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 100%;
}

.hub-header {
  position: relative;
  height: 180px;
}

.hub-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-floating-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.hub-creator-pfp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.hub-creator-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hub-creator-name {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.hub-creator-date {
  font-size: 11px;
  color: #6b7280;
}

.hub-ticket-btn {
  background: #FF6E88;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
}

.hub-body {
  padding: 24px;
}

.hub-rating {
  font-size: 12px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.hub-content h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.hub-content p {
  font-size: 13px;
  color: #6b7280;
}

.hub-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hub-price {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.hub-price small {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
}

.btn-book {
  background: #fbbf24;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

/* Step 3 Visual: Alerts */
.alerts-visual {
  width: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alert-item {
  background: #fff;
  border-radius: 99px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  width: 100%;
}

.alert-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

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

.alert-text strong {
  font-size: 14px;
  color: #111;
}

.alert-text span {
  font-size: 12px;
  color: #6b7280;
}

/* Download Buttons */
.btn-download {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-download.black {
  background: #111;
  color: #fff;
}

.btn-download.black img {
  filter: brightness(0) invert(1);
}

.btn-download.light {
  background: #f8fafc;
  color: #111;
  border: 1px solid #e2e8f0;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.btn-text span {
  font-size: 14px;
  font-weight: 600;
}

/* Blogs Section */
.blogs-section {
  padding: 120px 0;
  background: #fff;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.blog-titles {
  max-width: 650px;
}

.blog-desc {
  max-width: 400px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 8px;
}

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

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-cat-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #111;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #6b7280;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* App Promo Section */
.app-promo-section {
  padding: 80px 0;
}

.promo-card {
  background: #f8fafc;
  border-radius: 48px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.promo-content {
  padding: 60px;
  position: relative;
  z-index: 2;
}

.promo-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.1;
  color: #111;
}

.promo-content p {
  color: #6b7280;
  font-size: 15px;
  max-width: 400px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.promo-visual {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-right: 0;
}

.promo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 110, 136, 0.12) 0%, transparent 70%);
  z-index: 1;
}

.promo-visual img {
  width: 100%;
  height: auto;
  max-width: 380px;
  z-index: 2;
  transform: translateY(15%);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}

@media (max-width: 1024px) {
  .promo-card {
    grid-template-columns: 1fr;
    border-radius: 40px;
    max-width: 600px;
  }
  .promo-content {
    padding: 40px;
    text-align: center;
  }
  .promo-content p {
    margin: 0 auto 32px;
  }
  .promo-visual img {
    max-width: 280px;
  }
}

/* Footer Section */
footer {
  padding: 100px 0 40px;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr 1.4fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin: 24px 0;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #f8fafc;
  color: #111;
  border-color: #111;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #111;
}

.newsletter-card {
  background: #f8fafc;
  border-radius: 32px;
  padding: 40px;
}

.newsletter-card h4 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.newsletter-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.subscribe-form {
  background: #fff;
  border-radius: 99px;
  padding: 6px;
  display: flex;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.subscribe-form input {
  flex: 1;
  border: none;
  padding: 0 20px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.subscribe-form .btn-subscribe {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.subscribe-form .btn-subscribe:hover {
  opacity: 0.9;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
