/*
 Theme Name:   Novoo Child
 Theme URI:    https://novoo.io
 Description:  Novoo Solutions - Custom Blocksy Child Theme
 Author:       Novoo Solutions
 Author URI:   https://novoo.io
 Template:     blocksy
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  novoo-child
*/

/* ============================================================
   IMPORT PARENT THEME
   ============================================================ */
@import url('../blocksy/style.css');

/* ============================================================
   GOOGLE FONTS — ALMARAI
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --novoo-purple:   #351f59;
  --novoo-pink:     #db3866;
  --novoo-magenta:  #e70d88;
  --novoo-orange:   #f49b31;
  --novoo-bg:       #f0e5f0;
  --novoo-white:    #ffffff;
  --novoo-gray:     #f8f7fa;
  --novoo-text:     #1a1a2e;
  --novoo-muted:    #6b7280;
  --novoo-radius:   16px;
  --novoo-shadow:   0 8px 32px rgba(53, 31, 89, 0.10);
  --novoo-shadow-lg:0 20px 60px rgba(53, 31, 89, 0.15);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Almarai', sans-serif !important;
  background: var(--novoo-white);
  color: var(--novoo-text);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
p, a, span, li, button, input, textarea, select, label {
  font-family: 'Almarai', sans-serif !important;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ============================================================
   BLOCKSY OVERRIDES
   ============================================================ */
.ct-container,
.ct-container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Hide default Blocksy header and use our custom nav */
#wpadminbar { direction: ltr; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.novoo-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  border-bottom: 1px solid rgba(53, 31, 89, 0.08);
  box-shadow: 0 2px 20px rgba(53, 31, 89, 0.06);
}

.novoo-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.novoo-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.novoo-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.novoo-nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--novoo-purple);
  transition: all 0.2s ease;
}

.novoo-nav-links a:hover {
  background: var(--novoo-bg);
  color: var(--novoo-magenta);
}

.novoo-nav-links .nav-cta a {
  background: var(--novoo-purple);
  color: var(--novoo-white) !important;
  padding: 10px 22px;
  border-radius: 12px;
}

.novoo-nav-links .nav-cta a:hover {
  background: var(--novoo-magenta);
  color: var(--novoo-white) !important;
}

/* Mobile hamburger */
.novoo-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
}

.novoo-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--novoo-purple);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.novoo-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  background: #fff;
  border-bottom: 1px solid rgba(53,31,89,0.08);
  padding: 16px 5%;
  z-index: 9998;
  box-shadow: 0 8px 32px rgba(53,31,89,0.1);
}

.novoo-mobile-menu.open {
  display: block;
}

.novoo-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.novoo-mobile-menu ul a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--novoo-purple);
  font-size: 0.95rem;
}

.novoo-mobile-menu ul a:hover {
  background: var(--novoo-bg);
  color: var(--novoo-magenta);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.novoo-hero {
  min-height: 100vh;
  background: var(--novoo-white);
  display: flex;
  align-items: center;
  padding: 110px 5% 70px;
  position: relative;
  overflow: hidden;
}

.novoo-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.novoo-hero-bg-circle1 {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(231,13,136,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.novoo-hero-bg-circle2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(53,31,89,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.novoo-hero-bg-wave {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  opacity: 0.04;
}

.novoo-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.novoo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(53,31,89,0.06);
  border: 1px solid rgba(53,31,89,0.12);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--novoo-purple);
  margin-bottom: 24px;
}

.novoo-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--novoo-magenta);
  border-radius: 50%;
  animation: novooPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes novooPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.novoo-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--novoo-purple);
  line-height: 1.35;
  margin-bottom: 20px;
}

.novoo-hero h1 .highlight {
  background: linear-gradient(135deg, var(--novoo-magenta), var(--novoo-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.novoo-hero-sub {
  font-size: 1rem;
  color: var(--novoo-muted);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 520px;
}

.novoo-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.novoo-btn-primary {
  background: var(--novoo-purple);
  color: var(--novoo-white);
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Almarai', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(53,31,89,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.novoo-btn-primary:hover {
  background: var(--novoo-magenta);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(231,13,136,0.3);
  color: var(--novoo-white);
}

.novoo-btn-wa {
  background: var(--novoo-white);
  color: var(--novoo-purple);
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Almarai', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(53,31,89,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.novoo-btn-wa:hover {
  border-color: var(--novoo-purple);
  background: var(--novoo-bg);
  transform: translateY(-2px);
  color: var(--novoo-purple);
}

.novoo-btn-orange {
  background: linear-gradient(135deg, var(--novoo-magenta), var(--novoo-orange));
  color: var(--novoo-white);
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Almarai', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(231,13,136,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.novoo-btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(231,13,136,0.35);
  color: var(--novoo-white);
}

/* Hero Visual */
.novoo-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.novoo-phone {
  width: 220px;
  height: 430px;
  background: linear-gradient(160deg, #1a1a2e, var(--novoo-purple));
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(53,31,89,0.4), 0 0 0 8px rgba(53,31,89,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: novooFloat 4s ease-in-out infinite;
}

@keyframes novooFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.novoo-phone-screen {
  width: 184px;
  height: 368px;
  background: #fff;
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  direction: rtl;
}

.novoo-portal-logo {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--novoo-purple), var(--novoo-magenta));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content:center;
  overflow: hidden;
}

.novoo-portal-logo img {
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1);
}

.novoo-portal-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--novoo-purple);
  text-align: center;
}

.novoo-portal-sub {
  font-size: 0.58rem;
  color: var(--novoo-muted);
  text-align: center;
  line-height: 1.4;
}

.novoo-portal-field {
  width: 100%;
  height: 28px;
  background: var(--novoo-bg);
  border-radius: 8px;
  border: 1px solid rgba(53,31,89,0.08);
}

.novoo-portal-btn {
  width: 100%;
  height: 32px;
  background: linear-gradient(135deg, var(--novoo-purple), var(--novoo-magenta));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.novoo-portal-btn span {
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
}

.novoo-portal-divider {
  width: 80%;
  height: 1px;
  background: rgba(0,0,0,0.06);
}

.novoo-portal-or {
  font-size: 0.55rem;
  color: var(--novoo-muted);
}

.novoo-portal-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 28px;
  background: #25d366;
  border-radius: 8px;
  justify-content: center;
}

.novoo-portal-wa span {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}

/* Floating nodes */
.novoo-float-node {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(53,31,89,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}

.novoo-fn1 { top: 20px;  right: -10px; animation: novooFloat2 5s ease-in-out infinite 0.3s; }
.novoo-fn2 { bottom: 50px; left: -20px; animation: novooFloat2 5s ease-in-out infinite 0.9s; }
.novoo-fn3 { top: 180px; right: -40px; animation: novooFloat2 5s ease-in-out infinite 1.4s; }

@keyframes novooFloat2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.novoo-fn-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.novoo-fn-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--novoo-purple);
  white-space: nowrap;
}

.novoo-fn-sub {
  font-size: 0.6rem;
  color: var(--novoo-muted);
  white-space: nowrap;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.novoo-section {
  padding: 90px 5%;
}

.novoo-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.novoo-section-header {
  margin-bottom: 56px;
}

.novoo-section-header.centered {
  text-align: center;
}

.novoo-section-header.centered .novoo-section-sub {
  margin: 0 auto;
}

.novoo-tag {
  display: inline-block;
  background: rgba(53,31,89,0.07);
  color: var(--novoo-purple);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.novoo-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 14px;
  line-height: 1.3;
}

.novoo-section-sub {
  font-size: 1rem;
  color: var(--novoo-muted);
  line-height: 1.8;
  max-width: 620px;
}

/* ============================================================
   WHY US — FEATURE CARDS
   ============================================================ */
.novoo-why {
  background: var(--novoo-gray);
}

.novoo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.novoo-feat-card {
  background: var(--novoo-white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(53,31,89,0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.novoo-feat-card.novoo-visible {
  opacity: 1;
  transform: translateY(0);
}

.novoo-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(var(--novoo-magenta), var(--novoo-purple));
  transition: height 0.35s ease;
}

.novoo-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--novoo-shadow-lg);
  border-color: rgba(53,31,89,0.14);
}

.novoo-feat-card:hover::before {
  height: 100%;
}

.novoo-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.novoo-feat-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 8px;
}

.novoo-feat-card p {
  font-size: 0.875rem;
  color: var(--novoo-muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.novoo-features-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 56px;
}

.novoo-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.novoo-feat-row.reverse {
  direction: ltr;
}

.novoo-feat-row.reverse .novoo-feat-text {
  direction: rtl;
}

.novoo-feat-visual {
  background: linear-gradient(135deg, rgba(53,31,89,0.04), rgba(231,13,136,0.04));
  border-radius: 24px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(53,31,89,0.07);
  overflow: hidden;
  position: relative;
}

.novoo-feat-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(53,31,89,0.07);
  line-height: 1;
  margin-bottom: 4px;
}

.novoo-feat-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 14px;
}

.novoo-feat-text p {
  font-size: 0.95rem;
  color: var(--novoo-muted);
  line-height: 1.85;
  margin: 0 0 16px;
}

.novoo-feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(53,31,89,0.06);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--novoo-purple);
}

.novoo-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--novoo-magenta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Dashboard mockup inside feat-visual */
.novoo-dash-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  width: 85%;
  box-shadow: 0 4px 20px rgba(53,31,89,0.1);
}

.novoo-dash-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 12px;
  direction: rtl;
}

.novoo-dash-bar {
  height: 8px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--novoo-purple), var(--novoo-magenta));
  margin-bottom: 8px;
  animation: novooDashGrow 2s ease-in-out infinite alternate;
}

@keyframes novooDashGrow {
  0%   { opacity: 0.4; transform: scaleX(0.85); transform-origin: right; }
  100% { opacity: 1;   transform: scaleX(1); }
}

.novoo-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 85%;
}

.novoo-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(53,31,89,0.08);
  text-align: center;
}

.novoo-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
}

.novoo-stat-label {
  font-size: 0.65rem;
  color: var(--novoo-muted);
  margin-top: 2px;
}

/* WhatsApp visual mockup */
.novoo-wa-mockup {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: 85%;
  box-shadow: 0 4px 20px rgba(53,31,89,0.1);
  direction: rtl;
}

.novoo-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 10px;
}

.novoo-wa-avatar {
  width: 32px;
  height: 32px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.novoo-wa-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--novoo-purple);
}

.novoo-wa-status {
  font-size: 0.58rem;
  color: #25d366;
}

.novoo-wa-bubble {
  background: #e7ffd8;
  border-radius: 12px 12px 4px 12px;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 0.65rem;
  color: var(--novoo-text);
  line-height: 1.5;
}

.novoo-wa-bubble.sent {
  background: var(--novoo-bg);
  border-radius: 12px 12px 12px 4px;
  margin-right: 20%;
}

.novoo-wa-tag {
  display: inline-block;
  background: rgba(37,211,102,0.1);
  color: #1a9e4d;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.novoo-industries {
  background: var(--novoo-gray);
}

.novoo-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.novoo-ind-card {
  background: var(--novoo-white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(53,31,89,0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.novoo-ind-card.novoo-visible {
  opacity: 1;
  transform: translateY(0);
}

.novoo-ind-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--novoo-purple), var(--novoo-magenta));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.novoo-ind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--novoo-shadow-lg);
}

.novoo-ind-card:hover::after {
  transform: scaleX(1);
}

.novoo-ind-emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}

.novoo-ind-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 8px;
}

.novoo-ind-card p {
  font-size: 0.875rem;
  color: var(--novoo-muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.novoo-steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.novoo-steps-wrap::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--novoo-purple), var(--novoo-magenta), var(--novoo-pink), var(--novoo-orange));
  z-index: 0;
}

.novoo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.novoo-step.novoo-visible {
  opacity: 1;
  transform: translateY(0);
}

.novoo-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--novoo-white);
  border: 3px solid var(--novoo-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(53,31,89,0.12);
  transition: all 0.3s ease;
}

.novoo-step:nth-child(2) .novoo-step-num { border-color: var(--novoo-magenta); color: var(--novoo-magenta); }
.novoo-step:nth-child(3) .novoo-step-num { border-color: var(--novoo-pink);    color: var(--novoo-pink); }
.novoo-step:nth-child(4) .novoo-step-num { border-color: var(--novoo-orange);  color: var(--novoo-orange); }

.novoo-step:hover .novoo-step-num {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(53,31,89,0.2);
}

.novoo-step h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 8px;
  padding: 0 8px;
}

.novoo-step p {
  font-size: 0.82rem;
  color: var(--novoo-muted);
  padding: 0 6px;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.novoo-pricing {
  background: var(--novoo-gray);
}

.novoo-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 48px auto 0;
}

.novoo-price-card {
  background: var(--novoo-white);
  border-radius: 24px;
  padding: 38px;
  border: 1px solid rgba(53,31,89,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.novoo-price-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--novoo-shadow-lg);
}

.novoo-price-card.featured {
  background: linear-gradient(145deg, var(--novoo-purple), #4a2b7a);
  border: none;
  transform: scale(1.03);
  box-shadow: 0 24px 70px rgba(53,31,89,0.3);
}

.novoo-rec-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--novoo-magenta), var(--novoo-orange));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.novoo-price-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--novoo-purple);
  margin-bottom: 6px;
}

.featured .novoo-price-name { color: #fff; }

.novoo-price-desc {
  font-size: 0.875rem;
  color: var(--novoo-muted);
  margin-bottom: 24px;
}

.featured .novoo-price-desc { color: rgba(255,255,255,0.7); }

.novoo-price-divider {
  height: 1px;
  background: rgba(53,31,89,0.08);
  margin-bottom: 24px;
}

.featured .novoo-price-divider { background: rgba(255,255,255,0.15); }

.novoo-price-features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.novoo-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--novoo-text);
  line-height: 1.5;
}

.featured .novoo-price-features li { color: rgba(255,255,255,0.9); }

.novoo-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(53,31,89,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--novoo-purple);
  font-weight: 800;
  margin-top: 2px;
}

.featured .novoo-check {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.novoo-btn-price {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Almarai', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  text-decoration: none;
}

.novoo-btn-price-light {
  background: var(--novoo-bg);
  color: var(--novoo-purple);
}

.novoo-btn-price-light:hover {
  background: var(--novoo-purple);
  color: #fff;
}

.novoo-btn-price-gradient {
  background: linear-gradient(135deg, var(--novoo-magenta), var(--novoo-orange));
  color: #fff;
  box-shadow: 0 8px 24px rgba(231,13,136,0.3);
}

.novoo-btn-price-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(231,13,136,0.4);
  color: #fff;
}

/* ============================================================
   FAQ
   ============================================================ */
.novoo-faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.novoo-faq-item {
  background: var(--novoo-white);
  border: 1px solid rgba(53,31,89,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.novoo-faq-item.open {
  border-color: rgba(53,31,89,0.18);
  box-shadow: 0 8px 28px rgba(53,31,89,0.08);
}

.novoo-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.novoo-faq-q-text {
  font-weight: 700;
  color: var(--novoo-purple);
  font-size: 0.95rem;
  flex: 1;
}

.novoo-faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--novoo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--novoo-purple);
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.novoo-faq-item.open .novoo-faq-icon {
  background: var(--novoo-purple);
  color: #fff;
  transform: rotate(45deg);
}

.novoo-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.novoo-faq-item.open .novoo-faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.novoo-faq-a p {
  font-size: 0.9rem;
  color: var(--novoo-muted);
  line-height: 1.85;
  border-top: 1px solid rgba(53,31,89,0.07);
  padding-top: 16px;
  margin: 0;
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.novoo-final-cta {
  background: linear-gradient(135deg, var(--novoo-purple) 0%, #4a2b7a 50%, #2d1547 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.novoo-cta-bg-c1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231,13,136,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.novoo-cta-bg-c2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,155,49,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.novoo-final-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.4;
}

.novoo-final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.novoo-footer {
  background: #0f0a1a;
  padding: 64px 5% 32px;
}

.novoo-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.novoo-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.novoo-footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.novoo-footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  margin-top: 14px;
  line-height: 1.8;
  max-width: 260px;
}

.novoo-footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.novoo-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.novoo-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  transition: color 0.2s ease;
}

.novoo-footer-links a:hover {
  color: var(--novoo-magenta);
}

.novoo-footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.novoo-soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  color: rgba(255,255,255,0.6);
}

.novoo-soc-btn:hover {
  background: var(--novoo-magenta);
  color: #fff;
  transform: translateY(-2px);
}

.novoo-soc-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.novoo-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.novoo-footer-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}

.novoo-footer-wa svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.novoo-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 10px;
}

.novoo-footer-contact-item a {
  color: rgba(255,255,255,0.52);
  transition: color 0.2s ease;
}

.novoo-footer-contact-item a:hover {
  color: var(--novoo-magenta);
}

.novoo-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.novoo-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

.novoo-footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.novoo-footer-bottom a:hover {
  color: var(--novoo-magenta);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.novoo-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.novoo-fade-up.novoo-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid children */
.novoo-feat-card:nth-child(1),
.novoo-ind-card:nth-child(1),
.novoo-step:nth-child(1) { transition-delay: 0s; }
.novoo-feat-card:nth-child(2),
.novoo-ind-card:nth-child(2),
.novoo-step:nth-child(2) { transition-delay: 0.08s; }
.novoo-feat-card:nth-child(3),
.novoo-ind-card:nth-child(3),
.novoo-step:nth-child(3) { transition-delay: 0.16s; }
.novoo-feat-card:nth-child(4),
.novoo-ind-card:nth-child(4),
.novoo-step:nth-child(4) { transition-delay: 0.24s; }
.novoo-feat-card:nth-child(5),
.novoo-ind-card:nth-child(5) { transition-delay: 0.32s; }
.novoo-feat-card:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .novoo-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .novoo-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .novoo-hero-inner { grid-template-columns: 1fr; }
  .novoo-hero-visual { display: none; }
  .novoo-feat-row,
  .novoo-pricing-grid { grid-template-columns: 1fr; }
  .novoo-feat-row.reverse { direction: rtl; }
  .novoo-price-card.featured { transform: scale(1); }
  .novoo-steps-wrap { grid-template-columns: repeat(2, 1fr); }
  .novoo-steps-wrap::before { display: none; }
  .novoo-ind-grid { grid-template-columns: repeat(2, 1fr); }
  .novoo-nav-links { display: none; }
  .novoo-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .novoo-cards-grid,
  .novoo-ind-grid,
  .novoo-steps-wrap { grid-template-columns: 1fr; }
  .novoo-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .novoo-section { padding: 64px 5%; }
  .novoo-hero { padding: 100px 5% 60px; }
}
