/*
Theme Name: Nierika Digital
Author: Nierika Digital
Version: 1.0.0
*/

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

:root {
  --bg: #FAF6F0;
  --bg-alt: #F0EBE3;
  --surface: #FFFFFF;
  --primary: #1B3A2D;
  --primary-light: #2A5440;
  --accent: #C4573E;
  --accent-hover: #A8452F;
  --text: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-muted: #7A7A7A;
  --border: #E2DDD5;
  --border-light: #EDE8E0;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1140px;
  --radius: 10px;
  --radius-lg: 16px;
  --nav-radius: 50px;
  --nav-gap: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === SECTION HELPERS === */
.section-label {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 87, 62, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-alt); }

.btn-ghost-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost-dark:hover {
  background: var(--primary);
  color: #fff;
}

/* === STICKY HEADER & NOTIFICATION BAR === */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

body.admin-bar .header-wrapper { top: 32px; }

.top-bar {
  width: 100%;
  padding: 8px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.top-bar-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--max-w);
  margin: 0 auto;
  font-weight: 600;
}

.top-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-bar-cta {
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar-fx-pulse .top-bar-icon { animation: topBarPulse 1.8s infinite ease-in-out; }
@keyframes topBarPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.top-bar-fx-glow { border-bottom: 2px solid rgba(255, 255, 255, 0.4); box-shadow: 0 0 12px rgba(255, 255, 255, 0.3); }

/* === NAVIGATION === */
.nav-container { width: 100%; transition: all 0.3s ease; }
.nav-shape-full { padding: 0; }
.nav-shape-full .nav { border-radius: 0 !important; border-bottom: 1px solid var(--border-light); }

.nav-shape-rounded {
  padding: 12px 24px 0;
  max-width: calc(var(--max-w) + 48px);
  margin: 0 auto;
}
.nav-shape-rounded .nav {
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.nav-shape-pill {
  padding: 16px 24px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-shape-pill .nav {
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(27, 58, 45, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 28px;
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-logo-text { font-family: var(--serif); font-size: 1.15rem; color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: var(--nav-gap); }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(27, 58, 45, 0.15);
}
.nav-cta:hover { background: var(--primary-light) !important; }

.nav-fx-pill .nav-links a:not(.nav-cta):hover { background: rgba(196, 87, 62, 0.1); color: var(--accent); }
.nav-fx-underline .nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--accent); transition: all 0.25s ease; transform: translateX(-50%); border-radius: 2px;
}
.nav-fx-underline .nav-links a:not(.nav-cta):hover::after { width: 70%; }
.nav-fx-glow .nav-links a:not(.nav-cta):hover { background: rgba(255, 255, 255, 0.6); box-shadow: 0 0 12px rgba(196, 87, 62, 0.2); color: var(--accent); }
.nav-fx-lift .nav-links a:not(.nav-cta):hover { transform: translateY(-2px) scale(1.05); color: var(--primary); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg);
    flex-direction: column; align-items: flex-start; padding: 80px 32px 32px; gap: 24px;
    transition: right 0.35s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { width: 100%; text-align: center; }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 160px 24px 80px;
  background-color: var(--primary);
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

.hero-inner { position: relative; z-index: 3; max-width: var(--max-w); margin: 0 auto; }
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-title em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-actions .btn-ghost { color: rgba(255,255,255,0.8); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hero-actions .btn-primary { background: var(--accent); border-color: var(--accent); }

.hero-proof { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--serif); font-size: 1.6rem; color: #fff; }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* === SERVE === */
.serve { padding: 96px 0; }
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.serve-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.serve-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.serve-icon { width: 52px; height: 52px; color: var(--accent); margin-bottom: 20px; }
.serve-icon svg { width: 100%; height: 100%; }
.serve-card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--primary); margin-bottom: 10px; }
.serve-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

@media (max-width: 768px) {
  .serve-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* === SERVICES === */
.services { padding: 96px 0; background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-3px); }
.service-number { font-family: var(--serif); font-size: 2.5rem; color: var(--border); margin-bottom: 16px; line-height: 1; }
.service-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; }
.service-card > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 20px; }
.service-features { list-style: none; padding: 0; }
.service-features li { font-size: 0.9rem; color: var(--text-mid); padding: 6px 0; padding-left: 22px; position: relative; }
.service-features li::before {
  content: ''; position: absolute; left: 0; top: 13px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent); opacity: 0.6;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

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

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 4px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(196,87,62,0.1);
  position: relative;
}

.price-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(196,87,62,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.price-card-featured .price-card-tag {
  color: #fff;
  background: var(--accent);
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.price-amount span {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.price-card ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.price-card ul li:last-child { border-bottom: none; }

.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.price-card .btn {
  width: 100%;
  text-align: center;
}

/* === A LA CARTE GRID (BULLETPROOF) === */
.alc-grid,
.pricing-panel .alc-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

.alc-item {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 28px 24px !important;
  background: var(--surface, #ffffff) !important;
  border: 1px solid var(--border-light, #EDE8E0) !important;
  border-radius: var(--radius-lg, 16px) !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}

.alc-item h4 {
  font-family: var(--serif, 'DM Serif Display', serif) !important;
  font-size: 1.15rem !important;
  color: var(--primary, #1B3A2D) !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
}

.alc-item p {
  font-size: 0.9rem !important;
  color: var(--text-muted, #7A7A7A) !important;
  line-height: 1.6 !important;
  margin: 0 0 16px 0 !important;
}

.alc-price {
  font-family: var(--serif, 'DM Serif Display', serif) !important;
  font-size: 1.4rem !important;
  color: var(--accent, #C4573E) !important;
  margin-top: auto !important;
  padding-top: 16px !important;
}

.alc-price span {
  font-family: var(--sans, 'DM Sans', sans-serif) !important;
  font-size: 0.8rem !important;
  color: var(--text-muted, #7A7A7A) !important;
  font-weight: 400 !important;
}

@media (max-width: 1024px) {
  .alc-grid,
  .pricing-panel .alc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .alc-grid,
  .pricing-panel .alc-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .alc-item {
    padding: 24px 20px !important;
  }
}

/* === SITEORIGIN OVERRIDES TO PREVENT CRAMPING === */
.so-pricing-wrapper,
.pricing-panel,
.pricing-panel.active {
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* === PROCESS === */
.process { padding: 96px 0; background: var(--bg-alt); }
.process-steps { max-width: 600px; margin: 48px auto 0; }
.process-step { display: flex; gap: 24px; align-items: flex-start; }
.process-num {
  flex-shrink: 0; width: 44px; height: 44px; background: var(--primary); color: #fff;
  font-family: var(--serif); font-size: 1.2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-body h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--primary); margin-bottom: 6px; }
.process-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.process-line { width: 2px; height: 32px; background: var(--border); margin-left: 21px; }

/* === WHY === */
.why { padding: 96px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-item { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border-light); background: var(--surface); transition: transform 0.2s; }
.why-item:hover { transform: translateY(-2px); }
.why-item h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.why-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* === FAQ === */
.faq { padding: 96px 0; background: var(--bg-alt); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.faq-left .section-title { text-align: left; }
.faq-contact-hint { color: var(--text-muted); font-size: 0.95rem; margin-top: 16px; }
.faq-contact-hint a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; font-family: var(--sans);
  font-size: 1rem; font-weight: 600; color: var(--text); cursor: pointer; text-align: left; gap: 16px;
}
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--text-muted); border-radius: 2px; transition: transform 0.3s ease;
}
.faq-icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq-icon::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a p { padding-bottom: 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 300px; }

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-left .section-title { text-align: center; }
}

/* === CONTACT === */
.contact { padding: 96px 0; }
.contact-card {
  background: var(--primary); color: #fff; border-radius: var(--radius-lg);
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px; pointer-events: none;
}
.contact-card h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 16px; position: relative; }
.contact-card > p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; position: relative; }
.contact-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.contact-actions .btn-primary { background: var(--accent); border-color: var(--accent); }
.contact-actions .btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,0.3); }
.contact-actions .btn-ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

@media (max-width: 600px) { .contact-card { padding: 48px 24px; } }

/* === FOOTER === */
.footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; margin-top: 16px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.1rem; color: #fff; }
.footer-logo .nav-logo-mark { background: rgba(255,255,255,0.15); }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.35); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* === ANIMATIONS & REVEAL === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fadeUp 0.6s ease 0.1s both; }
.hero-title { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub { animation: fadeUp 0.6s ease 0.35s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.45s both; }
.hero-proof { animation: fadeUp 0.6s ease 0.55s both; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* === FORCE NEW COLORS OVER THEME CUSTOMIZER === */
html:root {
  --primary: #111111 !important;
  --primary-light: #2A2A2A !important;
  --accent: #E60026 !important;
  --accent-hover: #C4001F !important;
}

.top-bar {
  background-color: rgba(230, 0, 38, 0.6) !important;
}

/* === FOOTER === */
.footer {
  background: #111111 !important;
  color: #FFB612 !important;
}

.footer-brand p {
  color: #FFF !important;
}

.footer-logo {
  color: #FFF !important;
}

.footer-logo .nav-logo-mark {
  background: #FFF !important;
  color: #111111 !important;
}

.footer-col h4 {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.footer-col ul li a {
  color: #FFB612 !important;
}

.footer-col ul li a:hover {
  color: #FFFFFF !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 182, 18, 0.2) !important;
}

.footer-bottom p {
  font-size: 0.9rem !important;
  color: #FFB612 !important;
}

.nav-lang {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.nav-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.nav-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}