* {
  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 */
  --primary: #111827;
  --primary-invert: #ffffff;
  --secondary: #0066cc;
  --bg: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --card-bg: #f9fafb;
  --card-border: rgba(0,0,0,0.05);
  --nav-bg: rgba(255, 255, 255, 0.8);
  
  /* Gradients */
  --grad-hero: linear-gradient(180deg, #f0f9ff 0%, #ffffff 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;
}

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

.hero {
  background: var(--grad-hero);
  padding: 130px 0 50px;
  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%);
}

/* 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);
}

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

.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, #4A90E2 0%, #2171CE 100%);
  color: #fff;
}

.bento-card.charcoal {
  background: #1c1c1c;
  color: #fff;
}

.bento-card.green {
  background: linear-gradient(135deg, #2D5A27 0%, #4A8C3F 100%);
  color: #fff;
}

.bento-card.cyan {
  background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
  color: #fff;
}

.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 Showcase Sophisticated */
.showcase-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  overflow: hidden;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The Fixed Center Skeleton */
.showcase-skeleton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px; 
  height: 480px;
  border: 12px solid #000;
  border-radius: 40px;
  background: transparent;
  z-index: 30;
  pointer-events: none;
  box-shadow: 0 0 0 2px #333, 0 20px 50px rgba(0,0,0,0.1);
}

/* The Dynamic Notch */
.showcase-skeleton::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: #000;
  border-radius: 10px;
}

/* The Scrolling Track */
.app-carousel {
  display: flex;
  gap: 30px;
  padding: 0 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  align-items: center;
  scrollbar-width: none;
}
.app-carousel::-webkit-scrollbar { display: none; }

.carousel-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 210px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  filter: grayscale(1) opacity(0.2);
  transform: scale(0.85);
}

.carousel-item.active {
  filter: grayscale(0) opacity(1);
  transform: scale(1);
  z-index: 10;
}

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

/* Side Fading */
.showcase-container::before,
.showcase-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 20;
  pointer-events: none;
}

.showcase-container::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.showcase-container::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* The Fixed Center Skeleton */
.showcase-skeleton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px; 
  height: 490px;
  border: 10px solid #000; /* Slightly thicker for premium look */
  border-radius: 44px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
  z-index: 15;
  pointer-events: none;
  background: transparent;
}

.showcase-skeleton::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #000;
  border-radius: 10px;
}

/* The Scrolling Content */
.app-carousel {
  display: flex;
  gap: 60px; /* Tighter gap for better flow */
  padding: 100px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  justify-content: center;
}

.app-carousel::-webkit-scrollbar { display: none; }

.carousel-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 220px; 
  height: 470px;
  transition: var(--transition);
  opacity: 0.2; /* Muted by default */
}

.carousel-item.active {
  opacity: 1; /* Fully visible when in center */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.carousel-item:focus, .carousel-item:active {
  opacity: 1;
}

/* Simple JS-less hover focus for desktop */
.app-carousel:hover .carousel-item {
  opacity: 0.2;
}
.app-carousel .carousel-item:hover {
  opacity: 1;
}

/* 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: #3b82f6;
  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(59, 130, 246, 0.08) 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;
  }
}
