/* ============================================
   ZENICO.CSS – Design System
   Farben: Teal #2E9A9A · Gold #C9A84C · Dark #1A1F2E
   Fonts: Syne (headings) · Outfit (body)
   ============================================ */

:root {
  --z-teal:        #2E9A9A;
  --z-teal-dark:   #1F7070;
  --z-teal-light:  #E6F5F5;
  --z-gold:        #C9A84C;
  --z-gold-light:  #FBF6E8;
  --z-dark:        #1A1F2E;
  --z-gray:        #64748B;
  --z-light:       #F7FAFA;
  --z-white:       #FFFFFF;
  --bs-primary:    #2E9A9A;
  --bs-primary-rgb:46,154,154;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--z-dark);
  background: #fff;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

/* ── LANGUAGE BAR ── */
.language-bar {
  background: var(--z-dark);
  padding: 0.35rem 0;
  font-size: 0.75rem;
}
.language-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  transition: color 0.2s;
}
.language-link.active, .language-link:hover { color: var(--z-gold); }
.language-link.active { background: rgba(201,168,76,0.1); }
.language-divider { color: rgba(255,255,255,0.15); margin: 0 0.1rem; }

/* ── NAVBAR ── */
#mainNavbar {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,154,154,0.08);
  padding: 0.85rem 0;
  transition: box-shadow 0.3s;
}
#mainNavbar.scrolled {
  box-shadow: 0 4px 24px rgba(46,154,154,0.08);
}
.navbar-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--z-dark) !important;
  text-decoration: none;
}
.navbar-brand .logo-dot  { color: var(--z-gold); }
.navbar-brand .logo-ext  { color: var(--z-teal); }
.logo-text { color: var(--z-dark); }
.nav-link {
  font-family: 'Syne', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  color: var(--z-gray) !important;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--z-teal) !important; }

/* ── BUTTONS ── */
.btn-primary, .btn.btn-primary {
  background-color: var(--z-teal) !important;
  border-color: var(--z-teal) !important;
  color: #fff !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.5rem;
  border-radius: 7px;
  letter-spacing: 0.02em;
  transition: all 0.22s;
}
.btn-primary:hover, .btn.btn-primary:hover {
  background-color: var(--z-teal-dark) !important;
  border-color: var(--z-teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(46,154,154,0.3);
}
.btn-outline-primary {
  border-color: var(--z-teal) !important;
  color: var(--z-teal) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.5rem;
  border-radius: 7px;
  transition: all 0.22s;
}
.btn-outline-primary:hover {
  background-color: var(--z-teal) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: var(--z-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,154,154,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,154,154,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,154,154,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(46,154,154,0.12);
  border: 1px solid rgba(46,154,154,0.25);
  color: var(--z-teal);
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease both;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--z-teal);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero h1 .accent      { color: var(--z-teal); }
.hero h1 .accent-gold { color: var(--z-gold); }
.hero-subline {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.btn-hero-primary {
  background: var(--z-teal); color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 8px; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.25s; letter-spacing: 0.02em;
}
.btn-hero-primary:hover {
  background: var(--z-teal-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,154,154,0.4);
}
.btn-hero-secondary {
  background: transparent; color: rgba(255,255,255,0.7);
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.25s;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.4); color: #fff;
  background: rgba(255,255,255,0.05);
}
.hero-slogan {
  margin-top: 3rem;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--z-gold); display: flex; align-items: center; gap: 1rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-slogan::before, .hero-slogan::after {
  content: ''; height: 1px; width: 48px;
  background: var(--z-gold); opacity: 0.4;
}

/* ── HERO APP CARD ── */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(46,154,154,0.2);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(10px);
  animation: fadeInRight 0.8s ease 0.3s both;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(46,154,154,0.1);
}
.card-topbar {
  background: rgba(46,154,154,0.15);
  border-bottom: 1px solid rgba(46,154,154,0.15);
  padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.dot-btn { width: 9px; height: 9px; border-radius: 50%; }
.db-r { background: #FF5F57; }
.db-y { background: #FEBC2E; }
.db-g { background: var(--z-teal); }
.card-title-bar {
  margin-left: 0.5rem;
  font-family: 'Syne', sans-serif; font-size: 0.78rem;
  font-weight: 600; color: rgba(255,255,255,0.5);
}
.card-body-inner { padding: 1.25rem; }
.board-col-label {
  font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.board-col-label .count {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4);
  font-size: 0.65rem; padding: 0.1rem 0.4rem; border-radius: 3px;
}
.task-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.75rem; margin-bottom: 0.5rem; transition: all 0.2s;
}
.task-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(46,154,154,0.3);
}
.task-card.active {
  border-color: rgba(46,154,154,0.4);
  background: rgba(46,154,154,0.08);
}
.task-card-title {
  font-size: 0.8rem; color: rgba(255,255,255,0.85);
  font-weight: 500; margin-bottom: 0.5rem; line-height: 1.3;
}
.task-meta { display: flex; align-items: center; gap: 0.4rem; }
.task-tag {
  font-family: 'Syne', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 0.15rem 0.45rem; border-radius: 3px;
}
.tag-teal  { background: rgba(46,154,154,0.2);  color: var(--z-teal); }
.tag-gold  { background: rgba(201,168,76,0.2);  color: var(--z-gold); }
.tag-white { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.avatar-stack { display: flex; margin-left: auto; }
.avatar {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid rgba(26,31,46,0.8); margin-left: -6px;
  font-size: 0.55rem; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff;
}
.av1 { background: var(--z-teal); }
.av2 { background: var(--z-gold); }
.av3 { background: #8B7FD4; }

/* ── STATS BAND ── */
.stats-band { background: var(--z-teal); padding: 2.5rem 0; }
.stat-item  { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.2rem; color: #fff; line-height: 1; margin-bottom: 0.3rem;
}
.stat-number span { color: var(--z-gold); }
.stat-label  { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ── FEATURES ── */
.section-features { padding: 7rem 0; background: #fff; }
.section-eyebrow {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--z-teal); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--z-gray); line-height: 1.7; max-width: 500px;
}
.feature-item {
  padding: 2rem; border-radius: 12px;
  border: 1px solid transparent; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.feature-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,154,154,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.feature-item:hover {
  border-color: rgba(46,154,154,0.15);
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(46,154,154,0.08);
}
.feature-item:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.fi-teal { background: var(--z-teal-light); color: var(--z-teal); }
.fi-gold { background: var(--z-gold-light); color: var(--z-gold); }
.fi-dark { background: rgba(26,31,46,0.06); color: var(--z-dark); }
.feature-item h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.feature-item p  { font-size: 0.88rem; color: var(--z-gray); line-height: 1.65; margin: 0; position: relative; z-index: 1; }
.feature-highlight {
  background: var(--z-dark); border-radius: 16px; padding: 3rem; color: #fff;
  position: relative; overflow: hidden; height: 100%;
}
.feature-highlight::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,154,154,0.15) 0%, transparent 70%);
}
.feature-highlight h3  { color: #fff; font-size: 1.6rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
.feature-highlight p   { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }
.feature-highlight .accent-line {
  width: 40px; height: 3px; background: var(--z-teal);
  border-radius: 2px; margin-bottom: 1.25rem;
}
.highlight-tag {
  display: inline-block; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 4px; margin-right: 0.3rem; margin-top: 0.3rem;
}
.ht-teal { background: var(--z-teal-light); color: var(--z-teal-dark); }
.ht-gold { background: rgba(201,168,76,0.15); color: var(--z-gold); }

/* ── PRICING ── */
.section-pricing {
  padding: 7rem 0; background: var(--z-light); position: relative;
}
.section-pricing::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,154,154,0.2), transparent);
}
.price-card {
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(46,154,154,0.1);
  padding: 2.5rem; height: 100%; transition: all 0.3s ease; position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(46,154,154,0.1); }
.price-card.featured {
  background: var(--z-dark); border-color: var(--z-teal);
  box-shadow: 0 20px 60px rgba(46,154,154,0.2);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--z-teal); color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 1.1rem; border-radius: 2rem; white-space: nowrap;
}
.price-tier {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--z-gray); margin-bottom: 1.25rem;
}
.price-card.featured .price-tier { color: rgba(255,255,255,0.5); }
.price-amount {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 3rem; letter-spacing: -0.04em;
  color: var(--z-dark); line-height: 1; margin-bottom: 0.2rem;
}
.price-card.featured .price-amount { color: #fff; }
.price-amount sup  { font-size: 1.2rem; vertical-align: super; }
.price-amount .unit { font-size: 1rem; font-weight: 500; color: var(--z-gray); }
.price-card.featured .price-amount .unit { color: rgba(255,255,255,0.4); }
.price-note { font-size: 0.8rem; color: var(--z-gray); margin-bottom: 2rem; }
.price-card.featured .price-note { color: rgba(255,255,255,0.4); }
.price-divider { border: none; border-top: 1px solid rgba(46,154,154,0.1); margin: 1.5rem 0; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.08); }
.price-feature {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--z-dark); margin-bottom: 0.7rem; line-height: 1.4;
}
.price-card.featured .price-feature { color: rgba(255,255,255,0.75); }
.price-feature .bi-check-circle-fill { color: var(--z-teal); margin-top: 1px; flex-shrink: 0; }
.price-feature .bi-dash { color: var(--z-gray); opacity: 0.4; margin-top: 1px; flex-shrink: 0; }
.btn-price-primary {
  display: block; width: 100%; background: var(--z-teal); color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem; border-radius: 8px; border: none;
  text-align: center; text-decoration: none; transition: all 0.25s;
  letter-spacing: 0.02em; margin-top: 1.5rem;
}
.btn-price-primary:hover {
  background: var(--z-teal-dark); color: #fff;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,154,154,0.35);
}
.btn-price-outline {
  display: block; width: 100%; background: transparent; color: var(--z-teal);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem; border-radius: 8px; border: 1.5px solid var(--z-teal);
  text-align: center; text-decoration: none; transition: all 0.25s;
  letter-spacing: 0.02em; margin-top: 1.5rem;
}
.btn-price-outline:hover { background: var(--z-teal); color: #fff; transform: translateY(-1px); }
.btn-price-ghost {
  display: block; width: 100%; background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.12);
  text-align: center; text-decoration: none; transition: all 0.25s;
  letter-spacing: 0.02em; margin-top: 1.5rem;
}
.btn-price-ghost:hover {
  background: rgba(255,255,255,0.14); color: #fff;
  border-color: rgba(255,255,255,0.25);
}

/* ── CTA ── */
.section-cta { padding: 7rem 0; background: #fff; }
.cta-inner {
  background: var(--z-dark); border-radius: 20px; padding: 5rem 4rem;
  position: relative; overflow: hidden; text-align: center;
}
.cta-inner::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,154,154,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.03em; margin-bottom: 1rem; position: relative; }
.cta-inner p  { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2.5rem; position: relative; }
.cta-actions  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-main {
  background: var(--z-teal); color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 8px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s;
}
.btn-cta-main:hover {
  background: var(--z-teal-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,154,154,0.4);
}
.btn-cta-ghost {
  background: transparent; color: rgba(255,255,255,0.6);
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ── FOOTER ── */
.footer {
  background: var(--z-dark); padding: 4rem 0 2rem;
  border-top: 1px solid rgba(46,154,154,0.1);
}
.footer-brand {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: #fff; letter-spacing: -0.02em;
}
.footer-brand .logo-dot { color: var(--z-gold); }
.footer-brand .logo-ext { color: var(--z-teal); }
.footer-tagline {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--z-gold); margin-bottom: 1rem; margin-top: 0.3rem;
}
.footer-description { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-heading {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--z-teal); }
.footer-contact a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact a:hover { color: var(--z-teal); }
.dsgvo-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(46,154,154,0.1); border: 1px solid rgba(46,154,154,0.2);
  color: var(--z-teal); font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem; border-radius: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--z-teal); }
.social-links a {
  color: rgba(255,255,255,0.35); font-size: 1.1rem;
  margin-left: 1rem; text-decoration: none; transition: color 0.2s;
}
.social-links a:hover { color: var(--z-teal); }

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(32px); }
  to   { opacity:1; transform:translateX(0); }
}
.reveal {
  opacity:0; transform:translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── LEGAL PAGES ── */
.legal-page { padding: 5rem 0; }
.legal-page h1 { font-size: 2rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 1rem; color: var(--z-teal); }
.legal-page p  { color: var(--z-gray); line-height: 1.8; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 5rem 0; }
.contact-form .form-control {
  border: 1px solid rgba(46,154,154,0.2); border-radius: 8px;
  padding: 0.75rem 1rem; font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus {
  border-color: var(--z-teal);
  box-shadow: 0 0 0 3px rgba(46,154,154,0.1);
  outline: none;
}
.contact-form label {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--z-dark);
}

/* ── UTILS ── */
.text-teal { color: var(--z-teal) !important; }
.text-gold { color: var(--z-gold) !important; }
.bg-dark-zenico { background: var(--z-dark) !important; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 5rem 0 3rem; }
  .hero-card { margin-top: 2rem; }
  .cta-inner { padding: 3rem 1.5rem; }
  .stat-divider { display: none; }
  .section-features, .section-pricing, .section-cta { padding: 4rem 0; }
}
/* ── CONTACT FORM IN CTA (dark background) ── */
.contact-form-inline {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-inline .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.contact-form-inline .form-control::placeholder {
  color: rgba(255,255,255,0.25);
}
.contact-form-inline .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--z-teal);
  box-shadow: 0 0 0 3px rgba(46,154,154,0.15);
  outline: none;
  color: #fff;
}
.form-label-light {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  display: block;
  letter-spacing: 0.03em;
}
.form-label-light .optional {
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}
.form-error {
  font-size: 0.78rem;
  color: #FF6B6B;
  margin-top: 0.3rem;
}
.alert-success-zenico {
  background: rgba(46,154,154,0.15);
  border: 1px solid rgba(46,154,154,0.3);
  border-radius: 12px;
  color: #fff;
  padding: 1.5rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.alert-success-zenico i {
  color: var(--z-teal);
  font-size: 1.4rem;
}
.coming-soon-bar {
  background: linear-gradient(90deg, var(--z-teal-dark), var(--z-teal));
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}
.coming-soon-bar strong { color: var(--z-gold); }
