@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

/* ============================================
   WeatherPets — Premium Character
   ============================================ */

:root {
  --indigo: #1800ED;
  --indigo-light: #4433FF;
  --indigo-soft: rgba(24, 0, 237, 0.06);
  --text: #2a2a2a;
  --text-secondary: #7a7a7a;
  --text-tertiary: #a0a0a0;
  --bg: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-dark: #0a0a0f;
  --border: #e0e0e0;
  --border-light: #ebebeb;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
  --spring: cubic-bezier(.175, .885, .32, 1.1);
  --ease: cubic-bezier(.25, .1, .25, 1);
  --max-width: 1100px;
  --nav-height: 56px;
  --frame: 1.2vw;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--indigo);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover { opacity: 0.75; }

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

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.035em;
}

p { color: var(--text-secondary); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Gallery Frame (removed) --- */
.frame { display: none; }

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--indigo);
  z-index: 1001;
  width: 0%;
  transition: width 0.05s linear;
}

/* --- Spring Animation --- */
@keyframes springIn {
  0% { opacity: 0; transform: translateY(32px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.spring-in {
  opacity: 0;
  animation: springIn 0.8s var(--spring) forwards;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-in > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger-in.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.24s; }

.stagger-in.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Gradient Text --- */
.text-gradient {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: var(--nav-height);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.05);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.nav-logo:hover { opacity: 1; }

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 450;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); opacity: 1; }

.nav-cta-badge {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s var(--spring);
}

.nav-cta-badge:hover {
  opacity: 1 !important;
  transform: scale(1.05);
}

.nav-badge-img {
  height: 32px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Marquee --- */
.marquee {
  background: #000000;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  text-transform: uppercase;
}

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

/* --- iPhone Mockup --- */
.iphone-mockup {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}

.iphone-mockup .iphone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  background: #000;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    var(--shadow-xl);
}

.iphone-mockup .iphone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.iphone-mockup .iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iphone-mockup .iphone-screen .placeholder-label {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.iphone-mockup .dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}

.iphone-mockup .iphone-frame::before {
  content: '';
  position: absolute;
  right: -2px;
  top: 140px;
  width: 3px;
  height: 60px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
}

.iphone-mockup .iphone-frame::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 120px;
  width: 3px;
  height: 36px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 50px 0 #2a2a2a, 0 90px 0 #2a2a2a;
}

.iphone-mockup.large { width: 320px; }
.iphone-mockup.hero-device { width: 300px; }

/* --- Hero --- */
.hero {
  padding: 80px 0 80px;
  overflow: visible;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 480px;
}

.hero-headline {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.0625rem;
  margin-bottom: 32px;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 380px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-note {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-store-badge {
  height: 48px;
  transition: transform 0.3s var(--spring);
}

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

/* --- Hero Visual (phone + floating input cards) --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.hero-phone {
  display: flex;
  justify-content: center;
}

.hero-phone .iphone-mockup {
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.18));
  rotate: 3deg;
}

.hero-input-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px;
  width: 180px;
  z-index: 10;
  transition: all 0.4s var(--spring);
  box-shadow: var(--shadow-lg);
}

.hero-input-card:hover {
  scale: 1.06;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.photo-card {
  top: 8%;
  left: -24px;
  rotate: -3deg;
}

.personality-card {
  bottom: 12%;
  left: -36px;
  rotate: 2deg;
}

.input-card-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.input-card-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.input-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.personality-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.trait {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 980px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* Floating weather deco */
.hero-decoration {
  display: none;
}

.deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.06;
  animation: decoFloat 8s ease-in-out infinite;
}

.deco-cloud { top: 8%; left: 6%; font-size: 3rem; animation-delay: 0s; }
.deco-sun { top: 5%; right: 8%; font-size: 2.5rem; animation-delay: -2s; }
.deco-paw { bottom: 45%; left: 4%; font-size: 2rem; animation-delay: -4s; }
.deco-drop { top: 20%; right: 5%; font-size: 1.75rem; animation-delay: -1s; }
.deco-star { bottom: 50%; right: 12%; font-size: 2rem; animation-delay: -3s; }

@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

/* --- Statement Section --- */
.statement {
  padding: 100px 0;
  text-align: center;
}

.statement-text {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Features Minimal --- */
.features-minimal {
  padding: 80px 0 100px;
}

.features-minimal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-min-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--spring);
}

.feature-min-card:nth-child(1) { rotate: -1.2deg; }
.feature-min-card:nth-child(2) { rotate: 0.7deg; }
.feature-min-card:nth-child(3) { rotate: -0.5deg; }
.feature-min-card:nth-child(4) { rotate: 1deg; }

.feature-min-card:hover {
  rotate: 0deg;
  scale: 1.05;
  box-shadow: var(--shadow-lg);
}

.feature-min-icon {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.feature-min-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.feature-min-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* --- Phone Pair --- */
.phone-pair-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.phone-pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.phone-pair-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.phone-pair-copy p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 360px;
}

.phone-pair {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.phone-pair > *:nth-child(1) { rotate: -3deg; }
.phone-pair > *:nth-child(2) { rotate: 3deg; margin-top: 40px; }

.phone-pair .iphone-mockup {
  width: 220px;
}

.phone-pair-label {
  text-align: center;
  margin-top: 16px;
}

.phone-pair-label p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 140px 0;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(24, 0, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Physics container */
.cta-physics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.physics-item {
  position: absolute;
  border-radius: 14px;
  pointer-events: none;
  will-change: transform;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: inherit;
  white-space: nowrap;
}

.physics-item.widget-small {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.physics-item.widget-small .widget-temp {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.physics-item.widget-small .widget-cond {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.physics-item.widget-medium {
  width: 156px;
  height: 72px;
  border-radius: 18px;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.physics-item.widget-medium .widget-temp {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.physics-item.widget-medium .widget-cond {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.3);
}

.physics-item.notification {
  border-radius: 20px;
  padding: 10px 16px;
  gap: 10px;
}

.physics-item .notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(24, 0, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.physics-item .notif-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.physics-item .notif-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.physics-item .notif-body {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 36px;
}

.cta-banner .hero-actions {
  margin-bottom: 28px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cta-trust span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Sparkle particles */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(106, 92, 255, 0.5);
  animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 25%; right: 15%; animation-delay: -0.8s; width: 2px; height: 2px; }
.sparkle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: -1.5s; }
.sparkle:nth-child(4) { top: 40%; right: 25%; animation-delay: -2.2s; width: 2px; height: 2px; }
.sparkle:nth-child(5) { bottom: 20%; right: 10%; animation-delay: -0.4s; }
.sparkle:nth-child(6) { top: 60%; left: 8%; animation-delay: -1.8s; width: 2px; height: 2px; }

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

/* --- Footer --- */
.footer {
  padding: 48px 0 28px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  padding: 3px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a:hover { color: rgba(255, 255, 255, 0.5); }

/* --- Legal Pages --- */
.legal-page {
  padding: 60px 0 100px;
}

.legal-page .container { max-width: 720px; }

.legal-page .last-updated {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  font-weight: 500;
}

.legal-page h1 { font-size: 2.5rem; margin-bottom: 8px; }

.legal-page .legal-intro {
  font-size: 1rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.7;
}

.legal-page h2 { font-size: 1.375rem; margin-top: 40px; margin-bottom: 14px; }
.legal-page h3 { font-size: 1.0625rem; margin-top: 24px; margin-bottom: 10px; }

.legal-page p { margin-bottom: 14px; font-size: 0.9375rem; line-height: 1.7; }

.legal-page ul, .legal-page ol { margin-bottom: 14px; padding-left: 20px; }
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }

.legal-page li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.legal-page strong { color: var(--text); font-weight: 600; }
.legal-page a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }

/* --- FAQ Page --- */
.faq-page { padding: 60px 0 100px; }
.faq-page .container { max-width: 720px; }

.faq-page h1 { font-size: 2.5rem; text-align: center; margin-bottom: 8px; }

.faq-page .faq-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--indigo);
}

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

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-answer-inner a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }

.faq-contact {
  text-align: center;
  margin-top: 48px;
  padding: 36px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

.faq-contact h3 { margin-bottom: 6px; }
.faq-contact p { margin-bottom: 16px; font-size: 0.9375rem; }

.faq-contact a.btn {
  display: inline-flex;
  padding: 10px 22px;
  background: var(--text);
  color: var(--white);
  border-radius: 980px;
  font-weight: 500;
  font-size: 0.8125rem;
  transition: all 0.3s var(--spring);
}

.faq-contact a.btn:hover {
  background: var(--indigo);
  opacity: 1;
  transform: scale(1.04);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --frame: 0.8vw; }

  .hero-headline { font-size: 3rem; }
  .hero-input-card { width: 160px; padding: 14px; }
  .iphone-mockup.hero-device { width: 260px; }
  .iphone-mockup { width: 240px; }
  .iphone-mockup.large { width: 280px; }
  .iphone-mockup.hero-device { width: 260px; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 48px;
    --frame: 0px;
  }

  .frame { display: none; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
  }

  .nav-links.open { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 48px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy {
    max-width: 100%;
    text-align: center;
  }
  .hero-sub { max-width: 100%; }
  .hero-actions { align-items: center; }
  .hero-headline { font-size: 2.25rem; }
  .hero-visual { padding: 20px 30px; }
  .hero-input-card { width: 150px; padding: 14px; }
  .photo-card { top: 4%; left: -8px; }
  .personality-card { bottom: 8%; left: auto; right: -8px; rotate: -2deg; }
  .hero-phone .iphone-mockup { width: 240px; }
  .hero-decoration { display: none; }

  /* Statement */
  .statement { padding: 64px 0; }

  /* Features */
  .features-minimal { padding: 48px 0 64px; }
  .features-minimal-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-min-card { padding: 24px 20px; }

  /* Phone pair */
  .phone-pair-section { padding: 64px 0; }
  .phone-pair-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .phone-pair-copy p { max-width: 100%; }
  .phone-pair { gap: 16px; }
  .phone-pair .iphone-mockup { width: 180px; }
  .phone-pair > *:nth-child(1) { rotate: -2deg; }
  .phone-pair > *:nth-child(2) { rotate: 2deg; margin-top: 20px; }

  /* CTA */
  .cta-banner { padding: 80px 0; }
  .cta-trust { gap: 8px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .legal-page h1, .faq-page h1 { font-size: 2rem; }
  .legal-page { padding: 40px 0 60px; }
  .faq-page { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.875rem; }
  .container { padding: 0 20px; }
  .hero-input-card { width: 130px; padding: 12px; }
  .input-card-photo-placeholder { font-size: 1.75rem; }
  .trait { font-size: 0.5625rem; padding: 3px 7px; }
  .features-minimal-grid { grid-template-columns: 1fr; }

  .phone-pair {
    gap: 12px;
  }

  .phone-pair .iphone-mockup { width: 150px; }
  .phone-pair > *:nth-child(2) { margin-top: 16px; }

  .iphone-mockup { width: 200px; }
  .iphone-mockup .iphone-frame { border-radius: 36px; padding: 10px; }
  .iphone-mockup .iphone-screen { border-radius: 28px; }
  .iphone-mockup .dynamic-island { width: 80px; height: 22px; top: 14px; }
}
