/* ================================================
   SaaS Website Template - style.css
   Developed by AymanInfotech
   Contact: aymaninfotechs@gmail.com
================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:       #5B5BFD;
  --primary-dark:  #4343c8;
  --secondary:     #8B5CF6;
  --accent:        #06B6D4;
  --gradient-main: linear-gradient(135deg, #5B5BFD 0%, #8B5CF6 100%);
  --gradient-hero: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f8ff 100%);
  --dark:          #0f0c1d;
  --dark-2:        #1a1730;
  --text-dark:     #1e1b4b;
  --text-body:     #4b5680;
  --text-muted:    #9399b2;
  --white:         #ffffff;
  --light:         #f4f6fd;
  --light-2:       #eef1fb;
  --border:        #e5e8f5;
  --shadow-sm:     0 2px 12px rgba(91, 91, 253, 0.08);
  --shadow-md:     0 8px 32px rgba(91, 91, 253, 0.15);
  --shadow-lg:     0 24px 64px rgba(91, 91, 253, 0.2);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; }

section { padding: 100px 0; }

ul { list-style: none; padding: 0; margin: 0; }

/* ---- Utility Classes ---- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(91,91,253,0.1), rgba(139,92,246,0.1));
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(91,91,253,0.15);
}

.section-badge i { font-size: 12px; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--gradient-main);
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(91, 91, 253, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(91, 91, 253, 0.45); }
.btn-primary-custom:hover::before { opacity: 1; }

.btn-outline-custom {
  background: transparent;
  color: var(--text-dark) !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: rgba(91,91,253,0.04);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* ================================================
   NAVBAR
================================================ */
.navbar-custom {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(91,91,253,0.1);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark) !important;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.nav-link-custom {
  font-weight: 500;
  color: var(--text-body) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 15px;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
  background: rgba(91,91,253,0.06);
}

.nav-cta-group { display: flex; align-items: center; gap: 12px; }

.btn-nav-outline {
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  transition: var(--transition);
}

.btn-nav-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-nav-primary {
  background: var(--gradient-main);
  color: white !important;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 14px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(91,91,253,0.3);
}

.btn-nav-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(91,91,253,0.4); }

/* ================================================
   HERO SECTION
================================================ */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 { width: 600px; height: 600px; background: #5B5BFD; top: -200px; left: -200px; }
.orb-2 { width: 400px; height: 400px; background: #8B5CF6; bottom: -100px; right: -100px; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: #06B6D4; top: 50%; left: 50%; animation-delay: -5s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #818CF8, #C084FC, #818CF8);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0%; }
  50%       { background-position: 100%; }
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-hero-primary {
  background: var(--gradient-main);
  color: white !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(91,91,253,0.5);
}

.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(91,91,253,0.6); }

.btn-hero-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: white !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-hero-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat-item { text-align: left; }

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* Hero image area */
.hero-image-wrapper {
  position: relative;
  animation: fadeInRight 0.9s ease 0.3s both;
}

.hero-dashboard {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: var(--transition);
}

.hero-dashboard:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0deg); }

/* Floating cards on the hero dashboard */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  z-index: 10;
}

.float-card-1 { top: -20px; right: -30px; animation-delay: 0s; }
.float-card-2 { bottom: 40px; left: -40px; animation-delay: -2s; }
.float-card-3 { bottom: -20px; right: 20px; animation-delay: -3.5s; }

.float-card .fc-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fc-green  { background: rgba(34,197,94,0.12); color: #22c55e; }
.fc-blue   { background: rgba(91,91,253,0.12); color: var(--primary); }
.fc-purple { background: rgba(139,92,246,0.12); color: var(--secondary); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Dashboard mock inside hero */
.dashboard-mock { width: 100%; aspect-ratio: 16/10; position: relative; }

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-title { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 15px; }

.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.dash-dots span:nth-child(1) { background: #ff5f56; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }

.dash-stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px;
}

.dash-stat-box .label { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.dash-stat-box .value { font-size: 20px; font-weight: 700; color: white; }
.dash-stat-box .change { font-size: 11px; color: #22c55e; margin-top: 4px; }

.dash-chart {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar-group { display: flex; align-items: flex-end; gap: 3px; flex: 1; height: 100%; }

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(139,92,246,0.5);
  transition: height 0.5s ease;
  animation: barGrow 1s ease forwards;
}

.bar.active { background: var(--gradient-main); }

@keyframes barGrow {
  from { height: 0% !important; }
}

/* ================================================
   FEATURES (HIGHLIGHT) STRIP
================================================ */
.features-strip { padding: 30px 0; background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.strip-item { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text-body); }
.strip-icon { width: 36px; height: 36px; background: var(--gradient-main); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 15px; }

/* ================================================
   STATS SECTION
================================================ */
.stats-section { padding: 80px 0; background: var(--white); }

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(91,91,253,0.2); }

.stat-number {
  font-size: 52px;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 15px; color: var(--text-muted); font-weight: 500; }

/* ================================================
   FEATURE CARDS
================================================ */
.features-section { background: var(--light); }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91,91,253,0.15);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.fi-blue   { background: rgba(91,91,253,0.1);  color: var(--primary); }
.fi-purple { background: rgba(139,92,246,0.1); color: var(--secondary); }
.fi-cyan   { background: rgba(6,182,212,0.1);  color: #06B6D4; }
.fi-green  { background: rgba(34,197,94,0.1);  color: #22c55e; }
.fi-orange { background: rgba(249,115,22,0.1); color: #f97316; }
.fi-pink   { background: rgba(236,72,153,0.1); color: #ec4899; }

.feature-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ================================================
   DASHBOARD PREVIEW
================================================ */
.dashboard-section { background: var(--dark); position: relative; overflow: hidden; }

.dashboard-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(91,91,253,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(139,92,246,0.15) 0%, transparent 60%);
}

.dashboard-section .section-title { color: white; }
.dashboard-section .section-subtitle { color: rgba(255,255,255,0.6); }

.dash-preview-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }

.dash-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.dash-tab.active, .dash-tab:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
}

.dash-preview-window {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.window-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.window-bar .dot-r { background: #ff5f56; }
.window-bar .dot-y { background: #febc2e; }
.window-bar .dot-g { background: #28c840; }

.window-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin: 0 16px;
}

.dash-content-area {
  padding: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  min-height: 380px;
}

.dash-sidebar { display: flex; flex-direction: column; gap: 4px; }

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
}

.sidebar-item i { font-size: 14px; width: 16px; text-align: center; }
.sidebar-item.active, .sidebar-item:hover { background: rgba(91,91,253,0.2); color: rgba(255,255,255,0.9); }
.sidebar-item.active { color: #818cf8; }

.dash-main { display: flex; flex-direction: column; gap: 16px; }

.dash-main-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.main-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px;
}

.main-stat .ms-label { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.main-stat .ms-value { font-size: 22px; font-weight: 700; color: white; }
.main-stat .ms-change { font-size: 11px; color: #22c55e; margin-top: 4px; }
.main-stat .ms-change.down { color: #ef4444; }

.dash-chart-area {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px;
  flex: 1;
}

.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.chart-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); }
.chart-period {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: 20px;
}

.chart-bars { display: flex; gap: 6px; height: 100px; align-items: flex-end; }

.chart-bar {
  flex: 1;
  background: rgba(91,91,253,0.3);
  border-radius: 4px 4px 0 0;
  transition: background 0.3s;
}

.chart-bar:hover, .chart-bar.active { background: var(--gradient-main); }

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials-section { background: var(--light); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.quote-icon {
  font-size: 48px;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  font-family: Georgia, serif;
}

.stars { color: #f59e0b; margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }

.testimonial-text { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: 14px; }

.reviewer-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.reviewer-avatar-placeholder {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.reviewer-role { font-size: 13px; color: var(--text-muted); }

/* ================================================
   CTA SECTION
================================================ */
.cta-section {
  background: var(--gradient-main);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -5%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section .section-title { color: white; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.75); }

/* ================================================
   PRICING
================================================ */
.pricing-section { background: var(--white); }

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1.5px solid var(--border);
  background: var(--white);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  background: var(--gradient-main);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}

.pricing-card.featured:hover { transform: translateY(-18px); }

.popular-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: white;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.plan-name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 8px; }
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.8); }

.plan-price { display: flex; align-items: flex-start; gap: 4px; margin: 16px 0 24px; }
.price-currency { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-top: 10px; }
.price-amount { font-size: 56px; font-weight: 900; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-dark); line-height: 1; }
.price-period { font-size: 14px; color: var(--text-muted); margin-top: auto; margin-bottom: 4px; }

.pricing-card.featured .price-currency,
.pricing-card.featured .price-amount { color: white; }
.pricing-card.featured .price-period { color: rgba(255,255,255,0.65); }

.plan-description { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.pricing-card.featured .plan-description { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }

.plan-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
}

.plan-feature .check { color: var(--primary); font-size: 15px; flex-shrink: 0; }
.plan-feature.disabled { color: var(--text-muted); opacity: 0.5; }
.plan-feature.disabled .check { color: var(--text-muted); }

.pricing-card.featured .plan-feature { color: rgba(255,255,255,0.85); }
.pricing-card.featured .plan-feature .check { color: rgba(255,255,255,0.9); }

.btn-plan{
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--border);
  color: var(--text-dark);
}

.btn-plan:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-plan-featured {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: var(--transition);
  background: white;
  color: var(--primary);
  border: none;
}

.btn-plan-featured:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ================================================
   TEAM / ABOUT
================================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.team-img-wrapper {
  height: 220px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-initial {
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.team-card-body { padding: 24px; }
.team-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.team-bio  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}
.social-link:hover { background: var(--gradient-main); color: white; }

/* Mission/Vision cards */
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.mv-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
}

.mv-card h4 { font-size: 22px; margin-bottom: 14px; }
.mv-card p  { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin: 0; }

/* ================================================
   CONTACT
================================================ */
.contact-section { background: var(--light); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--light);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-info-item:hover { background: rgba(91,91,253,0.05); }

.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.ci-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.ci-value { font-size: 15px; color: var(--text-dark); font-weight: 600; }

.form-control-custom {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91,91,253,0.1);
}

.form-control-custom::placeholder { color: var(--text-muted); }

.form-label-custom {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

/* ================================================
   PAGE HERO (inner pages)
================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(91,91,253,0.3) 0%, transparent 70%);
}

.page-hero h1 { color: white; font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 520px; margin: 0 auto; }

.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb-custom a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb-custom a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ================================================
   NEWSLETTER / Footer CTA
================================================ */
.newsletter-section {
  background: var(--gradient-main);
  padding: 70px 0;
}

.newsletter-section h3 { color: white; font-size: 30px; margin-bottom: 8px; }
.newsletter-section p  { color: rgba(255,255,255,0.75); margin-bottom: 0; }

.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: white;
  margin-bottom: 16px;
}

.footer-desc { font-size: 14.5px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient-main); color: white; }

.footer-col-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 4px; }

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-bottom a:hover { color: white; }

/* ================================================
   ANIMATIONS
================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up   { animation: fadeInUp   0.7s ease both; }
.animate-fade-left { animation: fadeInLeft 0.7s ease both; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* stagger delays */
.delay-1 { transition-delay: 0.1s !important; animation-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s !important; animation-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s !important; animation-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s !important; animation-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s !important; animation-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s !important; animation-delay: 0.6s; }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1200px) {
  .dash-content-area { grid-template-columns: 160px 1fr; }
  .dash-main-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  section { padding: 70px 0; }

  .hero-section { padding: 120px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(30px, 7vw, 52px); }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-image-wrapper { margin-top: 40px; }
  .hero-dashboard { transform: none; }
  .float-card { display: none; }
  .hero-stats { gap: 24px; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }

  .dash-content-area { grid-template-columns: 1fr; }
  .dash-sidebar { flex-direction: row; flex-wrap: wrap; }

  .nav-cta-group { gap: 8px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .section-title  { font-size: clamp(24px, 6vw, 34px); }
  .section-subtitle { font-size: 15px; }

  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 24px; }

  .stat-number { font-size: 40px; }
  .contact-card { padding: 28px 20px; }

  .dash-main-stats { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom { text-align: center; justify-content: center; }
}

@media (max-width: 576px) {
  .hero-section { padding: 100px 0 50px; }
  .btn-hero-primary, .btn-hero-outline { padding: 13px 28px; font-size: 15px; }
  .newsletter-form { flex-direction: column; }
  .strip-item { font-size: 13px; }
}
