/* ========================================
   Trip Amor — Product Showcase Styles
   ======================================== */

/* --- CSS Variables --- */
:root {
  --terracotta: #C1602E;
  --terracotta-dark: #9A4A20;
  --terracotta-light: #D4804E;
  --cream: #F7F2EA;
  --cream-deep: #EFE4D2;
  --ink: #221D18;
  --ink-soft: #6E6459;
  --teal: #2EC4B6;
  --teal-dark: #259A8E;
  --white: #FFFDF9;
  --border: #E4D8C4;
  --surface: #FFFFFF;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(34, 29, 24, 0.06);
  --shadow-md: 0 8px 30px rgba(34, 29, 24, 0.1);
  --shadow-lg: 0 20px 60px rgba(34, 29, 24, 0.15);
  --shadow-xl: 0 30px 80px rgba(34, 29, 24, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-family: var(--font-display); font-weight: 800; }
h2 { font-family: var(--font-display); font-weight: 700; }
h3 { font-family: var(--font-body); }
h2 em, h1 em { font-style: normal; color: var(--terracotta); }

a { color: var(--terracotta); text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

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

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 242, 234, 0.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 20px rgba(34, 29, 24, 0.08);
  padding: 10px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--terracotta);
}

.brand:hover { opacity: 0.85; }

.brand-icon { flex-shrink: 0; }

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

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 14px rgba(193, 96, 46, 0.3);
  transition: all 0.3s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 96, 46, 0.4);
  color: var(--white) !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg,
    #F7F2EA 0%,
    #F5E6D3 25%,
    #EFE4D2 50%,
    #E8D5BF 75%,
    #F0DCC8 100%
  );
  overflow: hidden;
}

/* Background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(193, 96, 46, 0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.2) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193, 96, 46, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatShape 18s ease-in-out infinite 5s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(193, 96, 46, 0.1);
  border: 1px solid rgba(193, 96, 46, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 24px;
  color: var(--ink);
}

.hero p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(193, 96, 46, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(193, 96, 46, 0.45);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--terracotta);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--terracotta);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone Mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup { position: relative; }

.phone-frame {
  width: 280px;
  height: 570px;
  background: var(--ink);
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.phone-frame.large {
  width: 320px;
  height: 650px;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(193, 96, 46, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(228, 216, 196, 0.5);
  z-index: 5;
}

.fc-flight {
  top: 15%;
  right: -40px;
  animation: floatCard 5s ease-in-out infinite;
}

.fc-ai {
  bottom: 20%;
  left: -30px;
  animation: floatCard 6s ease-in-out infinite 1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(193, 96, 46, 0.1);
  font-size: 20px;
}

.fc-text strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
}

.fc-text span {
  font-size: 11px;
  color: var(--ink-soft);
}

.fc-status {
  padding: 4px 10px;
  background: rgba(46, 196, 182, 0.15);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(193, 96, 46, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--terracotta);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ========================================
   SECTION HEADER (shared)
   ======================================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  position: relative;
}

.section-kicker::before,
.section-kicker::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
}
.section-kicker::before { right: calc(100% + 12px); }
.section-kicker::after { left: calc(100% + 12px); }

.section-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
  color: var(--ink);
}

.section-header p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Feature Rows — alternating image + text */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.row-reverse { flex-direction: row-reverse; }

.feature-row-content {
  flex: 1;
  max-width: 420px;
}

.feature-row-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}

.feature-row-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-row-phone {
  flex-shrink: 0;
}

.phone-frame.small {
  width: 240px;
  height: 490px;
}

.feature-row:hover .phone-frame.small {
  box-shadow: 0 30px 80px rgba(193, 96, 46, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.fi-ai { background: rgba(193, 96, 46, 0.12); color: var(--terracotta); }
.fi-itinerary { background: rgba(46, 196, 182, 0.12); color: var(--teal); }
.fi-map { background: rgba(76, 175, 80, 0.12); color: #4CAF50; }
.fi-flight { background: rgba(33, 150, 243, 0.12); color: #2196F3; }
.fi-calendar { background: rgba(156, 39, 176, 0.12); color: #9C27B0; }
.fi-organize { background: rgba(255, 152, 0, 0.12); color: #FF9800; }

/* ========================================
   AMOR AI SECTION
   ======================================== */
.ai-section {
  padding: 100px 0;
  background: linear-gradient(135deg,
    var(--ink) 0%,
    #2C2218 30%,
    #3A2A1E 60%,
    #2C1810 100%
  );
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193, 96, 46, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.ai-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.kicker-light { color: var(--terracotta-light) !important; }
.kicker-light::before,
.kicker-light::after { background: var(--terracotta-light) !important; }

.ai-content {
  flex: 1;
  max-width: 420px;
}

.ai-content h2 {
  color: var(--cream);
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
}

.ai-content p {
  color: rgba(247, 242, 234, 0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ai-features-list {
  list-style: none;
  margin-bottom: 36px;
}

.ai-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(247, 242, 234, 0.85);
  font-size: 15px;
  padding: 8px 0;
}

.ai-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.2);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* AI Phone Demo */
.ai-phone-demo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.ai-phone-demo .phone-frame {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ai-phone-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(193, 96, 46, 0.25) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
    var(--cream) 0%,
    #F3EBE0 50%,
    var(--cream) 100%
  );
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  transition: all 0.4s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(193, 96, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.step-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.step-connector {
  padding: 0 8px;
  flex-shrink: 0;
}

/* ========================================
   APP SHOWCASE
   ======================================== */
.showcase-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
    var(--white) 0%,
    var(--cream) 50%,
    var(--cream-deep) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Horizontal scroll showcase */
.showcase-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px;
  margin: 0 -24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.showcase-scroll::-webkit-scrollbar { display: none; }

.showcase-track {
  display: flex;
  gap: 32px;
  padding: 0 24px;
  width: max-content;
}

.showcase-item {
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.4s ease;
}

.showcase-item:hover { transform: translateY(-8px); }

.phone-frame.showcase-phone-size {
  width: 220px;
  height: 450px;
  box-shadow: 0 20px 50px rgba(34, 29, 24, 0.18);
  transition: box-shadow 0.4s ease;
}

.showcase-item:hover .phone-frame.showcase-phone-size {
  box-shadow: 0 30px 70px rgba(193, 96, 46, 0.25);
}

.showcase-label {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ========================================
   DOWNLOAD CTA
   ======================================== */
.download-section {
  padding: 100px 0;
  background: linear-gradient(135deg,
    #C1602E 0%,
    #A04D22 25%,
    #8B3E1A 50%,
    #6B2F12 75%,
    #2C1810 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.download-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.dl-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.dl-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 128, 78, 0.2) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.download-inner {
  position: relative;
  z-index: 1;
}

.download-section h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  color: #fff;
  margin-bottom: 18px;
}

.download-section p {
  font-size: 18px;
  color: rgba(247, 242, 234, 0.8);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: left;
}

.btn-download:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-download small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
}

.btn-download strong {
  font-size: 16px;
  font-weight: 700;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--terracotta); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--ink-soft);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--terracotta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--ink);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(247, 242, 234, 0.5);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 242, 234, 0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(247, 242, 234, 0.65);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--terracotta-light); }

.footer-bottom {
  border-top: 1px solid rgba(247, 242, 234, 0.08);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(247, 242, 234, 0.35);
  text-align: center;
}

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .feature-row { gap: 48px; }
  .ai-inner { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--cream);
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 17px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-phone { margin-top: 20px; }

  .phone-frame { width: 240px; height: 490px; }

  .fc-flight { right: -20px; top: 10%; }
  .fc-ai { left: -10px; bottom: 25%; }

  /* Feature rows stack on mobile */
  .feature-row {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    text-align: center;
  }

  .feature-row.row-reverse { flex-direction: column; }

  .feature-row-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-row-content p {
    max-width: 480px;
  }

  .ai-inner { flex-direction: column; text-align: center; }

  .ai-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ai-features-list {
    text-align: left;
    display: inline-block;
  }

  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { transform: rotate(90deg); }
  .step-card { max-width: 100%; width: 100%; }

  .phone-frame.showcase-phone-size { width: 180px; height: 370px; }
  .showcase-track { gap: 20px; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }

  .hero-stats { gap: 16px; }
  .stat-number { font-size: 26px; }
  .stat-suffix { font-size: 20px; }

  .floating-card { padding: 10px 14px; }
  .fc-text strong { font-size: 12px; }
  .fc-text span { font-size: 10px; }

  .phone-frame { width: 220px; height: 450px; }
  .phone-frame.small { width: 200px; height: 410px; }

  .section-header { margin-bottom: 48px; }
  .features-section,
  .ai-section,
  .how-section,
  .showcase-section,
  .download-section,
  .faq-section { padding: 70px 0; }

  .feature-row { margin-bottom: 48px; }

  .download-buttons { flex-direction: column; align-items: center; }
  .btn-download { width: 100%; max-width: 280px; justify-content: center; }

  .footer-links { gap: 32px; }

  .phone-frame.showcase-phone-size { width: 160px; height: 328px; }
  .showcase-track { gap: 16px; }
  .showcase-label { font-size: 12px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 30px; }
  .container { padding: 0 16px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-divider { display: none; }
  .phone-frame.showcase-phone-size { width: 140px; height: 286px; }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
