
/* SKIP LINK (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-size: .85rem;
  font-weight: 600;
  z-index: 10000;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* SR-ONLY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
/* ============================================
   Elite Executive Ease — Shared Styles
   ============================================ */

/* RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #6C40C4;
  --lavender: #BEA9E7;
  --black: #000000;
  --off-black: #0d0d0d;
  --gray: #F0F1F0;
  --mid-gray: #e4e4e4;
  --white: #FFFFFF;
  --purple-dark: #4A2A9A;
}
html { scroll-behavior: smooth; background: var(--black); overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* NAVIGATION */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 1.75rem 5rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.45s ease, padding 0.45s ease, border-bottom 0.45s ease, backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease; }
nav.scrolled { background: rgba(0,0,0,0.9); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 1.1rem 5rem; border-bottom: 1px solid rgba(108,64,196,0.18); }
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 0.6rem; }
.nav-logo::after { content: 'ELITE EXECUTIVE EASE'; color: var(--white); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.nav-logo-img { height: 30px; width: 31px; aspect-ratio: 222 / 212; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.83rem; font-weight: 400; letter-spacing: 0.04em; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.btn-nav { background: var(--purple); color: var(--white); padding: 0.6rem 1.4rem; border-radius: 8px; font-weight: 600; transition: background 0.3s, transform 0.2s; }
.btn-nav:hover { background: var(--purple-dark); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; width: 32px; height: 24px; position: relative; z-index: 201; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; position: absolute; left: 0; transition: all 0.35s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 199; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.04em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--lavender); }
.mobile-close { position: absolute; top: 1.75rem; right: 1.75rem; background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; z-index: 202; }
.mobile-close:hover { border-color: var(--lavender); background: rgba(108,64,196,0.1); }
.mobile-close svg { stroke: rgba(255,255,255,0.7); width: 20px; height: 20px; stroke-width: 2; }

/* LAYOUT & UTILITIES */
.section { padding: 8rem 5rem; }
.inner { max-width: 1380px; margin: 0 auto; }
.eyebrow { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); margin-bottom: 1rem; }
.eyebrow-light { color: var(--lavender); }
.section-h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 800; line-height: 1.12; margin-bottom: 1.2rem; }
.section-h2 em { font-style: normal; color: var(--purple); }
.section-sub { font-size: 1rem; font-weight: 300; color: #5a5a5a; line-height: 1.85; }
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; background: var(--purple); color: var(--white); padding: 1rem 2.25rem; border-radius: 8px; font-size: 0.88rem; font-weight: 600; text-decoration: none; border: 2px solid var(--purple); transition: all 0.35s ease; }
.btn-primary:hover { background: transparent; box-shadow: 0 12px 35px rgba(108,64,196,0.4); transform: translateY(-2px); }
.btn-white { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--white); color: var(--purple); padding: 1.1rem 2.5rem; border-radius: 8px; font-size: 0.92rem; font-weight: 700; text-decoration: none; transition: all 0.35s ease; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(0,0,0,0.25); }

/* PAGE HERO */
.page-hero { padding: 11rem 5rem 6rem; background: var(--black); position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, #6C40C4, #4A2A9A);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  top: -200px;
  right: -100px;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #BEA9E7, #6C40C4);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  bottom: -150px;
  left: 10%;
  z-index: 0;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}
.page-hero-inner { position: relative; z-index: 1; max-width: 750px; }
.hero-pill { display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(108,64,196,0.13); border: 1px solid rgba(108,64,196,0.35); color: var(--lavender); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.5rem 1.3rem; border-radius: 50px; margin-bottom: 1.75rem; }
.page-h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 1.25rem; }
.page-h1 em { font-style: normal; background: linear-gradient(130deg, #8B5CF6 0%, #C4B5FD 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 550px; margin: 0; }

/* CTA SECTION */
.cta-section { background: var(--black); text-align: center; padding: 8rem 5rem; position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(108,64,196,0.35) 0%, transparent 70%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; animation: ctaPulse 6s ease-in-out infinite; }
@keyframes ctaPulse { 0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }
.cta-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.cta-eyebrow { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lavender); margin-bottom: 1.5rem; padding: 0.45rem 1.2rem; border: 1px solid rgba(190,169,231,0.2); border-radius: 50px; background: rgba(108,64,196,0.08); }
.cta-h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 1.25rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.cta-sub { color: rgba(255,255,255,0.5); font-size: 1rem; font-weight: 300; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.85; }
.cta-note { margin-top: 1.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.btn-cta { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--purple); color: var(--white); padding: 1.1rem 2.5rem; border-radius: 8px; font-size: 0.92rem; font-weight: 700; text-decoration: none; transition: all 0.4s ease; border: 1px solid rgba(190,169,231,0.3); }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(108,64,196,0.4); background: var(--purple-dark); }


/* FOOTER */
footer { background: var(--black); padding: 3.5rem 5rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
footer .nav-logo-img { height: 22px; width: 23px; }
footer .nav-logo::after { font-size: 0.78rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 400; letter-spacing: 0.02em; transition: color 0.3s; }
.footer-links a:hover { color: var(--lavender); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 300; white-space: normal; }
.footer-copy a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-copy a:hover { color: var(--lavender); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social a:hover { border-color: rgba(108,64,196,0.4); background: rgba(108,64,196,0.08); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-social a:hover svg { stroke: var(--lavender); }

/* SHARED RESPONSIVE */
@media (max-width: 900px) {
  nav, nav.scrolled { padding-left: 1.75rem; padding-right: 1.75rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-logo::after { font-size: 0.8rem; }
  .nav-logo-img { height: 26px; width: 27px; }
  .section { padding: 5rem 1.75rem; }
  .page-hero { padding: 8rem 1.75rem 4rem; }
  .cta-section { padding: 5rem 1.75rem; }
  .cta-h2 { max-width: 100%; }
  footer { padding: 2.5rem 1.75rem 2rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-top .nav-logo { justify-content: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: center; }
  .footer-copy { font-size: 0.62rem; text-align: center; }
  .footer-social { flex-shrink: 0; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* FOCUS-VISIBLE */
:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
