/* =========================================================
   OMINY — DESIGN SYSTEM
   Enhanced with scroll animations, parallax & micro-interactions
========================================================= */

:root {
  --bg: #090312;
  --bg-soft: #12071e;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f7ff;
  --muted: #b8bfd3;
  --purple: #a855f7;
  --violet: #7c3aed;
  --pink: #d946ef;
  --green: #22c55e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
  --header-h: 88px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 22%),
    linear-gradient(180deg, #080211 0%, #10051c 50%, #080211 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================================
   SCROLL PROGRESS BAR
========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--purple), var(--pink));
  z-index: 9998;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

/* =========================================================
   CURSOR GLOW
========================================================= */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  mix-blend-mode: screen;
}

@media (max-width: 980px) {
  .cursor-glow { display: none; }
}

/* =========================================================
   MODAL
========================================================= */

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 10, 0.84);
  backdrop-filter: blur(10px);
}

.welcome-card {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: linear-gradient(180deg, rgba(20, 8, 35, 0.95), rgba(11, 6, 22, 0.97));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: modalEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.welcome-image-wrap {
  min-height: 100%;
}

.welcome-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.welcome-card:hover .welcome-image {
  transform: scale(1.03);
}

.welcome-content {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.welcome-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(168, 85, 247, 0.22);
  color: #dfc4ff;
  font-size: 0.9rem;
  font-weight: 700;
  animation: badgePop 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.welcome-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.welcome-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.welcome-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.welcome-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.welcome-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: rgba(255,255,255,0.14);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 2, 8, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(2, 2, 8, 0.97);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.header-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent);
  animation: lineShimmer 3s ease-in-out infinite;
}

@keyframes lineShimmer {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  width: fit-content;
}

.logo-image {
  width: 220px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 18px rgba(91, 43, 214, 0.22));
}

.logo:hover .logo-image {
  transform: scale(1.03);
  filter: drop-shadow(0 0 28px rgba(124, 58, 237, 0.45));
}

@media (max-width: 640px) {
  .logo-image { width: 165px; }
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(91, 43, 214, 0.18), transparent 70%);
  box-shadow: 0 0 40px rgba(91, 43, 214, 0.35);
}

.logo-mark::before {
  content: "";
  width: 34px;
  height: 16px;
  border-top: 4px solid #5b2bd6;
  border-bottom: 4px solid #5b2bd6;
  border-radius: 999px;
  position: absolute;
}

.logo-orb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5b2bd6;
  box-shadow: 0 0 18px rgba(91, 43, 214, 0.9);
}

.logo-name {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

/* MENU DESKTOP */
.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.nav-desktop a {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-desktop a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

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

/* HEADER CTA */
.header-cta {
  justify-self: end;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6d28d9, #4c1d95);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.45);
}

.header-cta:hover::before {
  opacity: 1;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background: rgba(5, 5, 10, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile.active {
  display: flex;
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-mobile a:hover {
  color: #e0b8ff;
  padding-left: 6px;
}

.mobile-btn {
  margin-top: 10px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6d28d9, #4c1d95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media (max-width: 980px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }
  .header-inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 640px) {
  .logo-name { font-size: 1.6rem; }
  .logo-mark { width: 42px; height: 42px; }
  .header-inner { min-height: 78px; }
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              background 0.25s ease,
              border 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 45px rgba(168, 85, 247, 0.42);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(168, 85, 247, 0.35);
}

.block { width: 100%; }

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 50px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  margin-bottom: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: #e5d8ff;
  font-weight: 700;
  animation: fadeSlideUp 0.7s 0.1s both;
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  animation: fadeSlideUp 0.7s 0.2s both;
}

.hero-sub {
  margin-top: 22px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  animation: fadeSlideUp 0.7s 0.35s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: fadeSlideUp 0.7s 0.45s both;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  animation: fadeSlideUp 0.7s 0.55s both;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.hero-trust span:hover {
  color: #e0b8ff;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.highlight {
  position: relative;
  display: inline-block;
  color: #f0d3ff;
}

.underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
}

.underline path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 1s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.hero-image-wrap {
  position: relative;
  animation: fadeSlideUp 0.9s 0.3s both;
}

.hero-image-glow {
  position: absolute;
  inset: 10% 10% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(168,85,247,0.28), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  will-change: transform;
  transition: box-shadow 0.4s ease;
}

.hero-img:hover {
  box-shadow: 0 30px 80px rgba(168, 85, 247, 0.2);
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 90px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03));
}

.section-head {
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ─── Eyebrow with animated line ─── */
.eyebrow {
  margin-bottom: 12px;
  color: #d8aaff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.eyebrow-anim::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

.section-head.center .eyebrow-anim::before { display: none; }

/* ─── Word reveal headings ─── */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotate(2deg);
  transition: none;
}

.word-revealed {
  animation: wordReveal 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(20px) rotate(2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.section-head h2,
.final-cta-inner h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.text-purple { color: #dca9ff; }

.lead {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.8;
  font-size: 1rem;
}

/* =========================================================
   GRIDS
========================================================= */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.narrow {
  max-width: 980px;
  margin: 0 auto;
}

/* =========================================================
   CARDS
========================================================= */

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

/* Card shine overlay (added by JS) */
.card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  z-index: 3;
  transition: background 0.15s ease;
}

.card-body {
  padding: 26px;
}

.card-top-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  transition: transform 0.5s ease;
}

.card:hover .card-top-image {
  transform: scale(1.04);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(168,85,247,0.22), rgba(217,70,239,0.14));
  border: 1px solid rgba(255,255,255,0.1);
  color: #efd9ff;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}

.card:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.index-num,
.big-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: rgba(255,255,255,0.18);
}

.index-num { font-size: 1.4rem; }
.big-num   { font-size: 2rem; }

.card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
  line-height: 1.75;
}

.checks {
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.checks li {
  position: relative;
  padding-left: 28px;
  color: #eef0f7;
  transition: padding-left 0.2s ease;
}

.checks li:hover {
  padding-left: 34px;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c084fc;
  font-weight: 800;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8aaff;
  font-weight: 800;
  transition: gap 0.25s ease, color 0.25s ease;
}

.link-cta:hover {
  gap: 14px;
  color: #f0d0ff;
}

/* SERVICE CARDS */
.service {
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1),
              border-color 0.3s ease;
}

.step:hover,
.benefit:hover,
.plan:hover,
.review:hover {
  border-color: rgba(168,85,247,0.35);
}

.service-preview {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #080211;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-body {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.card-body .link-cta {
  margin-top: auto;
}

/* STEP CARDS */
.step {
  padding: 26px;
  transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

.step:hover {
  background: rgba(168, 85, 247, 0.06);
}

.step .big-num {
  transition: color 0.3s ease, transform 0.3s ease;
}

.step:hover .big-num {
  color: rgba(168, 85, 247, 0.5);
  transform: scale(1.1);
}

/* =========================================================
   BENEFITS
========================================================= */

.benefits-showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.benefits-image-wrap {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.benefits-image {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  transition: transform 0.6s ease;
}

.benefits-image-wrap:hover .benefits-image {
  transform: scale(1.04);
}

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit {
  padding: 26px;
}

.benefit.wide {
  grid-column: span 2;
}

/* =========================================================
   REVIEWS / MARQUEE
========================================================= */

.marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.review {
  width: 340px;
  padding: 26px;
  flex: 0 0 auto;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.35);
}

.quote-ic {
  color: #d8aaff;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.review:hover .quote-ic {
  transform: scale(1.2) rotate(-5deg);
}

.stars {
  letter-spacing: 0.18em;
  color: #ffdb6e;
  margin-bottom: 14px;
}

.review p {
  color: #eef0f7;
  line-height: 1.75;
  min-height: 110px;
}

.review-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.review-who img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.review:hover .review-who img {
  transform: scale(1.1);
}

.review-who small { color: var(--muted); }

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.fade-l {
  left: 0;
  background: linear-gradient(90deg, #0d0518, transparent);
}

.fade-r {
  right: 0;
  background: linear-gradient(-90deg, #0d0518, transparent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   PLANS
========================================================= */

.plan {
  padding: 28px;
  position: relative;
}

.highlighted {
  border-color: rgba(168,85,247,0.36);
  box-shadow: 0 18px 50px rgba(168,85,247,0.16);
  background: linear-gradient(135deg, rgba(168,85,247,0.06), rgba(217,70,239,0.04));
}

.badge-top {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(168,85,247,0.18);
  color: #efd9ff;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid rgba(168,85,247,0.25);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
}

.price {
  margin: 10px 0 4px;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.price-hint { color: var(--muted); }

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(19,8,33,0.92), rgba(14,7,25,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.final-cta:hover {
  box-shadow: 0 30px 80px rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
}

.final-cta-media {
  overflow: hidden;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.final-cta:hover .final-cta-media img {
  transform: scale(1.05);
}

.final-cta-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 40px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 3, 10, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h4 {
  margin-bottom: 14px;
  font-family: "Outfit", sans-serif;
}

.footer-grid ul { display: grid; gap: 10px; }

.footer-grid li,
.footer-grid a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-grid a:hover { color: #e6c1ff; }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              border-color 0.3s ease;
}

.socials a:hover {
  transform: translateY(-4px) scale(1.1);
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.35);
}

/* Logo footer — classes próprias, sem herdar nada do header .logo */
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
}

.footer-logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(91, 43, 214, 0.2));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  filter: drop-shadow(0 0 24px rgba(124, 58, 237, 0.4));
  transform: scale(1.02);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================================
   FAB WHATSAPP
========================================================= */

.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1500;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #10b981);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 35px rgba(16, 185, 129, 0.3);
  font-weight: 800;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease,
              box-shadow 0.3s ease;
}

.fab-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 45px rgba(16, 185, 129, 0.45);
}

.fab-whatsapp.fab-hidden {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}

/* =========================================================
   VISUAL EFFECTS
========================================================= */

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.35;
  pointer-events: none;
  will-change: transform;
}

.orb-purple {
  width: 220px;
  height: 220px;
  top: 70px;
  left: -40px;
  background: rgba(168,85,247,0.8);
}

.orb-violet {
  width: 260px;
  height: 260px;
  top: 160px;
  right: -60px;
  background: rgba(124,58,237,0.65);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent 85%);
  pointer-events: none;
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Alternate reveal directions for variety */
.grid .reveal:nth-child(even) {
  transform: translateY(32px) translateX(8px);
}

.grid .reveal.visible:nth-child(even) {
  transform: translateY(0) translateX(0);
}

/* =========================================================
   PULSE RING
========================================================= */

.pulse-ring {
  position: relative;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.3);
  animation: pulse 1.8s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .hero-inner,
  .benefits-showcase,
  .final-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-img,
  .benefits-image,
  .final-cta-media img {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .grid-2, .grid-3, .bento { grid-template-columns: 1fr; }
  .benefit.wide { grid-column: span 1; }
  .welcome-card { grid-template-columns: 1fr; }
  .welcome-image-wrap { max-height: 260px; }
}

@media (max-width: 720px) {
  :root { --header-h: 78px; }

  .section { padding: 70px 0; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 2.4rem; }

  .hero-sub,
  .lead,
  .muted { font-size: 0.98rem; }

  .card-body,
  .plan,
  .benefit,
  .review,
  .final-cta-inner { padding: 22px; }

  .welcome-content { padding: 26px 22px; }
  .welcome-actions, .hero-ctas { flex-direction: column; }

  .btn { width: 100%; }

  /* FAB: mantém fixo no canto inferior direito em mobile */
  .fab-whatsapp {
    right: 14px;
    bottom: 14px;
    left: auto;
    width: auto;
    min-width: unset;
    padding: 0 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-preview { height: 220px; }
  .card-body { min-height: auto; }
}