/* ============================================
   Holy Automation! — Main Stylesheet
   Sacred Tech • Charleston, SC
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy-deep: #0a0e1a;
  --navy: #111827;
  --navy-light: #1a2332;
  --navy-mid: #1e293b;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --gold-glow: rgba(212, 160, 23, 0.15);
  --gold-glow-strong: rgba(212, 160, 23, 0.3);
  --white: #ffffff;
  --off-white: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-300: #94a3b8;
  --gray-400: #64748b;
  --gray-500: #475569;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 30px rgba(212, 160, 23, 0.2);
  --transition: 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;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility Classes --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Background Grain Texture --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212, 160, 23, 0.1);
  padding: 10px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  z-index: 1001;
}

.nav-logo .logo-mark {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212, 160, 23, 0.3));
}

.nav-logo .logo-accent {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--navy-deep) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 10px 22px;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--gray-500);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat .stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

/* Animated halo ring */
.halo-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.15);
  animation: haloRotate 20s linear infinite;
}

.halo-ring:nth-child(1) {
  width: 100%; height: 100%;
}
.halo-ring:nth-child(2) {
  width: 75%; height: 75%;
  border-color: rgba(212, 160, 23, 0.1);
  animation-direction: reverse;
  animation-duration: 15s;
}
.halo-ring:nth-child(3) {
  width: 50%; height: 50%;
  border-color: rgba(212, 160, 23, 0.08);
  animation-duration: 25s;
}

.halo-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

@keyframes haloRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-graphic-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 2px solid rgba(212, 160, 23, 0.2);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-graphic-center .hero-logo-mark {
  filter: drop-shadow(0 0 12px rgba(212, 160, 23, 0.4));
}

.hero-graphic-center span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Floating cards around hero graphic */
.float-card {
  position: absolute;
  background: rgba(26, 35, 50, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

.float-card .fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Desktop: cards wrapper is invisible, cards stay absolute within hero-graphic */
.float-cards-wrap {
  display: contents;
}

.float-card:nth-child(1) {
  top: 8%; right: -5%;
  animation-delay: 0s;
}
.float-card:nth-child(1) .fc-icon { background: rgba(34, 197, 94, 0.15); }

.float-card:nth-child(2) {
  bottom: 20%; left: -10%;
  animation-delay: -2s;
}
.float-card:nth-child(2) .fc-icon { background: rgba(59, 130, 246, 0.15); }

.float-card:nth-child(3) {
  bottom: 5%; right: 5%;
  animation-delay: -4s;
}
.float-card:nth-child(3) .fc-icon { background: rgba(168, 85, 247, 0.15); }

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

/* ============================================
   SERVICES — What We Do
   ============================================ */
.services {
  padding: 120px 0;
  position: relative;
}

.services-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   THE POSSIBILITIES
   ============================================ */
.possibilities {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(212, 160, 23, 0.03), transparent);
}

.possibilities-header {
  margin-bottom: 72px;
  text-align: center;
}

.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.possibility-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--navy-light);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}

.possibility-item:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.08);
}

.possibility-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.possibility-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.possibility-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.possibilities-cta {
  text-align: center;
  margin-top: 56px;
}

.possibilities-tagline {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .possibilities-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.process {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.5), transparent);
}

.process-header {
  margin-bottom: 72px;
  text-align: center;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

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

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 160, 23, 0.3), var(--gold));
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.15);
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: 120px 0;
}

.why-header {
  margin-bottom: 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.6), rgba(17, 24, 39, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.why-card:hover {
  border-color: rgba(212, 160, 23, 0.15);
}

.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   USE CASES
   ============================================ */
.usecases {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.5), transparent);
}

.usecases-header {
  margin-bottom: 64px;
  text-align: center;
}

.usecases-header .section-subtitle {
  margin: 0 auto;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usecase-card {
  position: relative;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
  overflow: hidden;
}

.usecase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.2);
}

.usecase-card.usecase-card-featured {
  border-color: rgba(212, 160, 23, 0.3);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.06), var(--navy));
  grid-column: span 2;
}

@media (max-width: 768px) {
  .usecase-card.usecase-card-featured {
    grid-column: span 1;
  }
}

.usecase-emoji {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.usecase-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.usecase-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.usecase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.usecase-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--gold-glow);
  color: var(--gold);
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
}

.pricing-header {
  margin-bottom: 64px;
  text-align: center;
}

.pricing-header .section-subtitle {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}

.pricing-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(212, 160, 23, 0.1);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
}

.pricing-tier {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.pricing-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border: none;
  font-weight: 700;
}

.pricing-card.featured .pricing-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* --- Marketing Autopilot Package --- */
.marketing-package {
  margin-top: 56px;
  margin-bottom: 40px;
}

.marketing-package-inner {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(212, 160, 23, 0.02));
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.marketing-package-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.marketing-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.marketing-package h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.marketing-headline {
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.marketing-headline em {
  font-style: italic;
  color: var(--white);
}

.marketing-package .marketing-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 32px;
}

.marketing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.marketing-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.marketing-col ul {
  list-style: none;
  padding: 0;
}

.marketing-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 6px 0;
  line-height: 1.5;
}

.marketing-col li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.marketing-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.marketing-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .marketing-package-inner {
    padding: 32px 24px;
  }
  .marketing-includes {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .marketing-package h3 {
    font-size: 1.6rem;
  }
}

/* --- Scale Partner Package --- */
.scale-package {
  margin-top: 48px;
  margin-bottom: 40px;
}

.scale-package-inner {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(168, 85, 247, 0.06), rgba(212, 160, 23, 0.04));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.scale-package-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #a855f7, var(--gold));
}

.scale-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  color: #c4b5fd;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.scale-package h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.scale-headline {
  font-size: 1.15rem;
  color: #c4b5fd;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.6;
}

.scale-headline em {
  font-style: italic;
  color: var(--white);
  font-weight: 700;
}

.scale-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 32px;
}

.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.scale-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #c4b5fd;
  margin-bottom: 16px;
}

.scale-col ul {
  list-style: none;
  padding: 0;
}

.scale-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 6px 0;
  line-height: 1.5;
}

.scale-col li::before {
  content: '✓';
  color: #a855f7;
  font-weight: 700;
  flex-shrink: 0;
}

.scale-bottom {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.scale-models {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scale-model {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.scale-model-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.scale-model-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.scale-divider {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 0 4px;
  align-self: flex-end;
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  .scale-package-inner {
    padding: 32px 24px;
  }
  .scale-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .scale-package h3 {
    font-size: 1.6rem;
  }
  .scale-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .scale-models {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .scale-divider {
    align-self: flex-start;
    padding-bottom: 0;
  }
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-note strong {
  color: var(--gold);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.5), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-placeholder {
  text-align: center;
  padding: 40px;
}

.about-placeholder .city-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.about-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.about-location-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--navy-deep);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  box-shadow: var(--shadow);
}

.about-content .section-subtitle {
  margin-bottom: 24px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-sig-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-deep);
}

.about-sig-info .name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.about-sig-info .role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  padding: 120px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 60px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info {
  position: relative;
  z-index: 1;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-info .section-subtitle {
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-method .cm-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method a {
  color: var(--gold);
  font-weight: 600;
  transition: opacity var(--transition);
}

.contact-method a:hover { opacity: 0.8; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: border-color var(--transition), background var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--navy);
  color: var(--text-primary);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom .holy-city {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-description { max-width: 100%; margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  /* Hero visual — scale down for tablet, don't hide */
  .hero-visual {
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
    max-width: 600px;
  }
  .hero-graphic {
    max-width: 600px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .halo-ring { display: none; }
  .hero-graphic-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }
  .hero-graphic-center .hero-logo-mark {
    width: 50px;
    height: 67px;
  }
  .float-cards-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .float-card {
    position: static;
    animation: none;
    font-size: 0.75rem;
    padding: 12px 16px;
  }
  .float-card .fc-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  .float-card small { font-size: 0.65rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .pricing-grid.pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: 2; }

  .contact-wrapper { grid-template-columns: 1fr; padding: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 1000;
  }

  .nav-links.open { display: flex; }

  .nav-links a { font-size: 1.2rem; }

  .nav-toggle { display: flex; }

  /* Hero visual — compact for mobile */
  .hero-visual {
    margin: 24px auto 0;
    max-width: 100%;
  }
  .hero-graphic {
    max-width: 100%;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .halo-ring { display: none; }
  .hero-graphic-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100px;
    height: 100px;
    border-radius: 20px;
  }
  .hero-graphic-center .hero-logo-mark {
    width: 40px;
    height: 53px;
  }
  .hero-graphic-center span {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }
  /* Float cards become a column on mobile */
  .float-cards-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .float-card {
    position: static;
    animation: none;
    font-size: 0.7rem;
    padding: 10px 14px;
    white-space: nowrap;
  }
  .float-card .fc-icon {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    border-radius: 6px;
  }
  .float-card small { font-size: 0.6rem; }
  .float-card strong { font-size: 0.72rem; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: span 1; max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .contact-wrapper { padding: 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .hero-visual {
    margin: 16px auto 0;
  }
  .float-card {
    padding: 8px 12px;
    font-size: 0.65rem;
  }
  .float-card .fc-icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  .hero-graphic-center {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }
  .hero-graphic-center .hero-logo-mark {
    width: 36px;
    height: 48px;
  }
}
