/* ===== CSS VARIABLES ===== */
:root {
  --purple: #2e0586;
  --pink: #d23ab8;
  --bg-deep: #0d0020;
  --bg-mid: #1a0040;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.10);
  --text-muted: rgba(255,255,255,0.55);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-deep);
  color: #ffffff;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #d23ab8 55%, #2e0586 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1:focus { outline: none; }

h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

h3, h4, h5, h6 { color: #ffffff; }

p { color: var(--text-muted); }

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

section { padding: 80px 0; }

.row { width: 100%; }

/* ===== UTILITY ===== */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #d23ab8 55%, #2e0586 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

/* ===== BUTTONS ===== */
.btn-gradient,
.btn-radient {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #ffffff !important;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(210,58,184,0.35);
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.4;
}

.btn-gradient:hover,
.btn-radient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(210,58,184,0.55);
  color: #ffffff;
}

.btn-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.4;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar-glass {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,0,32,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}

.navbar-glass .navbar-brand-text {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-glass .nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  transition: color 0.2s;
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link.active {
  color: var(--pink);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.2);
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46,5,134,0.65) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 75%, rgba(210,58,184,0.45) 0%, transparent 55%),
    var(--bg-deep);
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(210,58,184,0.15);
  border: 1px solid rgba(210,58,184,0.35);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 20px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0;
}

.stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ===== CLIENT LOGOS ===== */
.clients-strip {
  background: rgba(255,255,255,0.02);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.client-pill {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}

.client-pill:hover {
  background: rgba(210,58,184,0.1);
  border-color: rgba(210,58,184,0.3);
  color: #ffffff;
}

/* ===== FEATURE/SERVICE CARDS ===== */
.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--pink) !important;
  box-shadow: 0 0 40px rgba(210,58,184,0.25);
}

.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 40px;
  transform: rotate(45deg);
  transform-origin: center;
}

.pricing-price {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ===== TEAM CARDS ===== */
.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(46,5,134,0.85), rgba(210,58,184,0.5));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(46,5,134,0.5) 0%, transparent 65%);
}

/* ===== CONTACT FORM ===== */
.form-glass {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #ffffff;
  padding: 12px 16px;
  width: 100%;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-glass::placeholder { color: rgba(255,255,255,0.35); }

.form-glass:focus {
  border-color: var(--pink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(210,58,184,0.2);
  background: rgba(255,255,255,0.10);
}

.form-label-glass {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

/* ===== FOOTER ===== */
.footer-dark {
  background: #080015;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0 0;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin: 10px 0;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 20px;
}

.footer-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--pink); }

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 48px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

/* ===== SECTION BACKGROUNDS ===== */
.section-mid {
  background: rgba(255,255,255,0.02);
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: #ffffff;
}

.text-muted { color: var(--text-muted) !important; }

.bg-light { background: rgba(255,255,255,0.03) !important; }

/* Calendly iframe wrapper */
.calendly-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  padding: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-section { min-height: auto; padding: 60px 0 50px; }
  .hero-section .min-vh-100 { min-height: auto !important; }
  .cta-banner { padding: 48px 24px; }
  .navbar-glass .collapse { background: rgba(13,0,32,0.95); padding: 12px; border-radius: 12px; margin-top: 8px; }
}
