/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
  --bg: #0a0a0f;
  --bg-secondary: #0f1117;
  --card: #161b27;
  --card-hover: #1c2235;
  --accent: #7c3aed;
  --accent-hover: #8b5cf6;
  --cyan: #00e5c3;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(124, 58, 237, 0.2);
  --border-hover: rgba(124, 58, 237, 0.5);
  --nav-height: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 0 40px rgba(124, 58, 237, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}
.btn-ghost:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #0a0a0f;
}
.btn-white:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.btn:hover svg { transform: translateX(3px); }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.5));
  transition: filter 0.3s;
}
.nav-logo:hover .logo-mark {
  filter: drop-shadow(0 0 10px rgba(0, 229, 195, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav.show {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(124, 58, 237, 0.1);
  color: var(--text);
}
.mobile-nav .btn {
  margin-top: 8px;
  justify-content: center;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

/* Background dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 10%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Central glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.18) 0%, rgba(0, 229, 195, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 80px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.hero-scroll::before,
.hero-scroll::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--border-hover);
}
.hero-scroll span { letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; }

/* =========================================
   SERVICES PREVIEW (Home)
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  background: var(--card-hover);
  box-shadow: var(--shadow-accent);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--accent);
}
.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.service-card h3 { margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 0.97rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% - 12px);
  right: calc(33.33% - 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.step h3 { margin-bottom: 12px; }

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(0, 229, 195, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, #1a1f35 0%, #0f1117 50%, #0a1525 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; max-width: 500px; margin: 0 auto 40px; }
.cta-banner .btn-primary { font-size: 1.05rem; padding: 16px 36px; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

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

.footer-brand p {
  margin-top: 12px;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(124, 58, 237, 0.08);
}
.social-links svg { width: 18px; height: 18px; }

/* =========================================
   SERVICES PAGE
   ========================================= */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 560px; margin: 16px auto 0; font-size: 1.15rem; }

.services-full {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-full-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.service-full-icon {
  width: 64px;
  height: 64px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-full-icon svg { width: 30px; height: 30px; color: var(--accent); }

.service-full-content h3 { margin-bottom: 12px; }
.service-full-content p { margin-bottom: 20px; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Who it's for */
.who-for {
  background: var(--bg-secondary);
}
.who-for-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}
.who-for-inner h2 { margin-bottom: 20px; }
.who-for-inner p { max-width: 680px; margin: 0 auto; font-size: 1.1rem; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.open { border-color: var(--accent); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.97rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =========================================
   SECTION UTILITIES
   ========================================= */
.section-flush-top { padding-top: 0; }
.section-faq { padding-top: 0; padding-bottom: 100px; }
.book-expect-section { padding: 0 0 64px; }
.calendly-section { padding: 0 0 80px; }

/* =========================================
   BOOK PAGE
   ========================================= */
.book-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.book-hero .container { position: relative; z-index: 1; }
.book-hero p { max-width: 540px; margin: 16px auto 0; font-size: 1.1rem; }

.book-what-to-expect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0;
}

.expect-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.expect-item .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.expect-item h4 { margin-bottom: 6px; }
.expect-item p { font-size: 0.9rem; }

.calendly-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 8px;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-section {
  background: var(--bg-secondary);
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form .btn-primary {
  align-self: flex-start;
  padding: 15px 32px;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* =========================================
   PRODUCT CARDS (Real Estate)
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.product-card:first-child { border-color: rgba(124,58,237,0.4); box-shadow: 0 0 32px rgba(124,58,237,0.08); }
.product-card-header { display: flex; align-items: flex-start; justify-content: space-between; }
.product-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.product-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: linear-gradient(135deg,#7c3aed,#00e5c3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; border: 1px solid rgba(124,58,237,0.3); border-radius: 20px; padding: 4px 10px; }
.product-card h3 { font-size: 1.2rem; font-weight: 700; margin: 0; color: var(--text); }
.product-tagline { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.product-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.product-benefits li { font-size: 0.875rem; color: var(--text-muted); padding-left: 20px; position: relative; line-height: 1.5; }
.product-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 0.8rem; }
.product-roi { background: rgba(0,229,195,0.06); border: 1px solid rgba(0,229,195,0.15); border-radius: 8px; padding: 12px 14px; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.roi-label { color: var(--accent); font-weight: 700; }
.product-pricing { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.price-setup { font-size: 1rem; font-weight: 700; color: var(--text); }
.price-sep { color: var(--text-muted); font-size: 0.85rem; }
.price-monthly { font-size: 1rem; font-weight: 700; color: var(--accent); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-full-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .book-what-to-expect { grid-template-columns: 1fr; }
  .who-for-inner { padding: 36px 24px; }
  .section { padding: 72px 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .page-hero { padding: 120px 0 60px; }
  .book-hero { padding: 120px 0 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn-primary { width: 100%; justify-content: center; }
}

/* =========================================
   AIOS — FEATURED CARD (index.html)
   ========================================= */
.service-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--card);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: var(--radius-lg);
  padding: 56px;
  margin-bottom: 32px;
  box-shadow: 0 0 60px rgba(124,58,237,0.08);
  align-items: center;
}

.service-featured-content .section-label {
  margin-bottom: 16px;
  display: inline-block;
}

.service-featured-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-featured-content > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  background: linear-gradient(135deg, #7c3aed, #00e5c3);
  border-radius: 50%;
  position: relative;
}

.feature-list li::before {
  background: none;
  border: none;
  width: auto;
  min-width: auto;
  margin: 0;
}

.feature-list li {
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
}

.service-featured-content .btn {
  margin-right: 12px;
}

/* Terminal demo */
.demo-terminal {
  background: #0d0d14;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 14px;
  overflow: hidden;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.demo-terminal-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.demo-dot.red   { background: #ff5f56; }
.demo-dot.yellow { background: #ffbd2e; }
.demo-dot.green { background: #27c93f; }

.demo-label {
  margin-left: 8px;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Monaco', monospace;
  letter-spacing: 0.03em;
}

.demo-body {
  padding: 20px 24px;
  font-size: 0.78rem;
  line-height: 1.7;
}

.demo-cmd {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.demo-divider {
  color: rgba(148,163,184,0.3);
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.demo-section {
  margin-bottom: 14px;
}

.demo-section-label {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.demo-row {
  color: var(--text-muted);
  padding-left: 16px;
  font-size: 0.76rem;
}

.demo-row-hot {
  color: #fb923c;
}

.demo-row-new {
  color: var(--cyan);
}

.demo-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  border-radius: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* =========================================
   AIOS — TIERS (services.html)
   ========================================= */
.aios-intro {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, rgba(124,58,237,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.aios-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.aios-intro-content .section-label { margin-bottom: 16px; display: inline-block; }
.aios-intro-content h2 { margin-bottom: 20px; }
.aios-intro-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
.aios-intro-content p:last-of-type { margin-bottom: 28px; }

.aios-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.aios-pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}

.aios-pillar:hover { border-color: rgba(124,58,237,0.4); }

.aios-pillar-icon {
  width: 36px;
  height: 36px;
  background: rgba(124,58,237,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 12px;
}

.aios-pillar h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.aios-pillar p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Tier grid */
.tier-section {
  padding: 80px 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.tier-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s;
}

.tier-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }

.tier-card.featured {
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 48px rgba(124,58,237,0.12);
  position: relative;
}

.tier-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #7c3aed, #00e5c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 16px;
  width: fit-content;
}

.tier-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.tier-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.tier-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tier-price-setup {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  line-height: 1.1;
}

.tier-price-monthly {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.tier-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  top: 1px;
}

.tier-card .btn {
  width: 100%;
  justify-content: center;
}

/* Assessment banner */
.assessment-banner {
  background: rgba(0,229,195,0.04);
  border: 1px solid rgba(0,229,195,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.assessment-banner-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.assessment-banner-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.assessment-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 4px;
  display: block;
}

/* =========================================
   RESPONSIVE — AIOS additions
   ========================================= */
@media (max-width: 900px) {
  .service-featured { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .aios-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .aios-pillars { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .assessment-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .service-featured { padding: 28px; }
  .aios-pillars { grid-template-columns: 1fr; }
  .tier-card { padding: 24px; }
  .assessment-banner { padding: 24px; }
}
