/* ═══════════════════════════════════════════════════════
   OgyMogy — Shared Stylesheet
   All pages link to this file. Page-specific styles go
   in a [style] block inside each page's <head>.
═══════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────── */
:root {
  --purple:      #4a2268;
  --purple-dark: #3a1854;
  --purple-mid:  #50226a;
  --accent:      #fb527a;
  --accent-dark: #e83d64;
  --blue-light:  #dae7ff;
  --blue-mid:    #b8d0f8;
  --text:        #2d2d3a;
  --text-muted:  #6b7280;
  --white:       #ffffff;
  --off-white:   #f8faff;
  --border:      #e2e8f0;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 20px rgba(74,34,104,.10);
  --shadow-lg:   0 12px 40px rgba(74,34,104,.18);
  --font-body:   'Roboto', sans-serif;
  --font-head:   'Roboto Slab', serif;
  --trans:       .22s ease;
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--trans); }
ul { list-style: none; }

.skip-link {
  position: absolute; top: -44px; left: 0;
  background: var(--purple); color: #fff;
  padding: 10px 20px; z-index: 10000;
  font-size: 14px; border-radius: 0 0 8px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 3.5vw, 2.7rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

/* ── Layout Helpers ─────────────────────────────────── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
}
.section     { padding: 72px 0; }
.section-sm  { padding: 48px 0; }
.text-center { text-align: center; }
.bg-light-blue { background: var(--blue-light); }
.bg-purple     { background: var(--purple); }
.bg-white      { background: var(--white); }
.bg-offwhite   { background: var(--off-white); }
.bg-dark       { background: #0f0520; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600;
  font-size: .95rem; cursor: pointer;
  border: none; transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 15px rgba(251,82,122,.35);
}
.btn-primary:hover {
  background: var(--accent-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(251,82,122,.45);
}
.btn-outline {
  background: transparent; color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple); color: #fff;
}
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: #fff;
}
.btn-purple {
  background: var(--purple); color: #fff;
  box-shadow: 0 4px 15px rgba(74,34,104,.3);
}
.btn-purple:hover {
  background: var(--purple-dark); color: #fff;
  transform: translateY(-2px);
}

/* ── Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible       { opacity: 1; transform: none; }
.reveal-delay-1       { transition-delay: .1s; }
.reveal-delay-2       { transition-delay: .2s; }
.reveal-delay-3       { transition-delay: .3s; }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: var(--purple);
  padding: 52px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(251,82,122,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; position: relative; }
.cta-banner p  { color: rgba(255,255,255,.65); margin-bottom: 24px; font-size: .95rem; position: relative; }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Section Header Helper ──────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, rgba(74,34,104,.07), rgba(251,82,122,.07));
  border: 1px solid rgba(74,34,104,.15);
  color: var(--purple); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-eyebrow-dark {
  display: inline-block;
  background: rgba(251,82,122,.12);
  border: 1px solid rgba(251,82,122,.3);
  color: #ff99b5; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-muted); font-size: 1rem;
  margin-top: 10px; max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* ── Feature Grid (shared across many inner pages) ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.feat-grid-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .25s ease;
  position: relative; overflow: hidden;
}
.feat-grid-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.feat-grid-card:hover::before  { transform: scaleX(1); }
.feat-grid-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feat-grid-icon {
  width: 56px; height: 56px; margin-bottom: 16px;
  border-radius: 14px; overflow: hidden;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.feat-grid-icon img { width: 38px; height: 38px; object-fit: contain; }
.feat-grid-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feat-grid-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.7; }
.feat-grid-card a.feat-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: .8rem; font-weight: 600;
  color: var(--accent);
}
.feat-grid-card a.feat-more:hover { gap: 8px; }

/* ── Steps (shared 3-step section) ─────────────────── */
.steps-dark {
  padding: 80px 0;
  background: var(--purple-dark);
  position: relative; overflow: hidden;
}
.steps-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(251,82,122,.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 20%, rgba(90,30,180,.25) 0%, transparent 50%);
  pointer-events: none;
}
.steps-dark-wrap { position: relative; z-index: 1; }
.steps-dark-header { text-align: center; margin-bottom: 56px; }
.steps-dark-header h2 { color: #fff; margin-bottom: 10px; }
.steps-dark-header p  { color: rgba(255,255,255,.5); max-width: 480px; margin: 0 auto; }
.steps-dark-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.08); border-radius: 24px;
  overflow: hidden;
}
.step-dark-card {
  padding: 44px 32px; text-align: center;
  position: relative; transition: background .3s ease;
}
.step-dark-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,.08); }
.step-dark-card:hover { background: rgba(255,255,255,.04); }
.step-dark-bg-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-head); font-size: 5rem; font-weight: 800;
  color: rgba(255,255,255,.04); line-height: 1;
  pointer-events: none; user-select: none;
}
.step-dark-icon {
  width: 100px; height: 100px; margin: 0 auto 28px;
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step-dark-card:nth-child(1) .step-dark-icon { background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(167,139,250,.1)); border: 1px solid rgba(139,92,246,.3); }
.step-dark-card:nth-child(2) .step-dark-icon { background: linear-gradient(135deg, rgba(251,82,122,.25), rgba(253,164,175,.1)); border: 1px solid rgba(251,82,122,.3); }
.step-dark-card:nth-child(3) .step-dark-icon { background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(74,222,128,.08)); border: 1px solid rgba(34,197,94,.3); }
.step-dark-icon img { width: 62px; height: 62px; object-fit: contain; }
.step-dark-badge {
  position: absolute; top: -10px; right: -10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: #fff;
  font-family: var(--font-head);
  box-shadow: 0 4px 12px rgba(251,82,122,.45);
}
.step-dark-card h3 { color: #fff; margin-bottom: 12px; font-size: 1.05rem; }
.step-dark-card p  { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ── Testimonials (shared 4-card row) ───────────────── */
.testi-shared { padding: 80px 0; background: linear-gradient(160deg, #f8faff 0%, #fff 40%, #f3f0ff 100%); }
.testi-shared-header { text-align: center; margin-bottom: 44px; }
.testi-shared-header h2 { margin-bottom: 10px; }
.testi-shared-header p  { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.testi-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.testi-c {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 24px 20px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.testi-c::before {
  content: '"';
  position: absolute; top: 12px; right: 16px;
  font-size: 4rem; line-height: 1; color: var(--border);
  font-family: Georgia, serif; pointer-events: none;
}
.testi-c:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-c-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-c-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem;
  font-family: var(--font-head); flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74,34,104,.25);
}
.testi-c-name  { font-weight: 700; font-size: .9rem; }
.testi-c-stars { display: flex; gap: 2px; margin-top: 3px; }
.testi-c-stars span { color: #f59e0b; font-size: .72rem; }
.testi-c-stars span.empty { color: var(--border); }
.testi-c p { font-size: .85rem; color: var(--text-muted); line-height: 1.75; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-section { padding: 72px 0; background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 40px; align-items: start;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item:hover { border-color: var(--purple); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 16px 20px; background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: var(--font-body); font-weight: 600;
  font-size: .92rem; color: var(--text);
  transition: color var(--trans);
}
.faq-item.open .faq-q { color: var(--purple); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; transition: transform var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
  padding: 0 20px;
}
.faq-item.open .faq-body { max-height: 400px; padding: 0 20px 18px; }
.faq-body p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* ── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
  font-size: .82rem; color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); transition: color var(--trans); }
.breadcrumb-inner a:hover { color: var(--purple); }
.breadcrumb-inner .bc-sep { color: var(--border); }
.breadcrumb-inner .bc-current { color: var(--text); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--purple);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 16px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: flex-end;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 6px;
  color: rgba(255,255,255,.88); font-size: .87rem;
  font-weight: 500; letter-spacing: .02em;
  transition: all var(--trans); cursor: pointer;
  background: transparent; border: none; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-caret {
  width: 10px; height: 10px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round;
  transition: transform var(--trans);
}
.nav-item:hover .nav-caret,
.nav-item.open  .nav-caret { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--trans); z-index: 200;
}
.nav-item:hover .dropdown-panel,
.nav-item.open  .dropdown-panel {
  opacity: 1; visibility: visible;
  pointer-events: all; transform: translateY(0);
}
.dropdown-panel a {
  display: block; padding: 9px 14px;
  color: var(--text); font-size: .88rem;
  border-radius: 8px; transition: all var(--trans);
}
.dropdown-panel a:hover { background: var(--blue-light); color: var(--purple); padding-left: 18px; }
.nav-item.lang-item .dropdown-panel { left: auto; right: 0; min-width: 200px; }
.nav-btn-wrap { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.nav-btn {
  padding: 8px 20px; border-radius: 50px;
  font-size: .86rem; font-weight: 600;
  transition: all var(--trans); white-space: nowrap;
}
.nav-btn-buy  { background: var(--accent); color: #fff; box-shadow: 0 3px 12px rgba(251,82,122,.4); }
.nav-btn-buy:hover  { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.nav-btn-login { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.nav-btn-login:hover { background: rgba(255,255,255,.22); color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none; background: var(--purple-dark);
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a, .mobile-nav button {
  display: block; width: 100%; padding: 11px 24px;
  color: rgba(255,255,255,.88); font-size: .92rem;
  background: none; border: none; text-align: left;
  cursor: pointer; transition: background var(--trans);
}
.mobile-nav a:hover, .mobile-nav button:hover { background: rgba(255,255,255,.08); }
.mobile-nav .mob-sub   { padding-left: 40px; font-size: .86rem; color: rgba(255,255,255,.65); }
.mobile-nav .mob-divider { height: 1px; background: rgba(255,255,255,.1); margin: 8px 16px; }
.mobile-nav .mob-ctas  { display: flex; gap: 10px; padding: 14px 24px 18px; }
.mobile-nav .mob-ctas a { display: inline-block; width: auto; padding: 9px 22px; border-radius: 50px; font-weight: 600; font-size: .88rem; }
.mobile-nav .nav-btn-buy   { background: var(--accent) !important; color: #fff !important; box-shadow: 0 3px 12px rgba(251,82,122,.4); }
.mobile-nav .nav-btn-login { background: rgba(255,255,255,.15) !important; color: #fff !important; border: 1.5px solid rgba(255,255,255,.4) !important; }

/* ═══════════════════════════════════════════════════════
   PROMO BAR
═══════════════════════════════════════════════════════ */
.promo-bar {
  position: relative;
  background: linear-gradient(110deg, #1a0533 0%, #3b0f6e 30%, #5c1a9a 55%, #7b1fa2 70%, #2d0a56 100%);
  background-size: 300% 100%;
  animation: promoGradShift 8s ease infinite;
  overflow: hidden; z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@keyframes promoGradShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.promo-bar::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 50%, transparent 100%);
  animation: promoShimmer 3.5s ease infinite; pointer-events: none;
}
@keyframes promoShimmer { 0%{left:-80%} 100%{left:130%} }
.promo-bar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), #b44fff, var(--accent), transparent);
  background-size: 200% 100%;
  animation: promoLineSlide 3s linear infinite;
}
@keyframes promoLineSlide { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.promo-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.promo-particle {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.15); animation: particleFloat linear infinite;
}
.promo-particle:nth-child(1){left:5%;animation-duration:6s;animation-delay:0s;width:4px;height:4px}
.promo-particle:nth-child(2){left:18%;animation-duration:8s;animation-delay:1.2s;width:6px;height:6px;background:rgba(251,82,122,.25)}
.promo-particle:nth-child(3){left:42%;animation-duration:5s;animation-delay:.4s;width:3px;height:3px}
.promo-particle:nth-child(4){left:65%;animation-duration:7s;animation-delay:2s;width:5px;height:5px;background:rgba(180,79,255,.3)}
.promo-particle:nth-child(5){left:80%;animation-duration:9s;animation-delay:.8s;width:4px;height:4px}
.promo-particle:nth-child(6){left:92%;animation-duration:6.5s;animation-delay:1.6s;width:6px;height:6px;background:rgba(251,82,122,.2)}
@keyframes particleFloat { 0%{transform:translateY(40px) scale(0);opacity:0} 10%{opacity:1} 90%{opacity:.6} 100%{transform:translateY(-40px) scale(1.2);opacity:0} }
.promo-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 11px 24px; gap: 16px;
}
.promo-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 5px 13px; flex-shrink: 0;
}
.promo-badge-icon { font-size: 1rem; animation: iconBounce 2s ease infinite; }
@keyframes iconBounce { 0%,100%{transform:translateY(0) rotate(0deg)} 25%{transform:translateY(-3px) rotate(-8deg)} 75%{transform:translateY(-1px) rotate(6deg)} }
.promo-badge-text { font-size: .65rem; font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,.7); text-transform: uppercase; }
.promo-message { display: flex; align-items: center; gap: 12px; flex: 1; justify-content: center; flex-wrap: wrap; }
.promo-text { font-size: .92rem; color: rgba(255,255,255,.88); font-weight: 400; }
.promo-discount {
  font-size: 1.25rem; font-weight: 900; font-family: var(--font-head);
  display: inline-block; margin: 0 3px;
  background: linear-gradient(135deg, #ffdd57 0%, #ff914d 40%, var(--accent) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: discountGlow 2s ease infinite;
}
@keyframes discountGlow { 0%,100%{filter:brightness(1)} 50%{filter:brightness(1.25)} }
.promo-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff; font-size: .82rem; font-weight: 700;
  padding: 7px 16px; border-radius: 50px;
  transition: all .22s ease; box-shadow: 0 3px 14px rgba(251,82,122,.45);
  flex-shrink: 0; white-space: nowrap;
}
.promo-cta svg { width: 14px; height: 14px; transition: transform .22s ease; }
.promo-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.promo-cta:hover svg { transform: translateX(3px); }
.promo-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.promo-expires { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.promo-timer { display: flex; align-items: center; gap: 4px; }
.timer-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 3px 8px; min-width: 40px;
}
.timer-num {
  font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: #fff; line-height: 1.1;
}
.timer-num.tick { animation: numTick .15s ease; }
@keyframes numTick { 0%{transform:translateY(-4px);opacity:.4} 100%{transform:translateY(0);opacity:1} }
.timer-label { font-size: .55rem; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; line-height: 1; }
.timer-sep   { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.3); margin-bottom: 10px; }
.promo-close {
  background: none; border: none; cursor: pointer; padding: 5px;
  color: rgba(255,255,255,.4); display: flex; align-items: center;
  transition: color .2s, transform .2s; flex-shrink: 0;
}
.promo-close svg { width: 14px; height: 14px; }
.promo-close:hover { color: #fff; transform: rotate(90deg); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--purple-dark); padding: 0;
  color: rgba(255,255,255,.75); position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; display: block; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #b44fff 40%, var(--accent) 80%, #ff8fab 100%);
  background-size: 200% 100%; animation: footerBarSlide 4s linear infinite;
}
@keyframes footerBarSlide { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.site-footer::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 85%, rgba(251,82,122,.07) 0%, transparent 40%), radial-gradient(circle at 85% 15%, rgba(180,79,255,.06) 0%, transparent 40%);
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; }
.footer-top {
  padding: 48px 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-logo { height: 36px; margin-bottom: 12px; filter: brightness(10); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); max-width: 320px; line-height: 1.6; }
.footer-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; padding: 5px 12px;
  font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500;
}
.footer-badge .badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.4)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0)} }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding: 44px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col-title {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
  padding-bottom: 10px; position: relative;
}
.footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; background: var(--accent); border-radius: 2px;
}
.footer-disclaimer-text { font-size: .83rem; line-height: 1.75; color: rgba(255,255,255,.42); max-width: 280px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-link-item { position: relative; display: flex; align-items: center; }
.footer-link-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-right: 10px;
  opacity: 0; transform: scale(0) translateX(-4px);
  transition: opacity .22s ease, transform .22s ease;
}
.footer-link-item:hover::before {
  opacity: 1; transform: scale(1) translateX(0);
  animation: dot-pop .22s ease forwards, dot-pulse 1.2s ease .22s infinite;
}
@keyframes dot-pop { 0%{transform:scale(0);opacity:0} 60%{transform:scale(1.4);opacity:1} 100%{transform:scale(1);opacity:1} }
@keyframes dot-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(251,82,122,.5)} 50%{box-shadow:0 0 0 4px rgba(251,82,122,0)} }
.footer-link-item a {
  display: block; padding: 7px 0; font-size: .875rem;
  color: rgba(255,255,255,.55); transition: color .22s ease, transform .22s ease; line-height: 1;
}
.footer-link-item:hover a { color: #fff; transform: translateX(4px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; padding: 28px 0;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); line-height: 1.5; }
.footer-copy span { color: rgba(255,255,255,.5); font-weight: 500; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.75); }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: .9rem;
  transition: all .22s ease; position: relative; overflow: hidden;
}
.footer-social-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent); transform: scale(0);
  border-radius: 50%; transition: transform .28s ease; z-index: 0;
}
.footer-social-btn:hover::before { transform: scale(2); }
.footer-social-btn i { position: relative; z-index: 1; }
.footer-social-btn:hover { color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ── Google Translate ───────────────────────────────── */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
#google_translate_element { display: none !important; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Shared rules
═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .nav-menu     { display: none !important; }
  .nav-btn-wrap { display: none; }
  .hamburger    { display: flex; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-top   { flex-direction: column; gap: 24px; }
  .testi-row    { grid-template-columns: 1fr 1fr; }
  .feat-grid    { grid-template-columns: 1fr 1fr; }
  .steps-dark-grid { grid-template-columns: 1fr; }
  .step-dark-card:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .faq-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }
  .testi-row    { grid-template-columns: 1fr; }
  .feat-grid    { grid-template-columns: 1fr; }
  .section      { padding: 48px 0; }
  .promo-badge, .promo-right { display: none; }
  .promo-message { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .promo-badge, .promo-right { display: none; }
}
@media (max-width: 560px) {
  .promo-text     { font-size: .82rem; }
  .promo-discount { font-size: 1.05rem; }
  .promo-cta      { font-size: .76rem; padding: 6px 12px; }
  .promo-inner    { padding: 10px 16px; }
}

.page-hero{background:linear-gradient(135deg,var(--purple-dark) 0%,var(--purple) 50%,#5c2f80 100%);padding:72px 0 64px;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 55% 70% at 75% 50%,rgba(251,82,122,.1) 0%,transparent 55%),radial-gradient(ellipse 40% 50% at 5% 80%,rgba(60,20,100,.5) 0%,transparent 50%);pointer-events:none}
.hero-grid{display:grid;grid-template-columns:55fr 45fr;gap:40px;align-items:center;position:relative;z-index:1}
.hero-kicker{display:inline-block;background:rgba(251,82,122,.15);border:1px solid rgba(251,82,122,.35);color:#ffb3c6;padding:5px 14px;border-radius:50px;font-size:.78rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;margin-bottom:18px}
.hero-grid h1{color:#fff;margin-bottom:16px}
.hero-desc{color:rgba(255,255,255,.75);font-size:1.05rem;margin-bottom:24px;line-height:1.75}
.hero-points{display:grid;grid-template-columns:1fr 1fr;gap:8px 16px;margin-bottom:28px}
.hero-point{display:flex;align-items:flex-start;gap:8px;font-size:.87rem;color:rgba(255,255,255,.8)}
.hero-point::before{content:'';width:16px;height:16px;flex-shrink:0;margin-top:2px;background:var(--accent);border-radius:50%;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-size:cover}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:20px}
.hero-proof{display:flex;gap:20px;flex-wrap:wrap;padding-top:16px;border-top:1px solid rgba(255,255,255,.12)}
.hero-proof span{font-size:.78rem;color:rgba(255,255,255,.55);display:flex;align-items:center;gap:5px}
.hero-proof span::before{content:'✓';color:var(--accent);font-weight:700}
.hero-image{border-radius:18px;overflow:hidden;align-self:center}
.hero-image img{width:100%;max-width:420px;border-radius:18px;box-shadow:0 16px 40px rgba(0,0,0,.3);display:block;margin:0 auto}
.stats-bar{background:var(--off-white);border-bottom:1px solid var(--border);padding:22px 0}
.stats-grid{display:flex;align-items:center;justify-content:space-around;gap:24px;flex-wrap:wrap}
.stat-item{text-align:center}
.stat-num{font-family:var(--font-head);font-size:1.6rem;font-weight:800;color:var(--purple);line-height:1}
.stat-label{font-size:.78rem;color:var(--text-muted);margin-top:4px}
.why-section{padding:80px 0;background:var(--white)}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:44px}
.why-card{text-align:center;padding:32px 20px;border:1.5px solid var(--border);border-radius:18px;transition:all .25s ease;position:relative;overflow:hidden}
.why-card::before{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--purple),var(--accent));transform:scaleX(0);transform-origin:center;transition:transform .3s ease}
.why-card:hover::before{transform:scaleX(1)}
.why-card:hover{border-color:var(--purple);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.why-icon{width:64px;height:64px;margin:0 auto 18px;background:linear-gradient(135deg,rgba(74,34,104,.1),rgba(251,82,122,.08));border-radius:18px;display:flex;align-items:center;justify-content:center}
.why-icon svg{width:28px;height:28px;stroke:var(--purple)}
.why-card h3{font-size:1rem;margin-bottom:10px}
.why-card p{font-size:.85rem;color:var(--text-muted);line-height:1.7}
.about-full{width:100%}
.about-text-col{max-width:100%}
.about-text-col h2{margin-bottom:0}
.about-feature-list{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:24px}
.about-feat{display:flex;align-items:flex-start;gap:14px;padding:16px 18px;background:var(--white);border:1.5px solid var(--border);border-radius:12px;transition:border-color .22s,box-shadow .22s}
.about-feat:hover{border-color:var(--purple);box-shadow:0 4px 16px rgba(74,34,104,.08)}
.about-feat-icon{width:44px;height:44px;flex-shrink:0;border-radius:12px;background:linear-gradient(135deg,rgba(74,34,104,.1),rgba(251,82,122,.08));display:flex;align-items:center;justify-content:center}
.about-feat-icon svg{width:22px;height:22px;stroke:var(--purple)}
.about-feat div{display:flex;flex-direction:column;gap:3px}

.cta-price-tag{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.12);border:1.5px solid rgba(255,255,255,.25);border-radius:50px;padding:10px 20px;font-size:.88rem;color:rgba(255,255,255,.85);white-space:nowrap}
.cta-price-tag svg{width:16px;height:16px;stroke:#ffdd57}
.cta-price-tag strong{color:#ffdd57;font-weight:700;font-size:1rem}
.legal-section{padding:72px 0}
.legal-content{max-width:860px;margin:0 auto}
.legal-content h2{margin:36px 0 14px;color:var(--purple)}
.legal-content h3{margin:24px 0 10px}
.legal-content p,.legal-content li{font-size:.95rem;color:var(--text-muted);line-height:1.85;margin-bottom:12px}
.legal-content ul{list-style:disc;padding-left:24px}
.pricing-section{padding:72px 0;background:var(--off-white)}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px}
.pricing-card{background:var(--white);border:1.5px solid var(--border);border-radius:20px;padding:36px 28px;text-align:center;position:relative;transition:all .25s ease}
.pricing-card:hover{border-color:var(--purple);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.pricing-card.popular{border-color:var(--accent);box-shadow:0 0 0 3px rgba(251,82,122,.1)}
.pricing-popular-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--accent);color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:5px 16px;border-radius:50px;white-space:nowrap}
.pricing-plan-name{font-family:var(--font-head);font-size:1.2rem;font-weight:700;color:var(--purple);margin-bottom:8px}
.pricing-price{font-family:var(--font-head);font-size:2.8rem;font-weight:800;color:var(--text);line-height:1;margin:16px 0 4px}
.pricing-price span{font-size:1rem;font-weight:400;color:var(--text-muted)}
.pricing-period{font-size:.8rem;color:var(--text-muted);margin-bottom:24px}
.pricing-features{text-align:left;margin-bottom:28px;display:flex;flex-direction:column;gap:10px}
.pricing-feat{display:flex;align-items:center;gap:10px;font-size:.87rem;color:var(--text-muted)}
.pricing-feat::before{content:'';width:18px;height:18px;flex-shrink:0;background:rgba(74,34,104,.1);border-radius:50%;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%234a2268' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-size:cover}
.contact-section{padding:72px 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;margin-top:44px}
.contact-info h3{margin-bottom:20px}
.contact-info p{color:var(--text-muted);margin-bottom:24px;line-height:1.8}
.contact-item{display:flex;align-items:flex-start;gap:14px;margin-bottom:20px}
.contact-item-icon{width:44px;height:44px;flex-shrink:0;border-radius:12px;background:linear-gradient(135deg,rgba(74,34,104,.1),rgba(251,82,122,.08));display:flex;align-items:center;justify-content:center}
.contact-item-icon svg{width:22px;height:22px;stroke:var(--purple)}
.contact-item-text strong{display:block;font-size:.9rem;color:var(--text);margin-bottom:3px}
.contact-item-text span{font-size:.85rem;color:var(--text-muted)}
.contact-form{background:var(--off-white);border:1.5px solid var(--border);border-radius:20px;padding:36px 32px}
.form-group{margin-bottom:18px}
.form-label{display:block;font-size:.85rem;font-weight:600;color:var(--text);margin-bottom:6px}
.form-input{width:100%;padding:11px 16px;border:1.5px solid var(--border);border-radius:10px;font-family:var(--font-body);font-size:.9rem;color:var(--text);background:var(--white);transition:border-color .22s;outline:none}
.form-input:focus{border-color:var(--purple)}
textarea.form-input{min-height:120px;resize:vertical}
.features-hero-section{background:linear-gradient(135deg,var(--purple-dark) 0%,var(--purple) 60%,#5c2f80 100%);padding:72px 0 56px;position:relative;overflow:hidden;text-align:center}
.features-hero-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(251,82,122,.1) 0%,transparent 60%);pointer-events:none}
.features-hero-section h1{color:#fff;position:relative}
.features-hero-section p{color:rgba(255,255,255,.7);max-width:580px;margin:16px auto 28px;position:relative}
.about-section-full{padding:72px 0;background:var(--blue-light)}
@media(max-width:992px){.hero-grid{grid-template-columns:1fr}.hero-image{display:none}.hero-points{grid-template-columns:1fr}.why-grid{grid-template-columns:1fr 1fr}.about-feature-list{grid-template-columns:1fr 1fr}.pricing-grid{grid-template-columns:1fr}.contact-grid{grid-template-columns:1fr}}
@media(max-width:640px){.hero-points{grid-template-columns:1fr}.why-grid{grid-template-columns:1fr}.about-feature-list{grid-template-columns:1fr}.stats-grid{gap:16px}.cta-price-tag{justify-content:center}.cta-banner-actions{justify-content:center}}
}
}





.cta-price-tag {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
}
.cta-price-tag strong { color: #fff; font-weight: 700; font-size: 1rem; }


/* ════ ICON STROKE MASTER FIX ══════════════════════════
   Forces visible stroke on all icon containers
   Overrides currentColor fallback issues
════════════════════════════════════════════════════════ */

/* about-feat icons */
.about-feat-icon { color: #4a2268; }
.about-feat-icon svg { stroke: #4a2268; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.about-feat-icon svg path,
.about-feat-icon svg circle,
.about-feat-icon svg line,
.about-feat-icon svg rect,
.about-feat-icon svg polyline,
.about-feat-icon svg polygon,
.about-feat-icon svg ellipse { stroke: #4a2268; fill: none; }

/* why-icon / why-card icons */
.why-icon { color: #4a2268; }
.why-icon svg { stroke: #4a2268; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-icon svg path,
.why-icon svg circle,
.why-icon svg line,
.why-icon svg rect,
.why-icon svg polyline,
.why-icon svg polygon { stroke: #4a2268; fill: none; }

/* feat-grid-icon */
.feat-grid-icon svg { stroke: #4a2268; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat-grid-icon svg path,
.feat-grid-icon svg circle,
.feat-grid-icon svg line,
.feat-grid-icon svg rect,
.feat-grid-icon svg polyline,
.feat-grid-icon svg polygon,
.feat-grid-icon svg ellipse { stroke: #4a2268; fill: none; }

/* about-feat row layout */
.about-feat { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(74,34,104,.07); }
.about-feat:last-child { border-bottom: none; }
.about-feat-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,rgba(74,34,104,.1),rgba(251,82,122,.07)); border: 1.5px solid rgba(74,34,104,.15); }
.about-feat-icon svg { width: 24px; height: 24px; }
.about-feat > div:last-child { flex: 1; min-width: 0; }
.about-feat strong { display: block; font-size: .9rem; font-weight: 700; color: #2d2d3a; margin-bottom: 3px; }
.about-feat span { display: block; font-size: .82rem; color: #6b7280; line-height: 1.5; }

/* cta-price-tag — pill badge, never expands */
.cta-price-tag {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: .88rem;
  color: rgba(255,255,255,.9) !important;
  white-space: nowrap;
  margin-bottom: 20px;
}
.cta-price-tag strong { color: #fff !important; font-weight: 700; font-size: .95rem; }
.cta-price-tag svg { width: 16px; height: 16px; flex-shrink: 0; stroke: #ffdd57; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-price-tag svg path, .cta-price-tag svg circle { stroke: #ffdd57; fill: none; }

/* Hero h1 white on dark hero sections */
.page-hero h1,
.hero-text h1,
.page-hero .hero-text h1 { color: #fff !important; }
.page-hero .hero-desc,
.hero-text .hero-desc { color: rgba(255,255,255,.72); }

/* FAQ icon */
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon path { stroke: #4a2268; fill: none; }


/* ==OGYMOGY-MEGA-START== */



/* ======== MEGA MENU & FOOTER — Complete CSS ======== */
.site-header{position:sticky;top:0;z-index:1000;background:#4a2268;box-shadow:0 2px 20px rgba(0,0,0,.3);}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:70px;gap:12px;max-width:100%;}
.nav-logo img{display:block;height:34px;width:auto;}
.nav-menu{display:flex;align-items:center;gap:2px;flex:1;justify-content:flex-end;}
.nav-item{position:relative;}
.nav-link{display:flex;align-items:center;gap:5px;padding:7px 13px;border:none;background:none;cursor:pointer;color:rgba(255,255,255,.88);font-size:.82rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;text-decoration:none;border-radius:7px;transition:background .18s,color .18s;white-space:nowrap;}
.nav-link:hover,.nav-item:hover>.nav-link{color:#fff;background:rgba(255,255,255,.12);}
.nav-caret{width:9px;height:9px;flex-shrink:0;fill:none;stroke:rgba(255,255,255,.65);stroke-width:2;stroke-linecap:round;transition:transform .22s;}
.nav-item:hover .nav-caret{transform:rotate(180deg);}
.nav-btn-wrap{display:flex;align-items:center;gap:8px;flex-shrink:0;}
.nav-btn{display:inline-flex;align-items:center;padding:9px 20px;border-radius:50px;font-size:.81rem;font-weight:700;text-decoration:none;transition:all .18s;white-space:nowrap;}
.nav-btn-buy{background:#fb527a;color:#fff;box-shadow:0 4px 14px rgba(251,82,122,.4);}
.nav-btn-buy:hover{background:#e8456e;transform:translateY(-1px);}
.nav-btn-login{background:rgba(255,255,255,.1);color:#fff;border:1.5px solid rgba(255,255,255,.2);}
.nav-btn-login:hover{background:rgba(255,255,255,.18);}

/* Mega dropdown panel */
.mega-panel{position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%) translateY(-6px);background:#fff;border-radius:18px;box-shadow:0 20px 60px rgba(74,34,104,.2),0 4px 16px rgba(0,0,0,.08);border:1px solid rgba(74,34,104,.1);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s,transform .2s,visibility .2s;z-index:9999;}
.nav-item:hover>.mega-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0);}
.mp-products{width:680px;}
.mp-features{width:860px;}

/* Grid inside panels */
.mp-2col{display:grid;grid-template-columns:1fr 1fr;}
.mp-3col{display:grid;grid-template-columns:1fr 1fr 1fr;}
.mp-col{padding:20px 18px;border-right:1px solid rgba(74,34,104,.07);}
.mp-col:last-child{border-right:none;}

/* Column title */
.mp-title{display:flex;align-items:center;gap:8px;font-size:.67rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#4a2268;margin-bottom:12px;padding-bottom:10px;border-bottom:2px solid rgba(74,34,104,.1);}
.mp-title svg{width:14px;height:14px;flex-shrink:0;stroke:#4a2268;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;display:block;}
.mp-title svg *{stroke:#4a2268;fill:none;}

/* Product link item */
.mp-item{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:10px;text-decoration:none;transition:background .14s;margin-bottom:1px;}
.mp-item:hover{background:rgba(74,34,104,.06);}
.mp-item-icon{width:34px;height:34px;min-width:34px;border-radius:9px;background:rgba(74,34,104,.09);border:1px solid rgba(74,34,104,.1);display:flex;align-items:center;justify-content:center;overflow:hidden;}
.mp-item-icon svg{width:17px;height:17px;display:block;flex-shrink:0;stroke:#4a2268;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.mp-item-icon svg *{stroke:#4a2268;fill:none;}
.mp-item-text{flex:1;min-width:0;}
.mp-item-name{font-size:.85rem;font-weight:700;color:#1a1a2e;line-height:1.3;white-space:nowrap;}
.mp-item:hover .mp-item-name{color:#4a2268;}
.mp-item-desc{font-size:.73rem;color:#6b7280;line-height:1.3;white-space:nowrap;}

/* Feature link item */
.mp-feat{display:flex;align-items:flex-start;gap:9px;padding:6px 8px;border-radius:8px;text-decoration:none;transition:background .14s;margin-bottom:1px;}
.mp-feat:hover{background:rgba(74,34,104,.05);}
.mp-feat-icon{width:26px;height:26px;min-width:26px;border-radius:6px;background:rgba(74,34,104,.08);display:flex;align-items:center;justify-content:center;overflow:hidden;margin-top:1px;}
.mp-feat-icon svg{width:13px;height:13px;display:block;flex-shrink:0;stroke:#4a2268;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.mp-feat-icon svg *{stroke:#4a2268;fill:none;}
.mp-feat-name{font-size:.81rem;font-weight:600;color:#1a1a2e;line-height:1.3;}
.mp-feat:hover .mp-feat-name{color:#4a2268;}
.mp-feat-desc{font-size:.7rem;color:#9ca3af;line-height:1.3;margin-top:1px;}

/* View all link */
.mp-viewall{display:flex;align-items:center;gap:6px;margin-top:10px;padding:7px 10px;border-radius:8px;text-decoration:none;font-size:.77rem;font-weight:700;color:#4a2268;background:rgba(74,34,104,.07);transition:background .14s;}
.mp-viewall:hover{background:rgba(74,34,104,.12);}
.mp-viewall svg{width:12px;height:12px;display:block;stroke:#4a2268;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.mp-viewall svg *{stroke:#4a2268;fill:none;}

/* Promo box */
.mp-promo{margin-top:14px;padding:13px 12px;background:linear-gradient(135deg,rgba(74,34,104,.05),rgba(251,82,122,.05));border-radius:12px;border:1px solid rgba(74,34,104,.1);}
.mp-promo-title{display:flex;align-items:center;gap:6px;font-size:.74rem;font-weight:700;color:#4a2268;margin-bottom:5px;}
.mp-promo-title svg{width:12px;height:12px;stroke:#4a2268;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;display:block;}
.mp-promo-title svg *{stroke:#4a2268;fill:none;}
.mp-promo-desc{font-size:.71rem;color:#6b7280;margin-bottom:9px;}
.mp-promo-btn{display:inline-flex;align-items:center;gap:5px;background:#4a2268;color:#fff;padding:6px 13px;border-radius:50px;font-size:.74rem;font-weight:700;text-decoration:none;transition:background .15s;}
.mp-promo-btn:hover{background:#3a1854;}
.mp-promo-btn svg{width:11px;height:11px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;display:block;}
.mp-promo-btn svg *{stroke:#fff;fill:none;}

/* Language simple panel */
.simple-panel{position:absolute;top:calc(100% + 8px);right:0;background:#fff;border-radius:12px;min-width:150px;box-shadow:0 14px 44px rgba(74,34,104,.15);border:1px solid rgba(74,34,104,.1);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .18s,transform .18s,visibility .18s;transform:translateY(-5px);z-index:9999;padding:6px 0;}
.nav-item:hover>.simple-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);}
.simple-panel a{display:block;padding:8px 14px;color:#374151;font-size:.83rem;text-decoration:none;transition:background .13s,color .13s;}
.simple-panel a:hover{background:rgba(74,34,104,.06);color:#4a2268;}

/* Mobile */
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;background:none;border:none;cursor:pointer;}
.hamburger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;}
.mobile-nav{display:none;position:absolute;top:70px;left:0;right:0;background:#2a0a50;padding:16px;z-index:9998;border-top:1px solid rgba(255,255,255,.1);}
@media(max-width:960px){.nav-menu{display:none;}.hamburger{display:flex;}.mobile-nav.open{display:block;}}
.mobile-nav a{display:flex;align-items:center;gap:10px;padding:9px 8px;color:rgba(255,255,255,.82);text-decoration:none;font-size:.87rem;border-radius:7px;}
.mobile-nav a:hover{background:rgba(255,255,255,.08);}
.mobile-nav a svg{width:15px;height:15px;flex-shrink:0;stroke:rgba(255,255,255,.5);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;display:block;}
.mobile-nav a svg *{stroke:rgba(255,255,255,.5);fill:none;}
.mob-divider{height:1px;background:rgba(255,255,255,.1);margin:8px 0;}
.mob-title{padding:7px 8px 3px;font-size:.66rem;font-weight:800;text-transform:uppercase;letter-spacing:.09em;color:rgba(255,255,255,.3);}
.mob-ctas{display:flex;gap:8px;padding-top:10px;}

/* ======== FOOTER — 5 columns ======== */
.site-footer{background:linear-gradient(160deg,#130522 0%,#1c0736 55%,#2b0952 100%);}
.footer-top-bar{border-bottom:1px solid rgba(255,255,255,.07);padding:32px 0 26px;}
.footer-top-bar-inner{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;}
.footer-brand-area{display:flex;flex-direction:column;gap:12px;}
.footer-brand-logo{display:block;height:28px;width:auto;}
.footer-tagline-new{font-size:.81rem;color:rgba(255,255,255,.4);max-width:300px;line-height:1.65;}
.footer-badges-new{display:flex;gap:7px;flex-wrap:wrap;}
.footer-badge-new{display:inline-flex;align-items:center;gap:6px;padding:4px 11px;border-radius:50px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);font-size:.71rem;font-weight:600;color:rgba(255,255,255,.6);}
.footer-badge-new svg{width:12px;height:12px;flex-shrink:0;display:block;stroke:rgba(255,255,255,.55);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.footer-badge-new svg *{stroke:rgba(255,255,255,.55);fill:none;}
.footer-socials-new{display:flex;gap:8px;}
.footer-social-new{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);text-decoration:none;font-size:.85rem;transition:background .18s,color .18s,transform .18s;}
.footer-social-new:hover{background:#fb527a;border-color:#fb527a;color:#fff;transform:translateY(-2px);}
.footer-cols-wrap{padding:28px 0 24px;}
.footer-5cols{display:grid;grid-template-columns:1.1fr 1fr 1fr 1fr 1fr;gap:0;}
.footer-col{padding:0 15px;border-right:1px solid rgba(255,255,255,.05);}
.footer-col:first-child{padding-left:0;}
.footer-col:last-child{padding-right:0;border-right:none;}
.footer-col-head{display:flex;align-items:center;gap:8px;margin-bottom:15px;padding-bottom:11px;border-bottom:2px solid rgba(251,82,122,.2);}
.footer-col-head-icon{width:28px;height:28px;min-width:28px;border-radius:7px;background:rgba(251,82,122,.1);border:1px solid rgba(251,82,122,.18);display:flex;align-items:center;justify-content:center;overflow:hidden;}
.footer-col-head-icon svg{width:14px;height:14px;display:block;stroke:#fb527a;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.footer-col-head-icon svg *{stroke:#fb527a !important;fill:none !important;}
.footer-col-head-text{font-size:.69rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:rgba(255,255,255,.88);}
.footer-link-list{list-style:none;padding:0;margin:0;}
.footer-link-list li a{display:flex;align-items:center;gap:7px;padding:5px 0;text-decoration:none;color:rgba(255,255,255,.45);font-size:.79rem;border-bottom:1px solid rgba(255,255,255,.04);transition:color .16s,padding-left .16s;}
.footer-link-list li:last-child a{border-bottom:none;}
.footer-link-list li a:hover{color:rgba(255,255,255,.88);padding-left:3px;}
.footer-link-list li a svg{width:12px;height:12px;flex-shrink:0;display:block;stroke:rgba(255,255,255,.22);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:stroke .16s;}
.footer-link-list li a svg *{stroke:rgba(255,255,255,.22);fill:none;}
.footer-link-list li a:hover svg,.footer-link-list li a:hover svg *{stroke:rgba(255,255,255,.6);}
.footer-link-list li a .fl-name{flex:1;min-width:0;}
.footer-link-list li a .fl-badge{font-size:.6rem;padding:1px 6px;border-radius:4px;background:rgba(251,82,122,.18);color:#fb527a;border:1px solid rgba(251,82,122,.22);font-weight:700;flex-shrink:0;white-space:nowrap;}
.footer-bottom-new{border-top:1px solid rgba(255,255,255,.07);padding:16px 0;display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;}
.footer-copy-new{font-size:.75rem;color:rgba(255,255,255,.28);}
.footer-copy-new span{color:rgba(255,255,255,.5);font-weight:600;}
.footer-legal-new{display:flex;gap:18px;}
.footer-legal-new a{font-size:.72rem;color:rgba(255,255,255,.32);text-decoration:none;transition:color .16s;}
.footer-legal-new a:hover{color:rgba(255,255,255,.82);}
@media(max-width:1100px){.footer-5cols{grid-template-columns:1fr 1fr 1fr;gap:24px;}.footer-col{border-right:none;padding:0;}}
@media(max-width:640px){.footer-5cols{grid-template-columns:1fr 1fr;}.footer-top-bar-inner{flex-direction:column;align-items:flex-start;}}
@media(max-width:400px){.footer-5cols{grid-template-columns:1fr;}}


/* ── GLOBAL FIXES ──────────────────────────────────────────────── */

/* 1. Reveal: show content immediately, animate as enhancement */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* 2. About-feat icon — prevent touching left boundary */
.about-feat {
  padding: 14px 16px 14px 16px !important;
  gap: 14px !important;
}
.about-feat-icon {
  flex-shrink: 0 !important;
  min-width: 44px !important;
  width: 44px !important;
  height: 44px !important;
  margin-left: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(74,34,104,.1), rgba(251,82,122,.07));
  border: 1.5px solid rgba(74,34,104,.12);
}
.about-feat-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block;
  stroke: #4a2268 !important;
  fill: none !important;
}
.about-feat-icon svg *,
.about-feat-icon svg path,
.about-feat-icon svg circle,
.about-feat-icon svg rect,
.about-feat-icon svg line,
.about-feat-icon svg polyline {
  stroke: #4a2268 !important;
  fill: none !important;
}
/* Card layout variant */
.about-feature-list .about-feat {
  padding: 14px 16px !important;
}
.about-feature-list .about-feat-icon {
  margin-left: 0 !important;
}

/* 3. Buttons — center aligned */
.about-action-btns {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center !important;
  align-items: center;
}
.about-action-btns .btn {
  min-width: 130px;
  text-align: center;
  justify-content: center;
}

/* 4. Hero text white on sub-pages */
.page-hero h1,
.page-hero .hero-text h1,
.hero-text h1 { color: #fff !important; }
.page-hero .hero-desc,
.hero-desc { color: rgba(255,255,255,.78) !important; }
.hero-bullets li { color: rgba(255,255,255,.82) !important; }


/* ── Fix 1: hero-bullets double icon — hide the <i> tag ─────────── */
.hero-bullets li i,
.hero-bullets li .fa {
  display: none !important;
}

/* ── Fix 2: mega menu hover bridge ──────────────────────────────── */
/* Reduce gap so cursor doesn't leave hover area */
.mega-panel {
  top: calc(100% + 1px) !important;
  transform: translateX(-50%) translateY(-4px) !important;
}
.nav-item:hover > .mega-panel {
  transform: translateX(-50%) translateY(0) !important;
}
/* Invisible bridge covers the gap between button and panel */
.mega-panel::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}
/* Keep nav-item hover active when cursor is on bridge */
.nav-item {
  padding-bottom: 2px;
}


/* ── Footer logo — no stretch ── */
img.footer-brand-logo,
.footer-brand-logo {
  display: block !important;
  height: 30px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
}
