/* FacturoSync Landing — Premium Dark Glassmorphism Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ========== DESIGN TOKENS ========== */
:root {
  --bg-deep: #050510;
  --bg-primary: #0a0a1a;
  --bg-secondary: #12122a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;
  --accent: #2FC6F6;
  --accent-glow: rgba(47, 198, 246, 0.15);
  --accent-glow-strong: rgba(47, 198, 246, 0.25);
  --accent2: #9DCF00;
  --accent2-glow: rgba(157, 207, 0, 0.12);
  --text: #f0f0f5;
  --text-muted: #a0a0b8;
  --text-dim: #5c5c7a;
  --border: rgba(255, 255, 255, 0.06);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 32px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none
}

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

/* ========== BACKGROUND EFFECTS ========== */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow-strong), transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent2-glow), transparent 70%);
  bottom: 10%;
  right: -10%;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(120, 80, 255, 0.08), transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  25% {
    transform: translate(30px, -40px) scale(1.05)
  }

  50% {
    transform: translate(-20px, 30px) scale(0.95)
  }

  75% {
    transform: translate(40px, 20px) scale(1.02)
  }
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ========== HEADER ========== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(16px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem
}

.logo img {
  width: 32px;
  height: 32px
}

.logo span {
  color: var(--accent)
}

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

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

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

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px
}

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

.lang-switch a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}

.lang-switch a.active {
  background: var(--accent);
  color: #000
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  display: block;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 99;
  background: rgba(5, 5, 16, 0.97);
  backdrop-filter: blur(24px);
  padding: 40px 24px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.active {
  display: flex
}

.mobile-menu .mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  display: block;
}

.mobile-menu .mobile-nav-link:hover {
  color: var(--text)
}

.mobile-menu .lang-switch {
  display: inline-flex;
  margin-top: 24px;
  align-self: flex-start;
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  border-bottom: none;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1ea8d6 100%);
  color: #000;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md)
}

.btn svg {
  width: 20px;
  height: 20px
}

/* ========== HERO ========== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--accent-glow);
  border: 1px solid rgba(47, 198, 246, 0.2);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent)
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 80px;
  line-height: 1.7;
}

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

/* ========== STATS ========== */
.stats {
  padding: 40px 0 80px
}

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

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition);
}

.stat-card:hover {
  background: var(--glass-hover);
  border-color: rgba(47, 198, 246, 0.15);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

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

/* ========== SECTION COMMON ========== */
.section {
  padding: 80px 0
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-glow), var(--accent), var(--accent-glow));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition);
  position: relative;
}

.step-card:hover {
  background: var(--glass-hover);
  transform: translateY(-6px);
  border-color: rgba(47, 198, 246, 0.15);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #1ea8d6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: #000;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px
}

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

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 198, 246, 0.12);
}

.feature-card:hover::before {
  opacity: 0.5
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========== SCREENSHOTS ========== */
.screenshots-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.screenshots-track::-webkit-scrollbar {
  display: none
}

.screenshot-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.screenshot-item:hover {
  border-color: rgba(47, 198, 246, 0.3);
  box-shadow: 0 12px 48px rgba(47, 198, 246, 0.1);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block
}

.screenshots-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.screenshots-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--text-dim);
  cursor: pointer;
  transition: all var(--transition);
}

.screenshots-nav button.active {
  background: var(--accent);
  width: 32px;
  border-radius: 6px
}

/* ========== PRICING ========== */
.pricing {
  padding: 80px 0
}

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

.pricing-toggle span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted)
}

.pricing-toggle span.active {
  color: var(--text)
}

.toggle-switch {
  width: 56px;
  height: 30px;
  border-radius: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  transition: all var(--transition);
}

.toggle-switch.yearly::after {
  transform: translateX(26px)
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(var(--glass-blur));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.pricing-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px
}

.pricing-amount {
  margin-bottom: 32px
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  margin-right: 4px;
}

.pricing-amount .value {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.pricing-save {
  color: var(--accent2);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
  display: none;
}

.pricing-save.visible {
  display: block
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.pricing-features li svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

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

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(47, 198, 246, 0.1)
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg)
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 80px 0
}

.cta-card {
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent2-glow) 100%);
  border: 1px solid rgba(47, 198, 246, 0.15);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow-strong), transparent 60%);
  opacity: 0.3;
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-card .btn {
  position: relative;
  z-index: 1
}

/* ========== FOOTER ========== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
}

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

.footer-brand .logo {
  margin-bottom: 12px
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent)
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition)
}

.footer-badges img:hover {
  opacity: 1
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.8rem
}

.footer-bottom a {
  color: var(--accent)
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(.4, 0, .2, 1)
}

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

.reveal-delay-1 {
  transition-delay: 0.1s
}

.reveal-delay-2 {
  transition-delay: 0.2s
}

.reveal-delay-3 {
  transition-delay: 0.3s
}

.reveal-delay-4 {
  transition-delay: 0.4s
}

.reveal-delay-5 {
  transition-delay: 0.5s
}

.reveal-delay-6 {
  transition-delay: 0.6s
}

/* Hero specific animations */
.hero-badge {
  animation: fadeSlideUp 0.6s ease forwards
}

.hero h1 {
  animation: fadeSlideUp 0.6s ease 0.1s forwards;
  opacity: 0
}

.hero p {
  animation: fadeSlideUp 0.6s ease 0.2s forwards;
  opacity: 0
}

.hero-buttons {
  animation: fadeSlideUp 0.6s ease 0.3s forwards;
  opacity: 0
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Counter animation handled in JS */

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }

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

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero {
    padding: 60px 0 40px
  }

  .hero h1 {
    font-size: 2.2rem
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 64px
  }

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

  .stat-value {
    font-size: 1.8rem
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto
  }

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

  .pricing-card {
    padding: 32px 24px
  }

  .pricing-amount .value {
    font-size: 3rem
  }

  .cta-card {
    padding: 40px 24px
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: center
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center
  }

  .section {
    padding: 60px 0
  }

  .section-header {
    margin-bottom: 40px
  }
}

@media(max-width:480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .stat-card {
    padding: 20px 12px
  }

  .lang-switch {
    gap: 2px
  }
}
/* Yearly savings badge */
.yearly-badge {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #14532d;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}
[data-toggle="yearly"]:not(.active) .yearly-badge {
  opacity: 0.5;
}

/* pricing-save — visible only on yearly */
.pricing-save {
  font-size: 1rem;
  font-weight: 700;
  color: #22c55e;
  text-align: center;
  margin-bottom: 1.25rem;
  min-height: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pricing-save.visible {
  opacity: 1;
}

/* ─── Footer Enhanced ─────────────────────────────── */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
}
.footer-brand p { font-size: 0.875rem; opacity: 0.65; margin: 0.5rem 0 0.75rem; }
.footer-badges { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-badge {
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; background: rgba(255,255,255,0.08); opacity: 0.8;
}
.footer-anpc { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-anpc a { display: inline-block; opacity: 0.8; transition: opacity 0.2s; }
.footer-anpc a:hover { opacity: 1; }
.footer-anpc img { display: block; height: 30px; width: auto; border-radius: 4px; }
.footer-company h4, .footer-links h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; opacity: 0.45; margin-bottom: 0.75rem;
}
.footer-company ul { list-style: none; padding: 0; }
.footer-company ul li { font-size: 0.8rem; opacity: 0.6; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0 0.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; opacity: 0.4; margin: 0.2rem 0; }
.footer-disclaimer { font-size: 0.72rem !important; opacity: 0.3 !important; }

/* ─── Cookie Banner ────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(15,23,42,0.97);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner-inner {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 900px; width: 100%; flex-wrap: wrap;
}
.cookie-banner-inner p {
  flex: 1; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin: 0;
}
.cookie-banner-inner a { color: #60a5fa; text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 0.45rem 1rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600;
  background: #0066A1; color: #fff; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: #0055a1; }
.btn-cookie-reject {
  padding: 0.45rem 1rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600;
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s;
}
.btn-cookie-reject:hover { background: rgba(255,255,255,0.05); }
.btn-cookie-settings {
  padding: 0.45rem 0.75rem; font-size: 0.82rem;
  color: rgba(255,255,255,0.4); text-decoration: underline; cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-banner { padding: 1rem; }
  .cookie-banner-inner { flex-direction: column; gap: 0.75rem; }
  .cookie-actions { width: 100%; justify-content: center; }
}
