/*
Theme Name: Splendy
Theme URI: https://splendy-letismind.com
Author: Leti - Leti's Mind
Author URI: https://splendy-letismind.com
Description: Tema WordPress per Splendy - La prima community italiana per studentesse universitarie. Design femminile, caldo ed empatico con palette rosa su sfondo chiaro.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: splendy
Tags: one-page, custom-background, custom-colors, landing-page
*/

/* ========================================
   CUSTOM FONT
======================================== */
@font-face {
  font-family: 'Helotypo';
  src: url('assets/fonts/Helotypo.ttf') format('truetype'),
       url('assets/fonts/Helotypo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
  --primary: #E8356B;
  --primary-light: #FF87CF;
  --primary-dark: #540D21;
  --secondary-light: #FADADD;
  --bg-white: #FFFFFF;
  --bg-alt: #FADADD;
  --bg-footer: #540D21;
  --bg-card: #FFFFFF;
  --border-light: #f5d5dc;
  --text-primary: #1A1A2E;
  --text-secondary: #4a4a5a;
  --text-muted: #7a7a8e;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #E8356B 0%, #FF87CF 100%);
  --gradient-hero: linear-gradient(135deg, #E8356B 0%, #d63384 40%, #FF87CF 100%);
  --gradient-cta: linear-gradient(135deg, #E8356B 0%, #E8356B 100%);
  --shadow-soft: 0 4px 24px rgba(232, 53, 107, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 36px rgba(232, 53, 107, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Helotypo', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, .section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

/* ========================================
   LAYOUT
======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: rgba(232, 53, 107, 0.08);
  border: 1px solid rgba(232, 53, 107, 0.2);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

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

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

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-fade-left { transform: translateX(-40px); }
.animate-on-scroll.animate-fade-right { transform: translateX(40px); }
.animate-on-scroll.animate-scale { transform: scale(0.9); }

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232, 53, 107, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(84, 13, 33, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-gold {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232, 53, 107, 0.35);
}

.btn-gold:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(84, 13, 33, 0.4);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-gold:hover::after { transform: translateX(100%); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 53, 107, 0.3);
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(232, 53, 107, 0.35); }
  50% { box-shadow: 0 4px 40px rgba(232, 53, 107, 0.6), 0 0 60px rgba(232, 53, 107, 0.2); }
}

.btn-pulse { animation: pulse-glow 2.5s infinite; }

/* ========================================
   HEADER / NAVIGATION
======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 48px;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-logo-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Inline logo (used in headings) */
.inline-logo {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  height: 28px;
  width: auto;
}

/* Hero watermark logo */
.hero-logo-watermark {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 220px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  animation: float-orb 12s ease-in-out infinite;
}

/* Pricing card logo */
.pricing-logo {
  display: block;
  margin: 0 auto 20px;
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.site-header.scrolled .main-nav a { color: var(--text-secondary); }

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s;
}

.main-nav a:hover { color: var(--white); }
.site-header.scrolled .main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 28px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.site-header.scrolled .menu-toggle span { background: var(--text-primary); }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-1 { width: 500px; height: 500px; background: #FF87CF; top: -10%; right: -10%; }
.hero-orb-2 { width: 400px; height: 400px; background: #E8356B; bottom: -5%; left: -10%; animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: #FADADD; top: 40%; left: 50%; opacity: 0.2; animation-delay: -5s; }

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

.hero-particles { position: absolute; inset: 0; overflow: hidden; }

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise 6s linear infinite;
}

@keyframes particle-rise {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

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

.hero-text { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.3); }
  50% { border-color: rgba(255, 255, 255, 0.7); }
}

.hero-title {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #FADADD, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .text-gold {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  font-weight: 400;
}

/* Splendy highlighted box in hero title */
.hero-splendy-box {
  display: inline-block;
  position: relative;
  padding: 4px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  font-weight: 400;
  border: 2px solid transparent;
  background-clip: padding-box;
  animation: splendy-glow 3s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

/* Gradient border via pseudo-element */
.hero-splendy-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E8356B, #FF87CF, #E8356B);
  z-index: -2;
}

/* Inner background fill */
.hero-splendy-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
}

/* Shimmer overlay via box-shadow trick on a pseudo isn't enough,
   so we add shimmer with a gradient animation on an extra layer */
.hero-splendy-box .shimmer {
  display: none; /* handled via CSS below */
}

/* Shimmer effect using background on the box itself */
.hero-title .hero-splendy-box {
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 30%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 70%,
      transparent 100%
    ) no-repeat,
    rgba(255, 255, 255, 0.15);
  background-size: 200% 100%, 100% 100%;
  background-clip: padding-box;
  animation: splendy-shimmer 3s ease-in-out infinite, splendy-glow 3s ease-in-out infinite;
}

@keyframes splendy-shimmer {
  0% { background-position: 200% 0, 0 0; }
  50% { background-position: -200% 0, 0 0; }
  100% { background-position: -200% 0, 0 0; }
}

@keyframes splendy-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(232, 53, 107, 0.3); }
  50% { box-shadow: 0 0 32px rgba(255, 135, 207, 0.5), 0 0 48px rgba(232, 53, 107, 0.2); }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero .btn-gold {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: var(--white);
  color: var(--primary-dark);
}

/* Store badges */
.hero-store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.store-badge svg { flex-shrink: 0; }

.hero-trial-badge {
  display: inline-block;
  margin-top: 12px;
  background: #FADADD;
  color: #5e173f;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(232, 53, 107, 0.45), 0 0 32px rgba(255, 135, 207, 0.25);
  animation: gentle-pulse 2.5s ease-in-out infinite;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(232, 53, 107, 0.45), 0 0 32px rgba(255, 135, 207, 0.25); }
  50% { box-shadow: 0 0 22px rgba(232, 53, 107, 0.65), 0 0 44px rgba(255, 135, 207, 0.4); }
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone wrapper — holds phone + side buttons, carries the 3D transform */
.hero-phone-wrapper {
  position: relative;
  display: inline-block;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
  animation: phone-float 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.hero-phone-wrapper:hover {
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

@keyframes phone-float {
  0%, 100% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-15px); }
}


/* Phone body */
.hero-phone {
  width: 300px; height: 600px;
  background: var(--white);
  border-radius: 36px;
  border: 6px solid #e8e8ec;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 0 40px rgba(232, 53, 107, 0.12),
    12px 16px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.5s ease;
}

.hero-phone-wrapper:hover .hero-phone {
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(232, 53, 107, 0.1),
    6px 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Shine / reflection on top-left corner */
.hero-phone-shine {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 10;
}

/* Dynamic Island */
.hero-phone-dynamic-island {
  width: 120px;
  height: 34px;
  background: #1a1a1a;
  border-radius: 20px;
  margin: 12px auto 0;
  position: relative;
  z-index: 3;
}

/* Mock App Screen */
.mock-screen {
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  background: #f5f3f7;
  height: 100%;
}

/* Top Bar */
.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mock-topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-topbar-left img {
  height: 18px;
  width: 18px;
  object-fit: contain;
}

.mock-topbar-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.mock-topbar-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8356B, #FF87CF);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Card */
.mock-hero-card {
  margin: 10px 12px;
  padding: 18px 16px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8356B 0%, #FF87CF 100%);
  text-align: center;
  position: relative;
}

.mock-hero-logo {
  width: 24px;
  height: 24px;
  margin: 0 auto 8px;
  display: block;
  filter: brightness(0) invert(1);
}

.mock-hero-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.mock-hero-heading {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.mock-hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.55rem;
  font-weight: 400;
  margin: 0 0 10px;
}

.mock-hero-btn {
  display: inline-block;
  background: #540D21;
  color: #fff;
  font-size: 0.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Section Label */
.mock-section-label {
  padding: 10px 14px 4px;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E8356B;
}

/* Cards Row */
.mock-cards-row {
  display: flex;
  gap: 8px;
  padding: 6px 12px 10px;
  overflow: hidden;
}

.mock-card {
  flex: 0 0 58%;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 80px;
}

.mock-card-white {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mock-card-pink {
  background: #FFF0F5;
  border: 1px solid rgba(232, 53, 107, 0.08);
}

.mock-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.mock-card-emoji { font-size: 0.9rem; }

.mock-badge-live {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2ecc71;
  letter-spacing: 0.04em;
}

.mock-green-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: mock-pulse 2s ease-in-out infinite;
}

@keyframes mock-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.mock-badge-next {
  font-size: 0.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #E8356B;
  letter-spacing: 0.04em;
}

.mock-card-label {
  font-size: 0.42rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #E8356B;
}

.mock-card-heading {
  font-size: 0.62rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
}

.mock-card-date {
  font-size: 0.48rem;
  color: #888;
  font-weight: 500;
}

/* Quote Card */
.mock-quote-card {
  margin: 10px 12px 0;
  padding: 14px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.mock-quote-mark {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #E8356B;
}

.mock-quote-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0;
}

.mock-quote-author {
  font-size: 0.65rem;
  font-weight: 600;
  color: #E8356B;
  margin: 6px 0 0;
}

/* Bottom Nav */
.mock-bottom-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 10px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mock-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 0.42rem;
  font-weight: 600;
  color: #aaa;
}

.mock-nav-item span:first-child { font-size: 0.85rem; }

.mock-nav-active {
  color: #E8356B;
}

.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 53, 107, 0.12);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-badge 5s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

.hero-float-badge.badge-top-right { top: 10%; right: -10%; animation-delay: -1s; }
.hero-float-badge.badge-bottom-left { bottom: 15%; left: -5%; animation-delay: -3s; }

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.float-badge-text { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.float-badge-text span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--text-muted); }

/* ========================================
   SOCIAL PROOF / COUNTER SECTION
======================================== */
.social-proof {
  padding: 60px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item { padding: 24px 24px 24px; }

.counter-number {
  font-family: 'Helotypo', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #5e173f;
  -webkit-text-fill-color: #5e173f;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  line-height: 1.3;
  padding-top: 8px;
  margin-bottom: 8px;
}

.counter-label { font-family: 'Helotypo', sans-serif; font-size: 0.95rem; color: #5e173f; font-weight: bold; }

/* ========================================
   ABOUT / CHI SONO SECTION
======================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image {
  width: 100%; max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: var(--bg-alt);
  border: none;
  overflow: hidden;
  position: relative;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-decoration {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.12;
  bottom: -40px; right: -40px;
  z-index: -1;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-highlight:hover {
  background: var(--secondary-light);
  border-color: rgba(232, 53, 107, 0.25);
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

.about-highlight-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-highlight-text { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }

/* ========================================
   FEATURES / COSA INCLUDE
======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 53, 107, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 53, 107, 0.2);
  box-shadow: var(--shadow-card-hover);
}

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

.feature-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: var(--transition);
}

.feature-card:hover .feature-icon { transform: scale(1.08); }

.feature-card h3 { margin-bottom: 10px; font-size: 1.25rem; position: relative; z-index: 1; }
.feature-card > p { font-size: 0.95rem; position: relative; z-index: 1; margin-bottom: 16px; }

.feature-list {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.feature-list li {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-list li::before {
  content: '\2713';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(232, 53, 107, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  position: absolute;
  left: 0;
  top: 2px;
  margin-top: 2px;
}

/* ========================================
   HOW IT WORKS / COME FUNZIONA
======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0.3;
}

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

.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #5e173f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helotypo', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
  position: relative; z-index: 2;
  box-shadow: 0 4px 20px rgba(232, 53, 107, 0.3);
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(232, 53, 107, 0.4);
}

.step-card h4 { margin-bottom: 8px; font-family: 'Helotypo', sans-serif; font-weight: bold; color: #5e173f; }
.step-card p { font-size: 0.9rem; }

/* ========================================
   CALENDAR PLACEHOLDER
======================================== */
.calendar-image {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.calendar-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ========================================
   UN ANNO DI CRESCITA
======================================== */
#calendario {
  padding-bottom: 20px;
}

#video-leti {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.growth-year-section {
  padding: 24px 0 80px;
  margin-top: 0;
}

.growth-year-header {
  text-align: center;
  margin-bottom: 24px;
  padding: 60px 0 0;
}

.growth-year-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.growth-year-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.growth-year-title {
  font-family: 'Helotypo', sans-serif;
  font-size: 3.5rem;
  color: var(--text-primary);
  margin: 0;
}

.growth-year-subtitle {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.growth-year-badge {
  display: inline-block;
  background: #540D21;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 12px 36px;
  border-radius: 50px;
}

.growth-year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.growth-year-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-year-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 53, 107, 0.12);
}

.growth-year-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}

.growth-year-number {
  font-family: 'Helotypo', sans-serif;
  font-size: 3rem;
  color: #E8356B;
  line-height: 1;
  margin-bottom: 6px;
}

.growth-year-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #540D21;
  margin-bottom: 2px;
}

.growth-year-sub {
  font-size: 0.8rem;
  color: #888;
}

@media (max-width: 768px) {
  .growth-year-section {
    padding: 32px 0 40px;
  }

  .growth-year-header {
    padding: 16px 0 0;
    margin-bottom: 16px;
  }

  .growth-year-title-row {
    gap: 10px;
    margin-bottom: 8px;
  }

  .growth-year-title {
    font-size: 2.4rem;
  }

  .growth-year-subtitle {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .growth-year-badge {
    padding: 8px 24px;
    font-size: 0.9rem;
  }

  .growth-year-logo {
    width: 36px;
    height: 36px;
  }

  .growth-year-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .growth-year-card {
    padding: 16px 12px;
  }

  .growth-year-emoji {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }

  .growth-year-number {
    font-size: 2.2rem;
    margin-bottom: 4px;
  }

  .growth-year-label {
    font-size: 0.85rem;
  }
}

/* ========================================
   PRICING / ABBONAMENTO
======================================== */
#prezzi { padding-top: 40px; }
#prezzi .section-header { margin-bottom: 20px; }
#prezzi .section-header h2 { margin-bottom: 8px; }

.pricing-single {
  max-width: 520px;
  margin: 0 auto;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-toggle-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-toggle-label.active { color: var(--primary); }

.pricing-toggle-switch {
  width: 56px; height: 30px;
  border-radius: 15px;
  background: var(--secondary-light);
  border: 2px solid var(--border-light);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.pricing-toggle-switch.yearly { background: var(--primary); border-color: var(--primary); }

.pricing-toggle-knob {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: 2px; left: 2px;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pricing-toggle-switch.yearly .pricing-toggle-knob {
  left: calc(100% - 24px);
  background: var(--white);
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.pricing-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
  0%, 100% { box-shadow: 0 4px 16px rgba(232, 53, 107, 0.25); }
  50% { box-shadow: 0 4px 24px rgba(232, 53, 107, 0.5); }
}

.pricing-card h3 { margin-bottom: 8px; font-size: 1.6rem; }
.pricing-card .pricing-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }

.pricing-price { margin-bottom: 32px; }
.pricing-currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; color: var(--primary); }

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
}

.pricing-period { font-size: 0.9rem; color: var(--text-muted); }

.pricing-note {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '\2713';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(232, 53, 107, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-cta-hint {
  font-size: 0.85rem;
  color: #5e173f;
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

/* ========================================
   VIDEO PLACEHOLDER
======================================== */
.video-placeholder {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder-inner {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(84, 13, 33, 0.25);
}

.video-placeholder-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 53, 107, 0.3), rgba(84, 13, 33, 0.6));
}

.video-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative; z-index: 2;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(232, 53, 107, 0.4);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(232, 53, 107, 0.6);
}

.video-play-btn svg { margin-left: 4px; }

/* ========================================
   TESTIMONIALS / TESTIMONIANZE
======================================== */
.testimonials-section { background: var(--bg-white); }

.testimonials-carousel { position: relative; overflow: hidden; padding: 20px 0; }

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 19px);
  max-width: 420px;
  min-height: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  border-color: rgba(232, 53, 107, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }

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

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

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial-info p { font-size: 0.8rem; color: var(--text-muted); }

.carousel-controls { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }

.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }

.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ========================================
   FAQ SECTION
======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover { border-color: rgba(232, 53, 107, 0.2); }

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(232, 53, 107, 0.1);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

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

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(232, 53, 107, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

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

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========================================
   CTA FINAL SECTION
======================================== */
.cta-section { text-align: center; position: relative; overflow: hidden; }

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 53, 107, 0.05) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 2; }
.cta-content h2 { margin-bottom: 20px; }
.cta-content p { max-width: 600px; margin: 0 auto 40px; font-size: 1.15rem; }

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

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.site-footer h4,
.site-footer .site-logo,
.site-footer .float-badge-text { color: #f8f5ff; }

.site-footer p,
.site-footer .footer-col ul li a { color: rgba(255, 255, 255, 0.5); }

.site-footer .footer-col ul li a:hover { color: var(--primary-light); }

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

.footer-brand .site-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 { font-size: 1rem; margin-bottom: 20px; color: #f8f5ff; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }
.footer-bottom-links a:hover { color: var(--primary-light); }
.footer-legal-links a:hover { text-decoration: underline; }

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(232, 53, 107, 0.35);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(232, 53, 107, 0.5); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-store-badges { justify-content: center; }
  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .hero-phone {
    width: 80%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1/2;
  }

  .hero-float-badge { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .about-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about-image {
    margin: 16px auto;
    width: 220px;
    max-width: 220px;
    height: 220px;
    aspect-ratio: auto;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #FADADD, 0 0 30px rgba(232, 53, 107, 0.25);
  }

  .about-photo {
    object-position: top center;
    border-radius: 50%;
  }
  .about-highlights { max-width: 500px; margin: 32px auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: calc(50% - 14px); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; overflow: hidden; max-width: 100%; }

  /* Prevent translateX animations from causing horizontal overflow */
  .animate-on-scroll.animate-fade-left,
  .animate-on-scroll.animate-fade-right {
    transform: translateY(40px);
  }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-light);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  }

  .main-nav.open { right: 0; }
  .main-nav a { font-size: 1.2rem; color: var(--text-primary) !important; }
  .main-nav a:hover { color: var(--primary) !important; }
  .menu-toggle { display: flex; z-index: 1001; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .social-proof { padding: 16px 0; }
  .social-proof-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .counter-item { padding: 8px 4px; }
  .counter-number { font-size: 1.4rem; }
  .counter-label { font-size: 0.65rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .testimonials-section.section { padding: 40px 0; }

  .testimonial-card {
    min-width: 100%;
    height: auto;
    padding: 20px;
    overflow: visible;
  }

  .testimonial-text {
    font-size: 0.95rem;
    overflow: visible;
    text-overflow: unset;
    -webkit-line-clamp: unset;
    display: block;
  }
  /* FIX 1 — Center the phone */
  .hero-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
  }

  /* FIX 2 — Bottom spacing */
  .hero-visual {
    margin-bottom: 48px;
  }


  .hero-stats { flex-direction: column; gap: 20px; }
  .calendar-placeholder-inner { min-height: 300px; }
  .pricing-card { padding: 36px 24px; overflow: visible; }

  .pricing-badge {
    position: static;
    transform: none;
    display: inline-block;
    border-radius: 12px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 14px 28px; font-size: 0.95rem; width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; }
  .hero-store-badges { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .pricing-amount { font-size: 3.5rem; }
}
