/* ═══════════════════════════════════════════════
   Todo Planner — Structured-Inspired Landing Page
   Warm coral tones · Glassmorphism · Editorial layout
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════ Design Tokens ═══════ */
:root {
  --coral: #f4887b;
  --coral-light: #ffa7a0;
  --coral-deep: #e8685b;
  --peach: #ffd6c9;
  --cream: #fff5f0;
  --steel: #2d3e50;
  --steel-light: #4a6274;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #4a4a5a;
  --text-muted: #8a8a9a;

  --bg-page: #f9f9fb;
  --bg-warm: var(--coral-light);
  --bg-card: var(--white);

  --shadow-float: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 4px 14px -6px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-phone: 0 40px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-full: 100px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --duration: 400ms;
  --nav-height: 76px;
}

/* ═══════ Reset ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--bg-warm);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }

.container { width: min(calc(100% - 2rem), 1200px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

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

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float-bubble-1 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(-12px, -18px) rotate(2deg); }
}

@keyframes float-bubble-2 {
  0%, 100% { transform: translate(0, 0) rotate(1deg); }
  50% { transform: translate(14px, -12px) rotate(-1deg); }
}

@keyframes float-bubble-3 {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50% { transform: translate(-8px, 14px) rotate(-2deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scribble-draw {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes text-rotate {
  0%, 16% { transform: translateY(0); }
  20%, 36% { transform: translateY(-100%); }
  40%, 56% { transform: translateY(-200%); }
  60%, 76% { transform: translateY(-300%); }
  80%, 96% { transform: translateY(-400%); }
  100% { transform: translateY(-500%); }
}

/* ═══════ Glassmorphism Navbar ═══════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 16px;
}

.nav-pill {
  position: relative;
  width: 100%;
  max-width: 1440px;
  background: rgba(30, 30, 30, 0.18);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.07),
    0 4px 14px -6px rgba(0, 0, 0, 0.13),
    0 18px 42px -20px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.language-control select {
  padding: 6px 28px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.85rem;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: all 0.2s;
}

.language-control select:hover {
  background: rgba(255, 255, 255, 0.18);
}

.language-control select option {
  background: #2d3e50;
  color: white;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background: var(--steel);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  transition: background 0.2s;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-button:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* ═══════ Hero Section ═══════ */
.hero {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 15vw, 180px);
  background: var(--bg-warm);
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero h1 {
  text-align: center;
  text-transform: lowercase;
  margin-bottom: 0;
}

.hero-title-light {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-title-bold {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: relative;
}

/* Rotating text effect */
.hero-title-rotator {
  display: block;
  height: 1.15em;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero-title-rotator-inner {
  display: block;
  animation: text-rotate 12s ease-in-out infinite;
}

.hero-title-rotator-inner span {
  display: block;
  height: 1.15em;
  line-height: 1.15;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 540px;
  margin: 24px auto 0;
  opacity: 0.92;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--steel);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease);
}

.hero-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Hero Phone Mockup */
.hero-phone-wrap {
  position: relative;
  max-width: 320px;
  margin: clamp(40px, 8vw, 80px) auto 0;
  z-index: 2;
}

.hero-phone-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-phone);
  animation: float-img 8s ease-in-out infinite;
}

.hero-phone-frame img {
  width: 100%;
  display: block;
  border-radius: 40px;
}

/* Floating bubbles around phone */
.floating-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-float);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  z-index: 3;
  white-space: nowrap;
}

.floating-bubble .icon {
  font-size: 1.1rem;
}

.bubble-1 {
  top: 15%;
  left: -100px;
  animation: float-bubble-1 6s ease-in-out infinite;
}

.bubble-2 {
  top: 40%;
  right: -110px;
  animation: float-bubble-2 7s ease-in-out infinite;
}

.bubble-3 {
  bottom: 25%;
  left: -90px;
  animation: float-bubble-3 8s ease-in-out infinite;
}

/* Hero bottom spacer for visual breathing room */
.hero-bottom-space {
  height: clamp(60px, 10vw, 120px);
  background: var(--bg-warm);
}

/* ═══════ Marquee Section ═══════ */
.marquee-section {
  padding: 48px 0;
  background: var(--bg-page);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.marquee-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 48px;
  color: var(--steel);
  text-transform: lowercase;
}

.marquee-section h2 .thin {
  font-weight: 300;
  display: block;
}

.marquee-wrap {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 16vw, 200px);
  margin: 0 clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

.marquee-item .metric-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.metric-val {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--steel);
}

.metric-lbl {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--text-muted);
  font-weight: 500;
}

.marquee-cta {
  text-align: center;
  margin-top: 40px;
}

.convinced-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  background: var(--steel);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.3s var(--ease);
}

.convinced-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ═══════ Editorial / Feature Sections ═══════ */
.features-section {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--bg-page);
}

.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(60px, 10vw, 120px);
}

.editorial-block:last-child {
  margin-bottom: 0;
}

.editorial-block.reverse .ed-text {
  order: 2;
}

.editorial-block.reverse .ed-media {
  order: 1;
}

.ed-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text-dark);
  text-transform: lowercase;
}

.ed-text h2 .thin {
  font-weight: 300;
  color: var(--text-muted);
}

.ed-text p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.7;
}

.ed-text .feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(244, 136, 123, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral-deep);
  margin-bottom: 12px;
}

.ed-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.ed-media-bg {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: transform 0.6s var(--ease);
}

.ed-media:hover .ed-media-bg {
  transform: rotate(0deg) scale(1.04);
}

.bg-coral { background: rgba(244, 136, 123, 0.1); transform: rotate(-3deg); }
.bg-blue { background: rgba(79, 172, 254, 0.1); transform: rotate(2deg); }
.bg-green { background: rgba(67, 233, 123, 0.1); transform: rotate(-2deg); }
.bg-orange { background: rgba(245, 166, 35, 0.1); transform: rotate(3deg); }
.bg-purple { background: rgba(139, 92, 246, 0.1); transform: rotate(-3deg); }

.ed-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  border-radius: 36px;
  box-shadow: var(--shadow-phone);
  transition: transform 0.5s var(--ease);
}

.ed-media:hover .ed-phone {
  transform: translateY(-8px);
}

/* ═══════ Statement Section ═══════ */
.statement-section {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 20px;
  background: var(--bg-warm);
}

.massive-statement {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

.statement-light {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.statement-bold {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
}

.statement-cta {
  margin-top: 40px;
}

/* ═══════ Workflow / How It Works ═══════ */
.workflow-section {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--bg-page);
}

.workflow-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.workflow-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  position: sticky;
  top: 120px;
  text-transform: lowercase;
  color: var(--text-dark);
}

.workflow-header h2 .thin {
  font-weight: 300;
  color: var(--text-muted);
}

.steps {
  padding: 0;
}

.steps li {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
}

.steps h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.steps p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ═══════ Screenshots Gallery ═══════ */
.gallery-section {
  padding: clamp(60px, 10vw, 100px) 0;
  background: var(--bg-warm);
  overflow: hidden;
}

.gallery-section .section-head {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  text-transform: lowercase;
}

.gallery-section h2 .thin {
  font-weight: 300;
}

.gallery-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-top: 12px;
}

.gallery {
  display: flex;
  gap: 24px;
  padding: 20px 40px 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 240px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-phone);
}

.gallery-item-label {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════ Reviews Section ═══════ */
.reviews-section {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--bg-page);
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  text-transform: lowercase;
}

.reviews-header h2 .thin {
  font-weight: 300;
  color: var(--text-muted);
}

.reviews-header .rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.rating-display .stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-display .rating-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.rating-display .rating-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.review-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.review-stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-light), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
}

.review-author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-author-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ═══════ FAQ Section ═══════ */
.faq-section {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--bg-page);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.faq-header {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-transform: lowercase;
  color: var(--text-dark);
}

.faq-header h2 .thin {
  font-weight: 300;
  color: var(--text-muted);
}

.faq-list {
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.2rem;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--text-dark);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ═══════ CTA Section ═══════ */
.cta-section {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 20px;
  background: var(--bg-warm);
}

.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  text-transform: lowercase;
  margin-bottom: 16px;
}

.cta-section h2 .thin {
  font-weight: 300;
}

.cta-section .cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

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

.app-store-badge {
  height: 54px;
  width: auto;
  transition: transform 0.3s var(--ease);
}

.app-store-badge:hover {
  transform: scale(1.06);
}

/* ═══════ Footer ═══════ */
.site-footer {
  padding: 60px 0 32px;
  background: var(--bg-page);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .brand {
  color: var(--text-dark);
}

.footer-brand .brand img {
  filter: none;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ═══════ Scroll Reveal ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }

/* ═══════ Responsive ═══════ */
@media (max-width: 1024px) {
  .site-nav {
    padding: 0;
  }
  
  .nav-pill { 
    overflow: visible; 
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  .nav-links { display: none; }
  .menu-button { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 20px;
    gap: 12px;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    z-index: 200;
  }

  .nav-links.open .nav-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .editorial-block {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .editorial-block.reverse .ed-text { order: 1; }
  .editorial-block.reverse .ed-media { order: 2; }

  .workflow-content,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .workflow-header h2,
  .faq-header {
    position: static;
    text-align: center;
    margin-bottom: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-phone-wrap {
    max-width: 260px;
  }

  .gallery-item img {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .floating-bubble {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

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

  .hero-cta,
  .hero-secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .steps li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ed-phone {
    width: 220px;
  }
}
