/* TipMate — Single shared stylesheet for all pages */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  /* Core palette */
  --bg:            #0f0f11;
  --bg2:           #1a1a1d;
  --bg3:           #232328;
  --accent:        #49CDFE;
  --accent-light:  #7BE0FF;
  --accent-dim:    rgba(73,205,254,0.1);
  --accent-border: rgba(73,205,254,0.2);
  --accent-glow:   rgba(73,205,254,0.25);
  --gradient-accent: linear-gradient(135deg, #49CDFE 0%, #7BE0FF 50%, #B8F0FF 100%);
  --text:          #ffffff;
  --muted:         #ababaf;
  --border:        rgba(255,255,255,0.07);
  --red-dim:       rgba(255,100,100,0.08);
  --red-border:    rgba(255,100,100,0.2);
  --gray:          #646167;
  --gold:          #F59E0B;
  --gold-light:    #FBBF24;
  --gold-dim:      rgba(245,158,11,0.1);
  --gold-glow:     rgba(245,158,11,0.25);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #FDE68A 100%);
  --green:         #4ADE80;
  --bg-phone:      #38383d;
  --card-bg-glass: rgba(35,35,40,0.7);

  /* Aliases so existing main-page CSS works unchanged */
  --darker-bg:      var(--bg);
  --card-bg:        var(--bg3);
  --dark-bg:        var(--bg-phone);
  --cyan:           var(--accent);
  --cyan-light:     var(--accent-light);
  --cyan-subtle:    var(--accent-dim);
  --cyan-glow:      var(--accent-glow);
  --gradient-cyan:  var(--gradient-accent);
  --text-primary:   var(--text);
  --text-secondary: var(--muted);
}

/* ─── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Heading font override — keep Outfit for headings, nav, and buttons */
.hero-title, .section-title, .advantage-title, .solution-title, .step-title,
.testimonial-info h4, .faq-question, .profile-name,
h1, h2, h3, h4, h5, h6,
.logo-text, .nav-links a, .nav-cta, .mobile-nav-links a, .mobile-cta,
.btn-primary, .btn-secondary, .btn {
  font-family: 'Outfit', sans-serif;
}

/* ─── PAGE LOADER (main page only) ──────────────────────── */
.page-loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; display: none !important; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo { width: 60px; height: 60px; margin-bottom: 1rem; animation: pulse 1s ease-in-out infinite; }
.loader-bar { width: 200px; height: 3px; background: var(--bg3); border-radius: 3px; overflow: hidden; }
.loader-progress { height: 100%; background: var(--gradient-accent); animation: loading 1s ease-in-out; }
@keyframes loading { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } }

/* Noise texture */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03; pointer-events: none; z-index: 1000;
}

/* Particles */
.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; opacity: 0.3; animation: float-particle linear infinite; }
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.3; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ─── NAV — Main page (bare <nav> element) ───────────────── */
nav:not(.nav) {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(15,15,17,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(73,205,254,0.1);
  transition: all 0.3s ease;
}
nav:not(.nav).scrolled { padding: 1rem 4rem; background: rgba(15,15,17,0.95); }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; }
.logo-text { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.logo-text .tip { color: var(--text); }
.logo-text .mate { color: var(--accent); }
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; position: relative; }
.nav-links a:hover { color: var(--accent); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gradient-accent); color: var(--bg); padding: 0.75rem 1.75rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; box-shadow: 0 4px 20px var(--accent-glow); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.lang-switcher { display: flex; gap: 0.5rem; margin-right: 1.5rem; }
.lang-btn { background: none; border: 1px solid var(--gray); color: var(--muted); padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.8rem; cursor: pointer; transition: all 0.3s ease; }
.lang-btn.active, .lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 0.5rem; z-index: 101; }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px; height: 100vh; background: var(--bg3); backdrop-filter: blur(20px); z-index: 100; transition: right 0.4s cubic-bezier(0.4,0,0.2,1); padding: 6rem 2rem 2rem; box-shadow: -10px 0 40px rgba(0,0,0,0.5); }
.mobile-menu .lang-switcher { display: flex !important; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.mobile-menu.open { right: 0; }
.mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 99; opacity: 0; transition: opacity 0.4s ease; }
.mobile-menu-overlay.open { opacity: 1; }
.mobile-nav-links { list-style: none; margin-bottom: 2rem; }
.mobile-nav-links li { margin-bottom: 1.5rem; }
.mobile-nav-links a { color: var(--text); text-decoration: none; font-size: 1.5rem; font-weight: 600; transition: color 0.3s ease; }
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-cta { display: block; background: var(--gradient-accent); color: var(--bg); padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; text-align: center; }

/* ─── NAV — pSEO pages (.nav class) ─────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,17,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 60px; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-logo-text { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.nav-logo-text span { color: var(--accent); }
.nav-back { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-back:hover { color: var(--accent); }

/* ─── BUTTONS ────────────────────────────────────────────── */
/* Main page primary button */
.btn-primary {
  background: var(--gradient-accent); color: var(--bg);
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: all 0.3s ease; box-shadow: 0 4px 20px var(--accent-glow);
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer; position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--accent-glow); }
.btn-secondary { background: transparent; color: var(--text); padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; border: 1px solid var(--gray); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* pSEO button */
.btn {
  display: inline-block;
  background: var(--gradient-accent); color: var(--bg);
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 0.875rem 2.25rem; border-radius: 50px;
  text-decoration: none; box-shadow: 0 4px 24px var(--accent-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }
.btn-lg { font-size: 1.05rem; padding: 1rem 2.75rem; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ─── MAIN PAGE — HERO ───────────────────────────────────── */
.hero-main { min-height: 100vh; display: flex; align-items: center; padding: 8rem 4rem 4rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-dim) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 100% 50%, rgba(73,205,254,0.05) 0%, transparent 50%); z-index: -1; }
.hero-gradient { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(73,205,254,0.03) 60deg, transparent 120deg, rgba(73,205,254,0.05) 180deg, transparent 240deg, rgba(73,205,254,0.03) 300deg, transparent 360deg); animation: rotate-gradient 20s linear infinite; z-index: -2; }
@keyframes rotate-gradient { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(73,205,254,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(73,205,254,0.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%); z-index: -1; }
.hero-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-text { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease-out 0.5s forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--card-bg-glass); backdrop-filter: blur(10px); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; border: 1px solid var(--accent-border); }
.hero-badge span { color: var(--accent); font-weight: 600; }
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -2px; }
.hero-title .highlight { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.25rem; color: var(--muted); margin-bottom: 2rem; max-width: 500px; line-height: 1.7; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; }
.hero-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--muted); }
.hero-feature .check { color: var(--accent); font-weight: bold; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease-out 0.7s forwards; }

/* ─── PHONE MOCKUP ───────────────────────────────────────── */
.phone-mockup { position: relative; width: 300px; height: 620px; background: #2d2d32; border-radius: 45px; padding: 8px; box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.1); transform: perspective(1000px) rotateY(-5deg) rotateX(5deg); transition: transform 0.5s ease; }
.phone-mockup:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.phone-screen { width: 100%; height: 100%; background: var(--bg-phone); border-radius: 40px; overflow: hidden; position: relative; }
.phone-slides { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); height: 100%; }
.phone-slide { min-width: 100%; height: 100%; }
.phone-content { padding: 2.5rem 1.25rem 1.25rem; height: 100%; display: flex; flex-direction: column; }
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.phone-avatar { width: 44px; height: 44px; background: var(--gradient-accent); border-radius: 50%; border: 2px solid var(--accent); }
.phone-user-id { font-family: 'Space Mono', monospace; font-size: 0.9rem; color: var(--text); }
.phone-chat-icon { width: 40px; height: 40px; background: var(--gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.phone-balance-card { background: var(--gradient-accent); border-radius: 20px; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; color: var(--bg); min-height: 140px; display: flex; flex-direction: column; justify-content: space-between; }
.balance-top { display: flex; justify-content: space-between; align-items: flex-start; }
.balance-amount { font-size: 2.5rem; font-weight: 700; font-family: 'Space Mono', monospace; letter-spacing: -2px; }
.balance-info-icon { width: 24px; height: 24px; border: 2px solid rgba(0,0,0,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(0,0,0,0.5); }
.balance-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.qr-icon { opacity: 0.7; }
.withdraw-btn { background: white; color: var(--bg); padding: 0.5rem 1.25rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; border: none; }
.phone-restaurant { margin-bottom: 1rem; }
.restaurant-label { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.restaurant-card { background: var(--gray); border-radius: 16px; padding: 1rem; display: flex; align-items: center; justify-content: center; text-align: center; }
.restaurant-logo { font-family: 'Space Mono', monospace; font-size: 1.1rem; font-weight: 700; color: #A08060; letter-spacing: 2px; display: flex; align-items: center; gap: 0.5rem; }
.restaurant-subtitle { font-size: 0.55rem; color: #A08060; letter-spacing: 1px; margin-top: 2px; }
.phone-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; flex: 1; }
.stat-card { background: var(--bg3); border-radius: 16px; padding: 0.75rem; border: 1px solid; display: flex; flex-direction: column; }
.stat-card.reviews { border-color: var(--accent); }
.stat-card.tips { border-color: var(--green); }
.stat-header { font-size: 0.85rem; color: var(--text); margin-bottom: 0.5rem; text-align: center; }
.stat-card.reviews .stat-content { display: flex; align-items: center; justify-content: center; flex: 1; }
.rating-circle { position: relative; width: 70px; height: 70px; }
.rating-value { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.3rem; font-weight: 700; color: var(--text); }
.tip-list { display: flex; flex-direction: column; gap: 0.35rem; }
.tip-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; }
.tip-icon { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.45rem; color: white; }
.tip-date { color: var(--muted); }
.tip-amount { color: var(--green); font-weight: 600; margin-left: auto; }
.phone-indicators { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.phone-indicator { width: 8px; height: 8px; border-radius: 50%; background: var(--gray); cursor: pointer; transition: all 0.3s ease; }
.phone-indicator.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* Profile screen */
.profile-screen { background: var(--bg-phone); height: 100%; padding: 2.5rem 1.25rem; display: flex; flex-direction: column; align-items: center; }
.profile-back { align-self: flex-start; width: 36px; height: 36px; background: var(--bg3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.profile-avatar { width: 80px; height: 80px; background: var(--gradient-accent); border-radius: 50%; margin-bottom: 1rem; }
.profile-name { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; }
.profile-phone { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.profile-menu { width: 100%; }
.profile-menu-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--bg3); border-radius: 12px; margin-bottom: 0.75rem; }
.profile-menu-icon { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.profile-menu-text { flex: 1; }
.profile-menu-text h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.1rem; }
.profile-menu-text p { font-size: 0.75rem; color: var(--muted); }

/* Reviews screen */
.reviews-screen { background: var(--bg-phone); height: 100%; padding: 2.5rem 1.25rem; }
.reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.reviews-title { font-size: 1.25rem; font-weight: 600; }
.reviews-rating-badge { display: flex; align-items: center; gap: 0.5rem; background: var(--bg3); padding: 0.5rem 1rem; border-radius: 20px; }
.reviews-list { display: flex; flex-direction: column; gap: 0.75rem; }
.review-item { background: var(--bg3); border-radius: 12px; padding: 1rem; border: 1px solid var(--accent-border); }
.review-stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 0.5rem; }
.review-text { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.review-meta { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--muted); }
.review-amount { color: var(--green); font-weight: 600; }

.floating-card { position: absolute; background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 16px; padding: 1rem 1.25rem; box-shadow: 0 20px 40px rgba(0,0,0,0.3); animation: float 3s ease-in-out infinite; border: 1px solid var(--accent-border); }
.floating-card-1 { top: 10%; right: -50px; animation-delay: 0s; }
.floating-card-2 { bottom: 25%; left: -60px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-amount { font-family: 'Space Mono', monospace; font-size: 1.25rem; font-weight: 700; color: var(--green); }
.floating-label { font-size: 0.75rem; color: var(--muted); }
.floating-card-2 .floating-amount { color: var(--accent); }

/* ─── STATS SECTION ──────────────────────────────────────── */
.stats-section { padding: 5rem 4rem; background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); position: relative; overflow: hidden; }
.stats-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 70%); opacity: 0.5; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 2rem; background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid rgba(73,205,254,0.1); transition: all 0.3s ease; }
.stat-item:hover { transform: translateY(-5px); border-color: var(--accent-border); }
.stat-number { font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.stat-label { color: var(--muted); font-size: 0.95rem; }

/* ─── TRUST SECTION ──────────────────────────────────────── */
.trust-section { padding: 4rem; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.trust-title { font-size: 0.9rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; color: var(--muted); transition: all 0.3s ease; }
.trust-badge:hover { color: var(--text); }
.trust-badge svg { width: 40px; height: 40px; }
.trust-badge span { font-size: 0.9rem; font-weight: 500; }

/* ─── SECTION HEADERS (main page) ───────────────────────── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.section-tag { font-family: 'Space Mono', monospace; font-size: 0.85rem; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -1px; }
.section-subtitle { color: var(--muted); font-size: 1.1rem; }

/* ─── ADVANTAGES ─────────────────────────────────────────── */
.advantages { padding: 8rem 4rem; background: var(--bg2); position: relative; }
.advantages-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.advantage-card { text-align: center; padding: 2rem 1.5rem; background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 24px; border: 1px solid var(--border); transition: all 0.4s ease; }
.advantage-card:hover { transform: translateY(-10px); border-color: var(--accent-border); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.advantage-icon { width: 80px; height: 80px; background: var(--gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 10px 40px var(--accent-glow); transition: transform 0.3s ease; }
.advantage-card:hover .advantage-icon { transform: scale(1.1) rotate(5deg); }
.advantage-icon svg { width: 36px; height: 36px; }
.advantage-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.advantage-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ─── SOLUTIONS ──────────────────────────────────────────── */
.solutions { padding: 8rem 4rem; background: var(--bg); position: relative; }
.parallax-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; z-index: 0; }
.parallax-shape { position: absolute; border-radius: 50%; background: var(--accent-dim); filter: blur(80px); }
.parallax-shape-1 { width: 400px; height: 400px; top: 10%; left: -10%; }
.parallax-shape-2 { width: 300px; height: 300px; bottom: 10%; right: -5%; }
.solutions-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 1; }
.solution-card { background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 24px; padding: 2.5rem; transition: all 0.4s ease; border: 1px solid var(--border); position: relative; overflow: hidden; }
.solution-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); transform: scaleX(0); transition: transform 0.4s ease; }
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover { border-color: var(--accent-border); transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.solution-icon { width: 70px; height: 70px; background: var(--accent-dim); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.3s ease; }
.solution-card:hover .solution-icon { background: var(--gradient-accent); }
.solution-card:hover .solution-icon svg { stroke: var(--bg); }
.solution-icon svg { width: 32px; height: 32px; }
.solution-title { font-size: 1.35rem; font-weight: 600; margin-bottom: 1rem; }
.solution-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.solution-steps { margin-top: 1rem; padding-left: 0; list-style: none; }
.solution-steps li { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.solution-steps .step-num { width: 24px; height: 24px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; color: var(--bg); flex-shrink: 0; }

/* ─── TESTIMONIALS CAROUSEL (main page) ─────────────────── */
.testimonials { padding: 8rem 4rem; background: var(--bg); position: relative; overflow: hidden; }
.testimonials-carousel { max-width: 1200px; margin: 0 auto; position: relative; }
.testimonials-track { display: flex; gap: 2rem; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card { min-width: calc(33.333% - 1.33rem); background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 24px; padding: 2rem; border: 1px solid var(--border); transition: all 0.3s ease; }
.testimonial-card:hover { border-color: var(--accent-border); transform: translateY(-5px); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testimonial-avatar { width: 56px; height: 56px; background: var(--gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--bg); font-size: 1.25rem; }
.testimonial-info h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.testimonial-info p { font-size: 0.85rem; color: var(--muted); }
.testimonial-stars { color: #FBBF24; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--muted); font-size: 1rem; line-height: 1.7; font-style: italic; }
.testimonial-text::before { content: '"'; }
.testimonial-text::after { content: '"'; }
.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.carousel-btn { width: 50px; height: 50px; border-radius: 50%; background: var(--bg3); border: 1px solid var(--gray); color: var(--text); cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray); cursor: pointer; transition: all 0.3s ease; }
.carousel-dot.active { background: var(--accent); width: 30px; border-radius: 5px; }

/* ─── PERSONAL ACCOUNT ───────────────────────────────────── */
.personal-account { padding: 8rem 4rem; background: var(--bg2); }
.account-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.account-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.account-feature { background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 20px; padding: 1.5rem; border-left: 3px solid var(--accent); transition: all 0.3s ease; }
.account-feature:hover { transform: translateX(5px); background: var(--bg3); }
.account-feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem; }
.account-feature h4 svg { width: 20px; height: 20px; flex-shrink: 0; }
.account-feature p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.account-visual { display: flex; justify-content: center; }
.phone-mockup-small { width: 260px; height: 540px; transform: perspective(1000px) rotateY(5deg) rotateX(5deg); }
.phone-mockup-small .phone-content { padding: 2rem 1rem 1rem; }
.phone-mockup-small .phone-avatar { width: 36px; height: 36px; }
.phone-mockup-small .phone-user-id { font-size: 0.8rem; }
.phone-mockup-small .phone-chat-icon { width: 32px; height: 32px; }
.phone-mockup-small .phone-balance-card { min-height: 100px; padding: 1rem; }
.phone-mockup-small .balance-amount { font-size: 1.8rem; }
.phone-mockup-small .withdraw-btn { padding: 0.4rem 1rem; font-size: 0.75rem; }
.phone-mockup-small .restaurant-label { font-size: 0.85rem; }
.phone-mockup-small .restaurant-card { padding: 0.75rem; }
.phone-mockup-small .restaurant-logo { font-size: 0.9rem; }
.phone-mockup-small .stat-card { padding: 0.5rem; }
.phone-mockup-small .stat-header { font-size: 0.75rem; margin-bottom: 0.25rem; }
.phone-mockup-small .rating-circle { width: 50px; height: 50px; }
.phone-mockup-small .rating-value { font-size: 1rem; }
.phone-mockup-small .tip-item { font-size: 0.55rem; }
.phone-mockup-small .tip-icon { width: 10px; height: 10px; }

/* ─── HOW IT WORKS (main page) ───────────────────────────── */
.how-it-works { padding: 8rem 4rem; background: var(--bg); }
.steps-container { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; position: relative; }
.steps-container::before { content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent)); opacity: 0.3; }
.step { text-align: center; position: relative; }
.step-number { width: 80px; height: 80px; background: var(--gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 1.75rem; font-weight: 700; color: var(--bg); margin: 0 auto 1.5rem; position: relative; z-index: 2; box-shadow: 0 10px 40px var(--accent-glow); transition: transform 0.3s ease; }
.step:hover .step-number { transform: scale(1.1); }
.step-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.step-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ─── FAQ (main page) ────────────────────────────────────── */
.faq-section { padding: 8rem 4rem; background: var(--bg2); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 16px; margin-bottom: 1rem; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--accent-border); }
.faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 1.05rem; transition: color 0.3s ease; }
.faq-question:hover { color: var(--accent); }
.faq-icon { width: 24px; height: 24px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-content { padding: 0 1.5rem 1.5rem; color: var(--muted); line-height: 1.7; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact { padding: 8rem 4rem; background: var(--bg); position: relative; overflow: hidden; }
.contact-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%); pointer-events: none; }
.contact-content { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.contact-form { background: var(--card-bg-glass); backdrop-filter: blur(10px); border-radius: 24px; padding: 3rem; border: 1px solid var(--accent-border); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--muted); }
.form-group input, .form-group textarea { width: 100%; padding: 1rem 1.25rem; background: var(--bg); border: 1px solid var(--gray); border-radius: 12px; color: var(--text); font-family: 'Outfit', sans-serif; font-size: 1rem; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-disclaimer { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.form-disclaimer a { color: var(--accent); text-decoration: none; }
.submit-btn { width: 100%; background: var(--gradient-accent); color: var(--bg); padding: 1rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1.1rem; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 20px var(--accent-glow); position: relative; overflow: hidden; }
.submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
.submit-btn:hover::before { left: 100%; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-glow); }

/* ─── pSEO PAGE LAYOUTS ──────────────────────────────────── */
/* Hero */
.hero { background: var(--bg); padding: 5rem 2rem 4.5rem; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.breadcrumb { display: inline-block; font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid var(--accent-border); border-radius: 100px; padding: 0.3rem 0.85rem; margin-bottom: 1.75rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 600px; line-height: 1.75; margin-bottom: 2rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.25rem; }
.pill { font-size: 0.82rem; font-weight: 500; color: var(--muted); border: 1px solid var(--border); border-radius: 100px; padding: 0.35rem 0.9rem; display: flex; align-items: center; gap: 0.4rem; }
.pill .check { color: var(--accent); font-weight: 700; }

/* Sections */
.section { padding: 5rem 2rem; }
.section--alt { background: var(--bg2); }
.container { max-width: 900px; margin: 0 auto; }
.section-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 0.75rem; }
.section-lead { color: var(--muted); font-size: 1rem; max-width: 580px; margin-bottom: 3rem; line-height: 1.7; }

/* Before / After */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 620px) { .before-after { grid-template-columns: 1fr; } }
.ba-card { border-radius: 16px; padding: 2rem; }
.ba-card--before { background: var(--red-dim); border: 1px solid var(--red-border); }
.ba-card--after { background: var(--accent-dim); border: 1px solid var(--accent-border); }
.ba-card h3 { font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.ba-card--before h3 { color: rgba(255,100,100,0.85); }
.ba-card--after h3 { color: var(--accent); }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.ba-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
.ba-icon { flex-shrink: 0; font-family: 'Space Mono', monospace; font-size: 0.78rem; margin-top: 0.1rem; font-weight: 700; }
.ba-card--before .ba-icon { color: #ff6b6b; }
.ba-card--after  .ba-icon { color: var(--accent); }

/* Steps (pSEO) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 740px) { .steps { grid-template-columns: 1fr; gap: 1.25rem; } }
.step-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.75rem; }
.step-num { display: block; font-family: 'Space Mono', monospace; font-size: 1.75rem; font-weight: 700; color: var(--accent); opacity: 0.45; margin-bottom: 1rem; line-height: 1; }
.step-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* Venue cards (pSEO) */
.venue-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 740px) { .venue-cards { grid-template-columns: 1fr; } }
.venue-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: border-color 0.2s; }
.venue-card:hover { border-color: var(--accent-border); }
.venue-card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-dim); border: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.venue-card-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.venue-card h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.5rem; }
.venue-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* Testimonial (pSEO simple) */
.testimonial-wrap { text-align: center; }
.testimonial { max-width: 580px; margin: 3rem auto 0; background: var(--bg3); border: 1px solid var(--accent-border); border-radius: 20px; padding: 2.5rem; }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.testimonial blockquote { font-size: 1.1rem; font-style: italic; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; }
.testimonial-author { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--muted); }

/* FAQ (pSEO) */
.faq-list { margin-top: 2.5rem; max-width: 720px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-list .faq-item { border-bottom: 1px solid var(--border); background: none; border-radius: 0; margin-bottom: 0; }
.faq-list .faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: var(--bg3); border: none; text-align: left; padding: 1.4rem 1.75rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: 'Outfit', sans-serif; font-size: 0.98rem; font-weight: 600; color: var(--text); transition: background 0.2s; }
.faq-q:hover { background: rgba(35,35,40,0.9); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-indicator { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-dim); border: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 0.9rem; color: var(--accent); transition: transform 0.25s; line-height: 1; }
.faq-q[aria-expanded="true"] .faq-indicator { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.75rem 1.4rem; background: var(--bg3); font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.faq-a.open { display: block; }

/* CTA Section (pSEO) */
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2.25rem; }

/* Before/after grid (main page) */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .ba-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer, footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
}
.footer-brand .nav-logo, .footer-brand .logo { margin-bottom: 0.5rem; display: inline-flex; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 280px; line-height: 1.7; margin-top: 0.75rem; }
.footer-col h4 { font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--muted); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 38px; height: 38px; background: var(--bg3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; transition: color 0.2s, background 0.2s; }
.social-links a:hover { color: var(--accent); background: var(--accent-dim); }

/* ─── GOLD ACCENT FOR MONEY-RELATED ELEMENTS ────────────── */
.tip-amount { color: var(--gold) !important; }
.floating-amount { color: var(--gold) !important; }

/* ─── STICKY FLOATING CTA ───────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-accent);
  color: var(--bg);
  padding: 1rem 1.75rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 32px var(--accent-glow);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
@media (max-width: 768px) {
  .floating-cta { bottom: 1rem; right: 1rem; padding: 0.85rem 1.5rem; font-size: 0.85rem; }
}

/* ─── WILL-CHANGE PERFORMANCE HINTS ─────────────────────── */
.phone-mockup { will-change: transform; }
.floating-card { will-change: transform; }
.hero-gradient { will-change: transform; }

/* ─── SECTION TRANSITION DIVIDER ─────────────────────────── */
.advantages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}

/* ─── FOCUS VISIBLE FOR KEYBOARD NAVIGATION ──────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-cta:focus-visible, .btn-primary:focus-visible, .btn:focus-visible, .floating-cta:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* ─── PREFERS REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero-text { opacity: 1; transform: none; animation: none; }
  .hero-visual { opacity: 1; transform: none; animation: none; }
  .phone-mockup { transform: none; }
  .floating-card { animation: none; }
  .particles { display: none; }
  .hero-gradient { animation: none; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .advantages-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 1rem); }
  .footer-content { gap: 2rem; }
}
@media (max-width: 1024px) {
  nav:not(.nav) { padding: 1rem 2rem; }
  .nav-links, .lang-switcher, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-menu { display: block; }
  .hero-main { padding: 8rem 2rem 4rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-features { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-cta-row { flex-direction: column; align-items: center !important; }
  .hero-cta-row .path-card { max-width: 340px; width: 100%; }
  .hero-cta-row .hero-login-link { text-align: center; }
  .solutions-grid { grid-template-columns: 1fr; max-width: 500px; }
  .account-content { grid-template-columns: 1fr; }
  .account-visual { order: -1; }
  .steps-container { grid-template-columns: 1fr; gap: 2rem; }
  .steps-container::before { display: none; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 100%; }
}
@media (max-width: 768px) {
  .phone-mockup { width: 260px; height: 540px; transform: none; }
  .floating-card { display: none; }
  .advantages-grid, .stats-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .account-features { grid-template-columns: 1fr; }
  .trust-badges { gap: 2rem; }
  .advantages, .solutions, .testimonials, .personal-account, .how-it-works, .faq-section, .contact { padding: 7rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-content { grid-template-columns: 1fr; }
}
