/*
Theme Name: EverSolveds Elite
Theme URI: https://eversolveds.com
Author: Muhammad Ali
Author URI: https://eversolveds.com/ceo
Description: A high-performance, AI-driven marketing agency theme with fully functional calculators, multi-step mentorship survey, AOS animations, and pixel-perfect design ported from React/Vite.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eversolveds
Tags: ai, marketing, seo, agency, dark-mode, high-performance, custom-background, custom-logo, threaded-comments
*/

/* =============================================
   BASE RESET & ROOT VARIABLES
   ============================================= */
:root {
  --brand-royal: #4f46e5;
  --brand-deep: #3730a3;
  --brand-soft: #a5b4fc;
  --brand-purple: #7c3aed;
  --brand-dark: #0f0f1a;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: #171717;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.font-display { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* =============================================
   UTILITY CLASSES (Tailwind-equivalent)
   ============================================= */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-royal) 0%, var(--brand-purple) 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple-gradient {
  background: linear-gradient(135deg, var(--brand-royal) 0%, var(--brand-purple) 100%);
}

.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
}

.premium-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.premium-card:hover {
  box-shadow: 0 8px 40px rgba(79,70,229,0.12);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 6rem 1.5rem; }
.section-padding-sm { padding: 4rem 1.5rem; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes pulseSlow {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-marquee { animation: marquee 30s linear infinite; display: flex; white-space: nowrap; }
.animate-bounce-slow { animation: bounceSlow 3s ease-in-out infinite; }
.animate-pulse { animation: pulseSlow 4s ease-in-out infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-spin-slow { animation: spinSlow 20s linear infinite; }
.animate-fade-in-up { animation: fadeInUp 0.7s ease-out forwards; }

/* AOS overrides (will be handled by AOS.js) */
[data-aos] { opacity: 0; }
[data-aos].aos-animate { opacity: 1; }

/* =============================================
   TOP ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--brand-royal);
  padding: 0.6rem 0;
  overflow: hidden;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.announcement-bar .marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.announcement-bar .review-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 3rem;
}

.announcement-bar .stars { display: flex; gap: 2px; }
.announcement-bar .star-icon { color: #fbbf24; font-size: 11px; }
.announcement-bar .review-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.announcement-bar .review-author { color: var(--brand-soft); }

/* =============================================
   NAVBAR
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.main-nav {
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e5e5;
}

.main-nav.top {
  background: transparent;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--brand-royal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3);
  transition: transform 0.3s;
}
.nav-logo-icon:hover { transform: rotate(12deg); }
.nav-logo-icon svg { color: white; width: 22px; height: 22px; }

.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--neutral-900);
}

.nav-award-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-500);
}

.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-600);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 4px;
  padding: 0.5rem 0;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--brand-royal); }

.nav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 1.5rem;
  min-width: 600px;
  display: none;
  z-index: 100;
}
.nav-dropdown.reviews-dropdown { min-width: 380px; left: auto; right: 0; }
.nav-link-wrapper:hover .nav-dropdown { display: grid; }
.nav-link-wrapper.has-services-dd:hover .nav-dropdown { grid-template-columns: 1fr 1fr; gap: 2rem; }

.dropdown-category h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.dropdown-category a {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.dropdown-category a:hover { color: var(--brand-royal); }

.nav-cta {
  background: #dc2626;
  color: white !important;
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}
.nav-cta:hover { background: #b91c1c; transform: scale(1.03); }

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-900);
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 200;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.03em;
  display: block;
  padding: 0.5rem 0;
}

.mobile-subnav {
  margin-top: 1rem;
  margin-left: 1rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--neutral-100);
  display: none;
}

.mobile-subnav.open { display: block; }

.mobile-subnav-category {
  font-size: 10px;
  font-weight: 700;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.mobile-subnav a {
  display: block;
  font-size: 1.1rem;
  color: var(--neutral-600);
  padding: 0.25rem 0;
}

.mobile-cta-btn {
  display: block;
  width: 100%;
  background: #dc2626;
  color: white;
  text-align: center;
  padding: 1.25rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: auto;
  box-shadow: 0 8px 24px rgba(220,38,38,0.3);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(79,70,229,0.05);
  border: 1px solid rgba(79,70,229,0.1);
  margin-bottom: 2rem;
}
.hero-badge svg { color: var(--brand-royal); width: 16px; height: 16px; }
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-royal);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--neutral-900);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin-bottom: 3rem;
  max-width: 32rem;
  line-height: 1.7;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -12px;
}
.trust-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.trust-stars svg { color: #fbbf24; fill: #fbbf24; width: 14px; height: 14px; }
.trust-text { font-size: 0.875rem; font-weight: 700; color: var(--neutral-900); }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #dc2626; color: white;
  padding: 1.1rem 2.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(220,38,38,0.3);
}
.btn-primary:hover { background: #b91c1c; transform: scale(1.03); }
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--neutral-900);
  padding: 1.1rem 2.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1.1rem;
  border: 1px solid var(--neutral-200);
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn-secondary:hover { background: var(--neutral-50); }

.btn-royal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand-royal); color: white;
  padding: 1rem 2rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3);
}
.btn-royal:hover { background: var(--brand-deep); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 1rem 2rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* Hero Image */
.hero-image-wrap {
  position: relative;
}

.hero-img-frame {
  border-radius: 2.5rem;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
  position: relative; z-index: 10;
}
.hero-img-frame img { width: 100%; height: auto; display: block; }

.hero-stat-card {
  position: absolute;
  bottom: -2.5rem; left: -2.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 20;
}
.hero-stat-card .stat-num {
  font-size: 2.5rem; font-weight: 800;
  color: var(--brand-royal); display: block; margin-bottom: 4px;
}
.hero-stat-card .stat-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--neutral-500);
}

.hero-review-card {
  position: absolute;
  top: -2.5rem; right: -2.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 280px; z-index: 20;
  display: none;
}
@media (min-width: 768px) { .hero-review-card { display: block; } }

.hero-review-card .reviewer {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.hero-review-card img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(79,70,229,0.2); }
.hero-review-card .reviewer-name { font-weight: 700; font-size: 0.875rem; color: var(--neutral-900); }
.hero-review-card .reviewer-stars { display: flex; gap: 2px; }
.hero-review-card .reviewer-stars svg { width: 10px; height: 10px; color: #fbbf24; fill: #fbbf24; }
.hero-review-card .review-text { font-size: 12px; color: var(--neutral-600); font-style: italic; line-height: 1.6; }

/* Background Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.bg-orb-1 {
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: rgba(79,70,229,0.15);
  animation: pulseSlow 20s ease-in-out infinite;
}
.bg-orb-2 {
  bottom: 0; left: 0;
  width: 500px; height: 500px;
  background: rgba(239,68,68,0.08);
  animation: pulseSlow 25s ease-in-out infinite;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--neutral-900);
  padding: 3rem 1.5rem;
}
.stats-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  display: block; font-size: 2.5rem; font-weight: 800;
  color: var(--brand-soft); letter-spacing: -0.03em;
}
.stat-item .stat-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-top: 4px; display: block;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header .section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: rgba(79,70,229,0.05);
  border: 1px solid rgba(79,70,229,0.1);
  margin-bottom: 1.5rem;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-royal);
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.section-header p { font-size: 1.1rem; color: var(--neutral-600); max-width: 40rem; margin: 0 auto; }

/* =============================================
   BRANDS STRIP
   ============================================= */
.brands-section { padding: 5rem 0; background: linear-gradient(to bottom, white, var(--neutral-50)); overflow: hidden; }
.brands-label { text-align: center; margin-bottom: 3rem; font-size: 1rem; font-style: italic; color: var(--neutral-500); letter-spacing: 0.05em; }

.brands-marquee { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.brand-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0 3rem; font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.03em; opacity: 0.35; transition: opacity 0.3s; cursor: default;
}
.brand-item:hover { opacity: 1; }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-section { padding: 6rem 1.5rem; background: white; }
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; max-width: 1280px; margin: 0 auto;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: white;
  border: 1px solid var(--neutral-100);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-royal), var(--brand-purple));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(79,70,229,0.12); border-color: rgba(79,70,229,0.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(79,70,229,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background 0.3s;
}
.service-icon svg { color: var(--brand-royal); width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--brand-royal); }
.service-card:hover .service-icon svg { color: white; }

.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--neutral-900); }
.service-card p { font-size: 0.925rem; color: var(--neutral-500); line-height: 1.7; margin-bottom: 1.5rem; }
.service-card .service-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 700; color: var(--brand-royal);
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 0.75rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 6rem 1.5rem; background: var(--neutral-50); }
.testimonials-grid {
  columns: 1; gap: 1.5rem;
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px) { .testimonials-grid { columns: 2; } }
@media (min-width: 1024px) { .testimonials-grid { columns: 3; } }

.testimonial-card {
  break-inside: avoid;
  background: white; border: 1px solid var(--neutral-100);
  border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s; margin-bottom: 1.5rem;
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(79,70,229,0.1); }

.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testimonial-avatar { position: relative; }
.testimonial-avatar img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(79,70,229,0.1); }
.testimonial-avatar .verified-badge {
  position: absolute; bottom: -4px; right: -4px;
  background: var(--brand-royal); color: white;
  border-radius: 50%; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.testimonial-avatar .verified-badge svg { width: 10px; height: 10px; fill: currentColor; }

.testimonial-meta h3 { font-size: 1rem; font-weight: 700; color: var(--neutral-900); }
.testimonial-meta p { font-size: 12px; color: var(--neutral-500); font-weight: 500; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 14px; height: 14px; color: #fbbf24; fill: #fbbf24; }
.testimonial-text { font-size: 0.925rem; color: var(--neutral-600); font-style: italic; line-height: 1.7; }
.testimonial-footer {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-50);
  display: flex; justify-content: space-between; align-items: center;
}
.testimonial-verified { display: flex; align-items: center; gap: 0.5rem; color: var(--brand-royal); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.testimonial-date { font-size: 10px; color: var(--neutral-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { padding: 6rem 1.5rem; background: var(--neutral-50); }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: white; border: 1px solid var(--neutral-100);
  border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%; padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 1.05rem; color: var(--neutral-900);
  background: none; cursor: pointer; text-align: left;
  gap: 1rem;
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%; background: rgba(79,70,229,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.3s;
}
.faq-icon svg { color: var(--brand-royal); width: 18px; height: 18px; }
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--brand-royal); }
.faq-item.open .faq-icon svg { color: white; }

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 2rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 2rem 1.5rem; }
.faq-answer p { color: var(--neutral-600); line-height: 1.8; font-size: 0.95rem; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { padding: 6rem 1.5rem; background: white; }
.cta-box {
  max-width: 1200px; margin: 0 auto;
  border-radius: 4rem;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, var(--brand-royal) 0%, var(--brand-purple) 60%, #dc2626 100%);
  position: relative; overflow: hidden;
}
.cta-box h2 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.cta-box p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 3rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--brand-royal);
  padding: 1.1rem 2.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}
.btn-white:hover { background: var(--neutral-100); transform: scale(1.03); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--neutral-950);
  color: white;
  padding: 6rem 1.5rem 3rem;
  border-radius: 4rem 4rem 0 0;
  margin-top: 5rem;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,70,229,0.5), transparent);
}

.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; margin-bottom: 5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.footer-logo-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand-royal); display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { color: white; width: 22px; height: 22px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.04em; }

.footer-desc { color: var(--neutral-400); font-size: 0.9rem; line-height: 1.8; max-width: 18rem; margin-bottom: 2rem; }

.footer-socials { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--neutral-400); transition: all 0.3s;
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover { background: var(--brand-royal); color: white; border-color: var(--brand-royal); }

.footer-column h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2rem; }
.footer-column ul { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-column a { color: var(--neutral-400); font-size: 0.9rem; transition: color 0.2s; }
.footer-column a:hover { color: var(--brand-soft); }

.footer-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.footer-stat {
  padding: 1rem; border-radius: 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.footer-stat .num { font-size: 1.3rem; font-weight: 800; color: var(--brand-soft); }
.footer-stat .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--neutral-500); font-weight: 700; }

.footer-newsletter h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem;
  color: white; outline: none; transition: border-color 0.2s; font-family: inherit;
}
.newsletter-input::placeholder { color: var(--neutral-500); }
.newsletter-input:focus { border-color: var(--brand-royal); }
.newsletter-btn {
  background: var(--brand-royal); color: white;
  padding: 0.75rem; border-radius: 0.75rem;
  transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.newsletter-btn:hover { background: var(--brand-deep); }
.newsletter-btn svg { width: 20px; height: 20px; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 1rem;
  font-size: 12px; color: var(--neutral-500);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-bottom-links a { transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* =============================================
   PAGE HEADERS
   ============================================= */
.page-hero { padding: 10rem 1.5rem 4rem; text-align: center; }
.page-hero .badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; background: rgba(79,70,229,0.05); border: 1px solid rgba(79,70,229,0.1); margin-bottom: 2rem; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-royal); }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.2rem; color: var(--neutral-600); max-width: 40rem; margin: 0 auto; line-height: 1.7; }

/* =============================================
   TOOLS PAGE
   ============================================= */
.tools-section { padding: 10rem 1.5rem 6rem; background: var(--neutral-50); }
.tools-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; max-width: 1280px; margin: 0 auto;
}
@media (min-width: 640px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }

.tool-card {
  background: white; border: 1px solid var(--neutral-100);
  border-radius: 1.5rem; padding: 2.5rem;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.tool-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 8rem; height: 8rem; background: rgba(79,70,229,0.04);
  border-radius: 50%; transform: translate(3rem, -3rem);
  transition: transform 0.5s;
}
.tool-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(79,70,229,0.12); }
.tool-card:hover::after { transform: translate(2rem, -2rem) scale(1.5); }

.tool-icon {
  width: 72px; height: 72px; border-radius: 1.5rem;
  background: rgba(79,70,229,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem; transition: all 0.3s;
}
.tool-icon svg { color: var(--brand-royal); width: 32px; height: 32px; }
.tool-card:hover .tool-icon { background: var(--brand-royal); }
.tool-card:hover .tool-icon svg { color: white; }

.tool-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--neutral-900); transition: color 0.2s; }
.tool-card:hover h3 { color: var(--brand-royal); }
.tool-card p { font-size: 0.9rem; color: var(--neutral-500); line-height: 1.7; margin-bottom: 2rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.tool-card-footer { display: flex; justify-content: space-between; align-items: center; }
.tool-type-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--brand-royal);
  background: rgba(79,70,229,0.06); padding: 0.25rem 0.75rem; border-radius: 999px;
}
.tool-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--neutral-50); display: flex; align-items: center; justify-content: center;
  color: var(--neutral-400); transition: all 0.3s;
}
.tool-card:hover .tool-arrow { background: var(--brand-royal); color: white; }
.tool-arrow svg { width: 18px; height: 18px; }

/* =============================================
   CALCULATOR MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-bg {
  position: absolute; inset: 0;
  background: rgba(15,15,26,0.8); backdrop-filter: blur(12px);
}

.modal-box {
  position: relative; width: 100%; max-width: 640px;
  background: white; border-radius: 3.5rem; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--neutral-50); display: flex; align-items: center; justify-content: center;
  color: var(--neutral-400); transition: all 0.2s; z-index: 10;
}
.modal-close:hover { background: #fee2e2; color: #dc2626; }
.modal-close svg { width: 24px; height: 24px; }

.modal-content { padding: 3rem; }
@media (min-width: 640px) { .modal-content { padding: 4rem; } }

.modal-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.modal-icon {
  width: 80px; height: 80px; border-radius: 1.5rem;
  background: var(--brand-royal); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}
.modal-icon svg { color: white; width: 36px; height: 36px; }
.modal-title { font-size: 1.75rem; font-weight: 800; color: var(--neutral-900); }
.modal-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand-royal); margin-top: 4px; }
.modal-desc { font-size: 1.05rem; color: var(--neutral-600); line-height: 1.7; margin-bottom: 2rem; }

.calc-field { margin-bottom: 1.5rem; }
.calc-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--neutral-400); margin-bottom: 0.5rem; }
.calc-input {
  width: 100%; padding: 1.1rem 2rem;
  border-radius: 1rem; background: var(--neutral-50);
  border: 1px solid var(--neutral-100); font-size: 1rem;
  font-family: inherit; outline: none; transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-input:focus { border-color: var(--brand-royal); }

.calc-btn {
  width: 100%; padding: 1.4rem; border-radius: 1rem;
  background: var(--brand-royal); color: white;
  font-weight: 700; font-size: 1.1rem; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(79,70,229,0.25);
  margin-top: 0.5rem;
}
.calc-btn:hover { background: var(--brand-deep); }
.calc-btn svg { width: 24px; height: 24px; }

.calc-result {
  margin-top: 1.5rem; padding: 2.5rem; border-radius: 1.5rem;
  background: rgba(79,70,229,0.04); border: 1px solid rgba(79,70,229,0.1);
  text-align: center; display: none;
}
.calc-result.show { display: block; }
.result-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brand-royal); margin-bottom: 1rem; }
.result-value { font-size: 3.5rem; font-weight: 800; color: var(--neutral-900); letter-spacing: -0.03em; }
.result-note { font-size: 0.875rem; color: var(--neutral-500); margin-top: 1rem; }

/* =============================================
   CEO PAGE
   ============================================= */
.ceo-page { padding: 8rem 1.5rem 6rem; background: white; }
.ceo-hero {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: center;
  max-width: 1280px; margin: 0 auto 10rem;
}
@media (min-width: 1024px) { .ceo-hero { grid-template-columns: 1fr 1fr; } }

.ceo-name { font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.04em; color: var(--neutral-900); margin-bottom: 1.5rem; }
.ceo-role { font-size: 1rem; font-weight: 800; color: var(--brand-royal); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 2rem; }
.ceo-bio { font-size: 1.1rem; color: var(--neutral-600); margin-bottom: 3rem; max-width: 32rem; line-height: 1.8; }

.ceo-quote-box {
  background: var(--neutral-900); color: white;
  border-radius: 3rem; padding: 3rem;
  position: relative; overflow: hidden;
}
.ceo-quote-box .quote-icon {
  position: absolute; top: 2rem; right: 2rem;
  opacity: 0.05; width: 96px; height: 96px;
}
.ceo-quote-text { font-size: 1.35rem; font-style: italic; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }

.ceo-img-wrap {
  position: relative;
}
.ceo-img-frame {
  aspect-ratio: 4/5;
  border-radius: 4rem; overflow: hidden;
  border: 12px solid white;
  box-shadow: 0 50px 100px rgba(0,0,0,0.15);
  position: relative; z-index: 10;
}
.ceo-img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.ceo-img-frame:hover img { transform: scale(1.05); }

.ceo-impact-card {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  background: white; border-radius: 3rem; padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--neutral-100); max-width: 20rem; z-index: 20;
}
.ceo-impact-icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: var(--brand-royal); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3); margin-bottom: 1rem;
}
.ceo-impact-icon svg { color: white; width: 28px; height: 28px; }

/* Survey */
.ceo-survey-section { max-width: 1280px; margin: 0 auto 10rem; }
.ceo-survey-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: start;
}
@media (min-width: 1024px) { .ceo-survey-grid { grid-template-columns: 1fr 1fr; } }

.survey-box {
  background: white; border-radius: 3rem; padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid var(--neutral-100);
}
.survey-steps { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; }
.survey-step-dot {
  flex: 1; height: 6px; border-radius: 999px;
  background: var(--neutral-100); transition: background 0.3s;
}
.survey-step-dot.active { background: var(--brand-royal); }

.survey-step { display: none; }
.survey-step.active { display: block; }

.survey-field { margin-bottom: 1.5rem; }
.survey-label { display: flex; align-items: center; gap: 0.5rem; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--neutral-400); margin-bottom: 0.5rem; }
.survey-label svg { width: 14px; height: 14px; }
.survey-input {
  width: 100%; padding: 1rem 1.5rem; border-radius: 1rem;
  background: var(--neutral-50); border: 1px solid var(--neutral-100);
  font-size: 1rem; font-family: inherit; outline: none; transition: border-color 0.2s; color: var(--neutral-900);
}
.survey-input:focus { border-color: var(--brand-royal); }
.survey-textarea { resize: none; height: 8rem; }

.survey-btn-row { display: flex; gap: 1rem; margin-top: 0.5rem; }
.survey-btn-back {
  flex: 1; padding: 1.2rem; border-radius: 1rem;
  background: var(--neutral-100); color: var(--neutral-600);
  font-weight: 700; font-family: inherit; cursor: pointer;
  transition: background 0.2s;
}
.survey-btn-back:hover { background: var(--neutral-200); }
.survey-btn-next {
  flex: 2; padding: 1.2rem; border-radius: 1rem;
  background: var(--brand-royal); color: white;
  font-weight: 700; font-size: 1rem; font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(79,70,229,0.25); transition: background 0.2s;
}
.survey-btn-next:hover { background: var(--brand-deep); }
.survey-btn-next svg { width: 20px; height: 20px; }

.survey-success { text-align: center; padding: 2rem; display: none; }
.survey-success.show { display: block; }

/* =============================================
   BOOKING PAGE
   ============================================= */
.booking-page { padding: 10rem 1.5rem 6rem; }
.booking-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; max-width: 1000px; margin: 0 auto;
}
@media (min-width: 768px) { .booking-grid { grid-template-columns: 2fr 1fr; } }

.booking-form-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 2rem; padding: 3rem; }
.booking-field { margin-bottom: 1.5rem; }
.booking-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: rgba(255,255,255,0.8); }
.booking-input-wrap { position: relative; }
.booking-input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.3); }
.booking-input-icon svg { width: 20px; height: 20px; }
.booking-input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.75rem 1rem 0.75rem 3rem;
  color: white; font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s;
}
.booking-input:focus { border-color: var(--brand-royal); }
.booking-select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.75rem 1rem;
  color: white; font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s; appearance: none;
}
.booking-textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.75rem 1rem 0.75rem 3rem;
  color: white; font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s; resize: vertical;
}
.booking-submit {
  width: 100%; background: #dc2626; color: white;
  padding: 1rem; border-radius: 0.75rem;
  font-weight: 700; font-size: 1.1rem; font-family: inherit;
  cursor: pointer; transition: background 0.2s;
  box-shadow: 0 8px 24px rgba(220,38,38,0.2);
}
.booking-submit:hover { background: #b91c1c; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page { padding: 10rem 1.5rem 0; background: var(--neutral-950); }
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 5rem; max-width: 1280px; margin: 0 auto 8rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.contact-icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: rgba(79,70,229,0.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.3s;
}
.contact-icon svg { color: var(--brand-soft); width: 24px; height: 24px; }
.contact-info-item:hover .contact-icon { background: var(--brand-royal); }
.contact-info-item:hover .contact-icon svg { color: white; }
.contact-info-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-info-value { font-size: 1.1rem; font-weight: 700; color: white; }

.contact-status { margin-top: 4rem; padding: 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 1rem; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #10b981; animation: pulseSlow 2s ease-in-out infinite; display: inline-block; margin-right: 0.75rem; }

.contact-form-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 2rem; padding: 3rem; position: relative; overflow: hidden; }
.contact-field { margin-bottom: 1.5rem; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.5rem; }
.contact-input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.75rem 1rem; color: white;
  font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s;
}
.contact-input:focus { border-color: var(--brand-royal); }
.contact-select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.75rem 1rem; color: white;
  font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s; appearance: none;
}
.contact-textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.75rem 1rem; color: white;
  font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s; resize: vertical;
}
.contact-submit {
  width: 100%; background: #dc2626; color: white;
  padding: 1rem; border-radius: 0.75rem; font-weight: 700; font-size: 1.1rem;
  font-family: inherit; cursor: pointer; transition: background 0.2s;
  box-shadow: 0 8px 24px rgba(220,38,38,0.2); display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.contact-submit:hover { background: #b91c1c; }
.contact-map { height: 500px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page { padding: 8rem 1.5rem 6rem; background: white; }
.about-mission-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 5rem; align-items: center; max-width: 1280px; margin: 0 auto 8rem;
}
@media (min-width: 1024px) { .about-mission-grid { grid-template-columns: 1fr 1fr; } }

.about-img-wrap { border-radius: 3rem; overflow: hidden; border: 8px solid var(--neutral-50); box-shadow: 0 30px 60px rgba(0,0,0,0.1); position: relative; }
.about-img-overlay {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  background: var(--brand-royal); color: white;
  border-radius: 1.5rem; padding: 1.5rem 2rem; font-weight: 700; font-size: 1.1rem;
}

.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem; max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card { text-align: center; }
.team-img-wrap { aspect-ratio: 4/5; border-radius: 2rem; overflow: hidden; margin-bottom: 2rem; position: relative; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: all 0.7s; }
.team-card:hover .team-img-wrap img { filter: grayscale(0%); transform: scale(1.05); }
.team-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,26,0.7), transparent); opacity: 0; transition: opacity 0.5s; display: flex; align-items: flex-end; padding: 2rem; }
.team-card:hover .team-img-overlay { opacity: 1; }
.team-img-overlay p { color: white; font-size: 0.875rem; font-weight: 700; }
.team-name { font-weight: 700; font-size: 1.2rem; color: var(--neutral-900); }
.team-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--neutral-500); margin-top: 4px; }

/* =============================================
   REVIEWS PAGE
   ============================================= */
.reviews-page { padding: 8rem 1.5rem 6rem; background: white; }
.reviews-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1280px; margin: 0 auto 6rem; }
@media (min-width: 768px) { .reviews-stats { grid-template-columns: repeat(4, 1fr); } }
.reviews-stat { text-align: center; padding: 2rem; border-radius: 2rem; background: var(--neutral-50); border: 1px solid var(--neutral-100); }
.reviews-stat .num { font-size: 2rem; font-weight: 800; color: var(--brand-royal); display: block; margin-bottom: 4px; }
.reviews-stat .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--neutral-400); }

/* =============================================
   VIDEO EDITING PAGE
   ============================================= */
.video-cards-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 1280px; margin: 0 auto 8rem; }
@media (min-width: 1024px) { .video-cards-grid { grid-template-columns: 1fr 1fr; } }

.video-feature-card {
  border: 1px solid var(--neutral-100); border-radius: 2rem; padding: 3rem;
  transition: background 0.5s, color 0.5s; group: true; cursor: default;
}
.video-feature-card:hover { background: var(--brand-royal); }
.video-feature-card h2 { font-size: 2.5rem; font-weight: 800; color: var(--neutral-900); margin: 2rem 0 1.5rem; }
.video-feature-card:hover h2 { color: white; }
.video-feature-card p { color: var(--neutral-600); font-size: 1.05rem; margin-bottom: 2rem; }
.video-feature-card:hover p { color: rgba(255,255,255,0.8); }
.video-feature-card ul { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.video-feature-card li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; font-weight: 500; color: var(--neutral-700); }
.video-feature-card:hover li { color: rgba(255,255,255,0.9); }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-page { padding: 8rem 1.5rem 6rem; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1280px; margin: 0 auto; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 1.5rem; overflow: hidden; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 2rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 12px; color: var(--neutral-500); margin-bottom: 1rem; }
.blog-card h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.4; color: white; }
.blog-card p { font-size: 0.875rem; color: var(--neutral-400); line-height: 1.7; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page { padding: 10rem 1.5rem 6rem; }
.legal-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 1.5rem; padding: 3rem; max-width: 56rem; margin: 0 auto; }
.legal-box p { color: var(--neutral-400); line-height: 1.9; margin-bottom: 1.5rem; font-size: 0.95rem; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-page { padding: 8rem 1.5rem 6rem; }
.product-section { display: flex; flex-direction: column; gap: 3rem; align-items: center; margin-bottom: 8rem; }
@media (min-width: 1024px) { .product-section { flex-direction: row; } }
.product-section.reverse { }
@media (min-width: 1024px) { .product-section.reverse { flex-direction: row-reverse; } }
.product-content { flex: 1; }
.product-img { flex: 1; width: 100%; }
.product-img .img-wrap { border-radius: 1.5rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 60px rgba(79,70,229,0.1); }

/* =============================================
   CHATBOT
   ============================================= */
.chatbot-wrapper { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; }
.chat-toggle, .whatsapp-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
  position: absolute; right: 0;
}
.chat-toggle { background: var(--brand-royal); color: white; bottom: 0; box-shadow: 0 8px 24px rgba(79,70,229,0.4); }
.whatsapp-btn { background: #25D366; color: white; bottom: 70px; box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.chat-toggle:hover, .whatsapp-btn:hover { transform: scale(1.1); }
.chat-toggle svg, .whatsapp-btn svg { width: 24px; height: 24px; }

.chat-window {
  position: absolute; bottom: 80px; right: 0;
  width: 360px; background: rgba(15,15,26,0.95);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none; flex-direction: column; height: 480px;
}
.chat-window.open { display: flex; }

.chat-header {
  background: var(--brand-royal); padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.chat-avatar svg { width: 16px; height: 16px; color: white; }
.chat-header-name { font-weight: 700; color: white; }
.chat-close { color: rgba(255,255,255,0.6); background: none; border: none; cursor: pointer; transition: color 0.2s; }
.chat-close:hover { color: white; }
.chat-close svg { width: 20px; height: 20px; }

.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.chat-msg { max-width: 80%; padding: 0.75rem 1rem; border-radius: 1rem; font-size: 0.875rem; line-height: 1.6; }
.chat-msg.bot { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); align-self: flex-start; }
.chat-msg.user { background: var(--brand-royal); color: white; align-self: flex-end; }

.chat-form { padding: 1rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 0.5rem; }
.chat-input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 0.5rem 1rem; color: white;
  font-family: inherit; font-size: 0.875rem; outline: none; transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--brand-royal); }
.chat-send {
  background: var(--brand-royal); color: white; padding: 0.5rem;
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
}
.chat-send svg { width: 18px; height: 18px; }

/* =============================================
   SERVICES DETAIL PAGE
   ============================================= */
.service-detail { padding: 8rem 1.5rem 6rem; }
.service-detail-hero {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: center; max-width: 1280px; margin: 0 auto 8rem;
}
@media (min-width: 1024px) { .service-detail-hero { grid-template-columns: 1fr 1fr; } }

.service-benefits-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 1280px; margin: 0 auto 8rem; }
@media (min-width: 768px) { .service-benefits-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: flex; } }

.text-center { text-align: center; }
.max-w-container { max-width: 1280px; margin: 0 auto; }
.grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); }

/* =============================================
   WORDPRESS SPECIFIC
   ============================================= */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; overflow: hidden; position: absolute; width: 1px;
}
.wp-block-image img { border-radius: 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.entry-content h2 { margin: 2rem 0 1rem; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }

/* =============================================
   GRID COLUMNS FOR AOS
   ============================================= */
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-32 { margin-bottom: 8rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

/* =============================================
   PRODUCTS PAGE COMPARISON
   ============================================= */
.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1280px; margin: 0 auto; }
@media (min-width: 768px) { .comparison-grid { grid-template-columns: repeat(3, 1fr); } }
