/* ═══════════════════════════════════════════════════════
   CSS VARIABLES — OgyMogy Brand
═══════════════════════════════════════════════════════ */
: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 */
.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); }

/* ═══════════════════════════════════════════════════════
   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: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline: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);
}

/* ═══════════════════════════════════════════════════════
   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 */
.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;
}

/* Language dropdown - right align */
.nav-item.lang-item .dropdown-panel {
  left: auto; right: 0; min-width: 200px;
}

/* Nav CTAs */
.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 */
.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 */
.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; }

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 45%, #5c2f80 100%);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(251,82,122,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(90,30,120,.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; 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: .8rem;
  font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 16px; line-height: 1.18; }
.hero-desc { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 24px; }
.hero-points {
  margin-bottom: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px;
}
.hero-points li {
  color: rgba(255,255,255,.82); font-size: .88rem;
  display: flex; align-items: flex-start; gap: 8px;
}
.hero-points li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  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; margin-top: 3px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-proof {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-proof span {
  font-size: .8rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 5px;
}
.hero-proof span::before {
  content: '✓';
  color: var(--accent); font-weight: 700;
}
.hero-image { border-radius: var(--radius-lg); overflow: hidden; }
.hero-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

/* ═══════════════════════════════════════════════════════
   WHO SECTION — Redesigned
═══════════════════════════════════════════════════════ */
.who-section {
  padding: 88px 0;
  background: #fff;
  position: relative; overflow: hidden;
}
.who-section::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(218,231,255,.55) 0%, transparent 70%);
  pointer-events: none;
}
.who-section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.who-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;
}
.who-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: dot-pulse-feat 1.6s ease infinite; }
.who-section-header h2 { margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-top: 10px; max-width: 560px; margin-left: auto; margin-right: auto; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; position: relative; z-index: 1;
}
.who-card {
  position: relative; border-radius: 20px;
  overflow: visible; transition: transform .3s ease, box-shadow .3s ease;
  background: transparent;
}
.who-card:hover {
  transform: translateY(-6px);
}
.who-card-inner {
  padding: 40px 28px 32px;
  border: 1.5px solid var(--border);
  border-radius: 20px; height: 100%;
  transition: border-color .3s ease, box-shadow .3s ease;
  background: var(--white);
  position: relative; overflow: hidden;
}
.who-card:hover .who-card-inner {
  border-color: var(--purple);
  box-shadow: 0 20px 50px rgba(74,34,104,.12);
}
/* Animated color band — inside who-card-inner at top */
.who-card-band {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
  z-index: 2;
}
.who-card:hover .who-card-band { transform: scaleX(1); }
/* Icon ring */
.who-icon-wrap {
  width: 96px; height: 96px; margin: 0 auto 24px;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all .3s ease;
}
.who-card:nth-child(1) .who-icon-wrap { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.who-card:nth-child(2) .who-icon-wrap { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.who-card:nth-child(3) .who-icon-wrap { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.who-card:hover .who-icon-wrap { transform: scale(1.06) rotate(-3deg); box-shadow: 0 8px 24px rgba(74,34,104,.15); }
.who-icon-wrap img { width: 58px; height: 58px; object-fit: contain; }
.who-card-inner h3 { text-align: center; margin-bottom: 12px; color: var(--purple); font-size: 1.15rem; }
.who-card-inner p { text-align: center; font-size: .88rem; color: var(--text-muted); line-height: 1.75; }
.who-features {
  display: flex; flex-direction: column; gap: 7px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.who-feat-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--text-muted);
  text-decoration: none;
  transition: color .22s ease, padding-left .22s ease;
  cursor: pointer;
}
a.who-feat-item:hover {
  color: var(--purple);
  padding-left: 4px;
}
.who-feat-item::before {
  content: ''; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(251,82,122,.4);
  transition: box-shadow .22s ease, transform .22s ease;
}
a.who-feat-item:hover::before {
  box-shadow: 0 0 0 4px rgba(251,82,122,0);
  animation: dot-pop .22s ease forwards, dot-pulse 1.2s ease .22s infinite;
  transform: scale(1.3);
}
.who-feat-item::after {
  content: '→';
  margin-left: auto;
  font-size: .75rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .22s ease, transform .22s ease;
}
a.who-feat-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════
   DEVICES SECTION — Redesigned
═══════════════════════════════════════════════════════ */
.devices-section {
  padding: 88px 0;
  background: #0f0520;
  position: relative; overflow: hidden;
}
.devices-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 10% 50%, rgba(74,34,104,.6) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 30%, rgba(251,82,122,.1) 0%, transparent 50%);
  pointer-events: none;
}
.devices-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.devices-wrap { position: relative; z-index: 1; }
.devices-header { text-align: center; margin-bottom: 56px; }
.devices-header h2 { color: #fff; margin-bottom: 12px; }
.devices-header p { color: rgba(255,255,255,.5); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.devices-eyebrow {
  display: inline-block;
  background: rgba(251,82,122,.12);
  border: 1px solid rgba(251,82,122,.3);
  color: #ff99b5; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.device-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 36px 28px 32px;
  text-align: center;
  transition: all .3s ease; position: relative; overflow: hidden;
  cursor: default;
}
.device-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 .35s ease;
}
.device-card:hover::before { transform: scaleX(1); }
.device-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(251,82,122,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.device-icon-wrap {
  width: 88px; height: 88px; margin: 0 auto 24px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  position: relative;
}
.device-card:nth-child(1) .device-icon-wrap { background: linear-gradient(135deg, rgba(74,222,128,.15), rgba(34,197,94,.08)); border: 1px solid rgba(74,222,128,.2); }
.device-card:nth-child(2) .device-icon-wrap { background: linear-gradient(135deg, rgba(96,165,250,.15), rgba(59,130,246,.08)); border: 1px solid rgba(96,165,250,.2); }
.device-card:nth-child(3) .device-icon-wrap { background: linear-gradient(135deg, rgba(251,82,122,.15), rgba(244,63,94,.08)); border: 1px solid rgba(251,82,122,.2); }
.device-card:hover .device-icon-wrap { transform: scale(1.08); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.device-icon-wrap img { width: 56px; height: 56px; object-fit: contain; }
.device-card h3 { color: #fff; margin-bottom: 12px; font-size: 1.1rem; }
.device-card p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; }
.device-pill {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 20px; padding: 5px 12px; border-radius: 50px;
  font-size: .72rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.45);
}
.device-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .7; }
.device-card:nth-child(1) .device-pill { background: rgba(74,222,128,.08); color: rgba(74,222,128,.8); border-color: rgba(74,222,128,.2); }
.device-card:nth-child(2) .device-pill { background: rgba(96,165,250,.08); color: rgba(96,165,250,.8); border-color: rgba(96,165,250,.2); }
.device-card:nth-child(3) .device-pill { background: rgba(251,82,122,.08); color: rgba(255,153,181,.8); border-color: rgba(251,82,122,.2); }

/* ═══════════════════════════════════════════════════════
   PURPLE CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--purple);
  padding: 40px 24px; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════════
   FEATURES TABS — Redesigned
═══════════════════════════════════════════════════════ */
.features-section {
  background: #0f0520;
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
/* Deep space background mesh */
.features-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%,  rgba(74,34,104,.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%,  rgba(251,82,122,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 70% 90%,  rgba(90,30,180,.25) 0%, transparent 50%);
  pointer-events: none;
}
/* Moving grid lines */
.features-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(60px, 60px); }
}

.features-wrap { position: relative; z-index: 1; }

/* Section header */
.features-header { text-align: center; margin-bottom: 56px; }
.features-header h2 {
  color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.features-header p { color: rgba(255,255,255,.5); font-size: 1rem; }
.features-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(251,82,122,.2), rgba(180,79,255,.2));
  border: 1px solid rgba(251,82,122,.35);
  color: #ff99b5; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 16px;
}

/* ── Category pills row ── */
.feat-cats {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.feat-cat-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 50px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .25s ease;
  font-family: var(--font-body);
  white-space: nowrap;
}
.feat-cat-btn .cat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  transition: all .25s ease;
}
.feat-cat-btn:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  transform: translateY(-1px);
}
.feat-cat-btn.active {
  background: rgba(251,82,122,.15);
  border-color: var(--accent);
  color: #fff;
}
.feat-cat-btn.active .cat-dot { animation: catDotPop .3s ease forwards; }
@keyframes catDotPop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.5); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Main layout: tabs left + panel right ── */
.feat-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px; align-items: start;
}

/* ── Left tab list ── */
.feat-tabs {
  display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: 90px;
  height: 580px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(251,82,122,.4) rgba(255,255,255,.05);
}
.feat-tabs::-webkit-scrollbar { width: 4px; }
.feat-tabs::-webkit-scrollbar-track { background: rgba(255,255,255,.04); border-radius: 4px; }
.feat-tabs::-webkit-scrollbar-thumb { background: rgba(251,82,122,.4); border-radius: 4px; }
.feat-tabs::-webkit-scrollbar-thumb:hover { background: rgba(251,82,122,.7); }
.feat-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px;
  cursor: pointer; transition: all .22s ease;
  border: 1px solid transparent;
  background: transparent;
  position: relative; overflow: hidden;
}
.feat-tab::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--accent);
  transform: scaleY(0); transform-origin: center;
  transition: transform .22s ease;
}
.feat-tab:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.feat-tab.active {
  background: linear-gradient(90deg, rgba(251,82,122,.12), rgba(251,82,122,.04));
  border-color: rgba(251,82,122,.25);
}
.feat-tab.active::before { transform: scaleY(1); }
.feat-tab-icon {
  width: 40px; height: 40px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: all .22s ease;
}
.feat-tab-icon img {
  width: 28px; height: 28px; object-fit: contain;
  transition: transform .22s ease;
}
.feat-tab:hover .feat-tab-icon img,
.feat-tab.active .feat-tab-icon img { transform: scale(1.15); }
.feat-tab.active .feat-tab-icon {
  background: rgba(251,82,122,.15);
  box-shadow: 0 0 16px rgba(251,82,122,.25);
}
.feat-tab-label {
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.45);
  transition: color .22s ease;
  line-height: 1.3;
}
.feat-tab:hover .feat-tab-label { color: rgba(255,255,255,.75); }
.feat-tab.active .feat-tab-label { color: #fff; font-weight: 600; }
.feat-tab-arrow {
  margin-left: auto; opacity: 0;
  color: var(--accent); font-size: .75rem;
  transform: translateX(-4px);
  transition: all .22s ease;
}
.feat-tab.active .feat-tab-arrow,
.feat-tab:hover .feat-tab-arrow { opacity: 1; transform: translateX(0); }

/* ── Right panel ── */
.feat-panel-wrap {
  position: relative;
  min-height: 580px;
  height: 580px;
}
.feat-panel {
  position: absolute; inset: 0;
  opacity: 0; transform: translateX(20px) scale(.98);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.feat-panel.active {
  opacity: 1; transform: none; pointer-events: all;
  position: absolute; inset: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(251,82,122,.3) transparent;
}
.feat-panel.active::-webkit-scrollbar { width: 4px; }
.feat-panel.active::-webkit-scrollbar-thumb { background: rgba(251,82,122,.3); border-radius: 4px; }

/* Panel card */
.feat-card {
  background: linear-gradient(135deg,
    rgba(255,255,255,.04) 0%,
    rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
}
.feat-card-top {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, rgba(251,82,122,.08), rgba(180,79,255,.06));
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative; overflow: hidden;
}
/* Glow orb behind card top */
.feat-card-top::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,82,122,.18), transparent 70%);
  pointer-events: none;
}
.feat-card-img {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.feat-card-img img { width: 44px; height: 44px; object-fit: contain; }
.feat-card-meta { flex: 1; }
.feat-card-cat {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent); margin-bottom: 6px;
}
.feat-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700; color: #fff;
  margin-bottom: 8px; line-height: 1.2;
}
.feat-card-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px;
}
.feat-card-tag {
  font-size: .7rem; padding: 3px 10px; border-radius: 50px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
}
.feat-card-body { padding: 24px 32px 28px; }
.feat-card-body p {
  font-size: .93rem; color: rgba(255,255,255,.62);
  line-height: 1.85; margin-bottom: 20px;
}
.feat-card-points {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 16px;
}
.feat-point {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.55);
  line-height: 1.4;
}
.feat-point::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  background: rgba(251,82,122,.2);
  border: 1px solid rgba(251,82,122,.4);
  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='M4 8l2.5 2.5L12 5' stroke='%23fb527a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.feat-card-footer {
  padding: 16px 32px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap; gap: 12px;
}
.feat-learn-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: 10px 22px; border-radius: 50px;
  transition: all .22s ease;
  box-shadow: 0 4px 16px rgba(251,82,122,.35);
}
.feat-learn-btn:hover {
  background: var(--accent-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 22px rgba(251,82,122,.5);
}
.feat-learn-btn svg { width: 14px; height: 14px; transition: transform .22s; }
.feat-learn-btn:hover svg { transform: translateX(3px); }
.feat-counter {
  font-size: .75rem; color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}

/* Progress bar */
.feat-progress-bar {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 0 0 20px 20px; overflow: hidden;
}
.feat-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #b44fff);
  border-radius: 3px;
  transition: width .3s ease;
  animation: progressGlow 2s ease infinite;
}
@keyframes progressGlow {
  0%,100% { filter: brightness(1); }
  50%      { filter: brightness(1.4); }
}

/* Auto-play indicator */
.feat-autoplay-dot {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; color: rgba(255,255,255,.3);
}
.feat-autoplay-dot::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse-feat 1.5s ease infinite;
}
@keyframes dot-pulse-feat {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.6); }
}

/* View all */
.features-view-all { text-align: center; margin-top: 40px; }

/* Responsive */
@media (max-width: 900px) {
  .feat-layout { grid-template-columns: 1fr; }
  /* Category pills: single scrollable row */
  .feat-cats {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding-bottom: 2px;
    justify-content: flex-start;
  }
  .feat-cats::-webkit-scrollbar { display: none; }
  .feat-cat-btn { flex-shrink: 0; }
  /* Tabs: single horizontal scrollable row */
  .feat-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    height: auto !important;
    max-height: none !important;
    position: static !important;
    gap: 6px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .feat-tabs::-webkit-scrollbar { display: none; }
  .feat-tab {
    flex-direction: row !important;
    flex-shrink: 0 !important;
    text-align: left !important;
    padding: 7px 12px !important;
    gap: 7px !important;
    border-radius: 50px !important;
    min-width: unset !important;
    border-left: none !important;
  }
  .feat-tab::before { display: none !important; }
  .feat-tab-icon { width: 26px !important; height: 26px !important; border-radius: 6px !important; }
  .feat-tab-icon img { width: 18px !important; height: 18px !important; }
  .feat-tab-label { font-size: .78rem !important; white-space: nowrap !important; }
  .feat-tab-arrow { display: none !important; }
  .feat-card-points { grid-template-columns: 1fr; }
  .feat-card-top { flex-direction: column; }
  .feat-panel-wrap {
    height: auto !important;
    min-height: 0 !important;
  }
  .feat-panel {
    position: static !important;
    inset: unset !important;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none !important;
    transition: opacity .25s ease;
  }
  .feat-panel.active {
    position: static !important;
    inset: unset !important;
    height: auto !important;
    opacity: 1;
    overflow: visible !important;
    pointer-events: all !important;
  }
}
@media (max-width: 560px) {
  .feat-card-top, .feat-card-body, .feat-card-footer { padding: 18px; }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — Redesigned
═══════════════════════════════════════════════════════ */
.testi-section {
  padding: 88px 0;
  background: linear-gradient(160deg, #f8faff 0%, #fff 40%, #f3f0ff 100%);
  position: relative; overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(218,231,255,.6) 0%, transparent 70%);
  pointer-events: none;
}
.testi-header { text-align: center; margin-bottom: 16px; position: relative; z-index: 1; }
.testi-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(251,82,122,.08); border: 1px solid rgba(251,82,122,.2);
  color: var(--accent-dark); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.testi-header h2 { margin-bottom: 10px; }
.testi-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; font-size: .95rem; }
.testi-rating-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 20px 0 48px;
}
.testi-big-stars { display: flex; gap: 3px; }
.testi-big-stars span { font-size: 1.1rem; color: #f59e0b; }
.testi-rating-text { font-size: .85rem; color: var(--text-muted); }
.testi-rating-text strong { color: var(--text); font-weight: 700; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px; padding: 24px 20px;
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.testi-card::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-card:hover {
  border-color: var(--purple);
  box-shadow: 0 16px 40px rgba(74,34,104,.1);
  transform: translateY(-4px);
}
.testi-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-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.stars { display: flex; gap: 2px; margin-top: 3px; }
.star { color: #f59e0b; font-size: .72rem; }
.star.empty { color: var(--border); }
.testi-text { font-size: .85rem; color: var(--text-muted); line-height: 1.75; }
.testi-actions { display: flex; gap: 12px; justify-content: center; margin-top: 44px; }

/* ═══════════════════════════════════════════════════════
   STEPS SECTION — Redesigned
═══════════════════════════════════════════════════════ */
.steps-section {
  padding: 88px 0;
  background: var(--purple-dark);
  position: relative; overflow: hidden;
}
.steps-section::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-wrap { position: relative; z-index: 1; }
.steps-header { text-align: center; margin-bottom: 64px; }
.steps-header h2 { color: #fff; margin-bottom: 10px; }
.steps-header p { color: rgba(255,255,255,.5); font-size: .95rem; max-width: 480px; margin: 0 auto; }
.steps-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
  border: 1px solid rgba(255,255,255,.08); border-radius: 24px;
  overflow: hidden;
}
.step-card {
  padding: 44px 32px;
  text-align: center; position: relative;
  transition: background .3s ease;
}
.step-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,.08); }
.step-card:hover { background: rgba(255,255,255,.04); }
/* Step number large bg */
.step-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-icon-ring {
  width: 100px; height: 100px; margin: 0 auto 28px;
  border-radius: 28px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.step-card:nth-child(1) .step-icon-ring { background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(167,139,250,.1)); border: 1px solid rgba(139,92,246,.3); }
.step-card:nth-child(2) .step-icon-ring { background: linear-gradient(135deg, rgba(251,82,122,.25), rgba(253,164,175,.1)); border: 1px solid rgba(251,82,122,.3); }
.step-card:nth-child(3) .step-icon-ring { background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(74,222,128,.08)); border: 1px solid rgba(34,197,94,.3); }
.step-icon-ring img { width: 62px; height: 62px; object-fit: contain; }
.step-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);
  animation: stepBadgePop .4s ease both;
}
@keyframes stepBadgePop {
  0%   { transform: scale(0) rotate(-20deg); }
  70%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}
.step-card h3 { color: #fff; margin-bottom: 12px; font-size: 1.1rem; }
.step-card p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; }
.step-arrow {
  display: none;
  position: absolute; top: 50%; right: -1px;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .9rem; z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.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; }

/* ═══════════════════════════════════════════════════════
   FOOTER — Redesigned with animated link dots
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--purple-dark);
  padding: 0;
  color: rgba(255,255,255,.75);
  position: relative;
  overflow: hidden;
}

/* Top accent bar */
.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; }
}

/* Subtle background pattern */
.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: tagline + newsletter strip ── */
.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 {}
.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; letter-spacing: .02em;
}
.footer-badge .badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  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 ── */
.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;
}

/* Disclaimer col */
.footer-disclaimer-text {
  font-size: .83rem; line-height: 1.75;
  color: rgba(255,255,255,.42); max-width: 280px;
  margin-bottom: 20px;
}

/* ── Animated link list ── */
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-link-item {
  position: relative;
  display: flex; align-items: center;
}

/* The animated dot */
.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 ── */
.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 hide bar */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
#google_translate_element { display: none !important; }

/* ═══════════════════════════════════════════════════════
   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; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-points { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .devices-grid { grid-template-columns: 1fr; }
  .device-card:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step-card:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; gap: 24px; }
  .feat-layout { grid-template-columns: 1fr; }
  /* feat-tabs handled by 900px block above */
  .nav-menu { display: none !important; }
  .nav-btn-wrap { display: none; }
  .hamburger { display: flex; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .who-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .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; }
  .section { padding: 48px 0; }
  .hero { padding: 48px 0; }
  .who-section,.devices-section,.testi-section,.steps-section { padding: 56px 0; }
  .promo-badge,.promo-right { display: none; }
  .promo-message { justify-content: flex-start; }
}
/* ═══════════════════════════════════════════════════════
   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%; }
}

/* Shimmer sweep */
.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%; }
}

/* Bottom glow line */
.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; }
}

/* Floating particles */
.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: 0.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: 0.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; }
}

/* Inner layout */
.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;
}

/* Left badge */
.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;
}

/* Center message */
.promo-message {
  display: flex; align-items: center; gap: 12px;
  flex: 1; justify-content: center; flex-wrap: wrap;
}
.promo-tag {
  background: var(--accent);
  color: #fff; font-size: .65rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 50px;
  animation: tagPulse 2.5s ease infinite;
  flex-shrink: 0;
}
@keyframes tagPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(251,82,122,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(251,82,122,0); }
}
.promo-text {
  font-size: .92rem; color: rgba(255,255,255,.88);
  font-weight: 400; letter-spacing: .01em;
}
.promo-discount {
  font-size: 1.25rem; font-weight: 900;
  font-family: var(--font-head);
  color: #fff; letter-spacing: -.01em;
  display: inline-block;
  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;
  margin: 0 3px;
}
@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);
  box-shadow: 0 5px 20px rgba(251,82,122,.55);
}
.promo-cta:hover svg { transform: translateX(3px); }

/* Right countdown */
.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;
  transition: transform .15s ease;
}
.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;
}

/* Close button */
.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); }

/* Hidden state */
.promo-bar.hidden {
  max-height: 0; overflow: hidden; border: none;
  transition: max-height .4s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .promo-badge, .promo-right { display: none; }
  .promo-message { justify-content: flex-start; }
}
@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; }
}

}
}




/* ════ 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;
}
