/* ===================================================
   SAKINYAZMA - Sakin Yazma, Kendini Koru
   Warm, organic, emotionally resonant design system
   =================================================== */

/* --- Custom Properties --- */
:root {
  --bg-primary: #FFF5F5;
  --bg-secondary: #FFE4E8;
  --bg-tertiary: #FFF0F0;
  --bg-white: #FFFFFF;
  --bg-dark: #1A0A0A;
  --bg-dark-secondary: #2A1515;

  --text-primary: #2D1B1B;
  --text-secondary: #6B4D4D;
  --text-muted: #9A7B7B;
  --text-on-dark: #FFD6E0;
  --text-white: #FFFFFF;

  --accent-red: #C62828;
  --accent-red-dark: #8B1A1A;
  --accent-red-light: #EF5350;
  --accent-orange: #E8612D;
  --accent-orange-light: #FF8A65;
  --accent-pink: #FFB7C5;
  --accent-pink-light: #FFD6E0;
  --accent-coral: #FF6B6B;

  --border-light: rgba(139, 26, 26, 0.08);
  --border-medium: rgba(139, 26, 26, 0.15);

  --shadow-sm: 0 2px 8px rgba(139, 26, 26, 0.06);
  --shadow-md: 0 4px 24px rgba(139, 26, 26, 0.08);
  --shadow-lg: 0 8px 40px rgba(139, 26, 26, 0.12);
  --shadow-xl: 0 20px 60px rgba(139, 26, 26, 0.16);
  --shadow-glow: 0 0 40px rgba(198, 40, 40, 0.2);

  --font-display: 'Fraunces', serif;
  --font-body: 'Outfit', sans-serif;

  --section-gap: 120px;
  --container-max: 1200px;
  --container-pad: 24px;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 640px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red));
  color: var(--text-white);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(198, 40, 40, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-store {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.btn-store:hover {
  background: #2A1515;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-store svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-store .store-info {
  text-align: left;
  line-height: 1.2;
}

.btn-store .store-label {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
  display: block;
}

.btn-store .store-name {
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(255, 245, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(139, 26, 26, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-mobile-toggle span {
  display: block;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 245, 245, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--accent-pink-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: pulse-dot 2s infinite;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: normal;
  display: block;
  color: var(--accent-red);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-trust-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-rating .stars {
  color: var(--accent-orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border-medium);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid #1A0A0A;
  background: #1A0A0A;
}

.phone-mockup img {
  width: 100%;
  border-radius: 32px;
}

.phone-mockup-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1A0A0A;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.hero-float-heart {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: float-heart 6s ease-in-out infinite;
}

.hero-float-heart:nth-child(1) { top: 10%; right: 5%; animation-delay: 0s; }
.hero-float-heart:nth-child(2) { top: 30%; right: -5%; animation-delay: 2s; font-size: 1rem; }
.hero-float-heart:nth-child(3) { bottom: 20%; right: 10%; animation-delay: 4s; font-size: 2rem; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-pink);
  top: -50px;
  right: -50px;
  opacity: 0.3;
  animation: blob-float 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-orange-light);
  bottom: 50px;
  right: 100px;
  opacity: 0.2;
  animation: blob-float 10s ease-in-out infinite reverse;
}

/* --- Stats Bar --- */
.stats-bar {
  padding: 60px 0;
  position: relative;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stats-divider {
  width: 1px;
  background: var(--border-medium);
  align-self: stretch;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Features Section --- */
.features {
  padding: var(--section-gap) 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 50%, var(--bg-primary) 100%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red-dark), var(--accent-red), var(--accent-orange));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--bg-secondary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Showcase Section --- */
.showcase {
  padding: var(--section-gap) 0;
  overflow: hidden;
}

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

.showcase-grid.reverse {
  direction: rtl;
}

.showcase-grid.reverse > * {
  direction: ltr;
}

.showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-phone {
  width: 280px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #1A0A0A;
  background: #1A0A0A;
  transform: perspective(800px) rotateY(-5deg);
  transition: transform var(--transition-base);
}

.showcase-grid.reverse .showcase-phone {
  transform: perspective(800px) rotateY(5deg);
}

.showcase-phone:hover {
  transform: perspective(800px) rotateY(0deg);
}

.showcase-phone img {
  width: 100%;
  border-radius: 30px;
}

.showcase-text h2 {
  margin-bottom: 20px;
}

.showcase-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.showcase-feature-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.showcase-feature-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-red);
  fill: none;
  stroke-width: 2.5;
}

.showcase-feature-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- How It Works --- */
.how-it-works {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-pink), var(--accent-red), var(--accent-pink), transparent);
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red));
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 280px;
}

/* --- Testimonials --- */
.testimonials {
  padding: var(--section-gap) 0;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.testimonial-phone {
  width: 340px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #1A0A0A;
  background: #1A0A0A;
}

.testimonial-phone img {
  width: 100%;
  border-radius: 34px;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  color: var(--accent-orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author-info {
  font-size: 0.85rem;
}

.testimonial-author-info strong {
  display: block;
  color: var(--text-primary);
}

.testimonial-author-info span {
  color: var(--text-muted);
}

/* --- Who Section --- */
.who-section {
  padding: var(--section-gap) 0;
  background: var(--bg-tertiary);
}

.who-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.who-tag:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-pink);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.who-tag svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-red);
  fill: none;
  stroke-width: 2;
}

/* --- Pro Section --- */
.pro-section {
  padding: var(--section-gap) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.pro-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(198, 40, 40, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.pro-content h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.pro-content p {
  color: var(--text-on-dark);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.pro-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.pro-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-on-dark);
  font-size: 1rem;
}

.pro-feature-item .check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(198, 40, 40, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-feature-item .check-circle svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent-orange-light);
  fill: none;
  stroke-width: 3;
}

.pro-card {
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}

.pro-card-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red));
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.pro-card h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pro-card .pro-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 6px;
}

.pro-card .pro-period {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.pro-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1.05rem;
}

/* --- Download CTA --- */
.download-cta {
  padding: var(--section-gap) 0;
  text-align: center;
}

.download-cta h2 {
  margin-bottom: 16px;
}

.download-cta p {
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

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

.download-cta .fox-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 30px;
  color: var(--text-on-dark);
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

/* --- Legal / Content Pages --- */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-tertiary);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  margin: 0 auto;
  color: var(--text-muted);
}

.page-content {
  padding: 80px 0;
}

.page-content .content-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--text-primary);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  margin-bottom: 16px;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.8;
}

.page-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
}

/* --- Contact Page --- */
.contact-section {
  padding: 80px 0 var(--section-gap);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 12px;
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-red);
  fill: none;
  stroke-width: 1.8;
}

.contact-method h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-method p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: all var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Keyframe Animations --- */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes float-heart {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  75% { transform: translateY(10px) rotate(-5deg); }
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

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

  .hero-subtitle {
    margin: 0 auto 36px;
  }

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

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .showcase-grid.reverse {
    direction: ltr;
  }

  .showcase-text {
    order: 1;
  }

  .showcase-visual {
    order: 2;
  }

  .showcase-features {
    align-items: center;
  }

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

  .pro-features-list {
    align-items: center;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
    --container-pad: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta.desktop-only {
    display: none;
  }

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

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

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

  .steps-grid::before {
    display: none;
  }

  .stats-inner {
    gap: 32px;
  }

  .stats-divider {
    display: none;
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 250px;
  }

  .showcase-phone {
    width: 240px;
    transform: none !important;
  }

  .testimonial-phone {
    width: 280px;
  }

  .hero-buttons .btn-store {
    width: 100%;
    justify-content: center;
  }

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

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

  .pro-card {
    padding: 36px 24px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* --- Noise Overlay --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Disclaimer Banner --- */
.disclaimer {
  padding: 20px 0;
  background: var(--bg-secondary);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
