/* BrilliantZone — Radiant Minimal Theme (Enhanced) */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* === CSS Variables === */
:root {
  --bg-primary: #FFFFFF;
  --bg-section: #F8F9FC;
  --bg-warm: #FDFBF7;
  --accent-primary: #1D4ED8;
  --accent-primary-light: #3B82F6;
  --accent-secondary: #D4A853;
  --accent-gold: #FBBF24;
  --accent-highlight: #38BDF8;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-elevated: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-primary-light);
}

/* === Layout === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent-primary);
  position: relative;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active:not(.nav-cta)::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active:not(.nav-cta) {
  color: var(--text-primary);
}

/* Nav Apply button */
.nav-cta {
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

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

.nav-cta:hover {
  color: white !important;
  opacity: 0.95;
}

.nav-cta.active {
  color: white !important;
  box-shadow: 0 2px 12px rgba(29, 78, 216, 0.4);
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #2563EB 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(29, 78, 216, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
  background: rgba(29, 78, 216, 0.06);
  transform: translateY(-1px);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(251, 191, 36, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(56, 189, 248, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(29, 78, 216, 0.06), transparent),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-primary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(56, 189, 248, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 25s ease-in-out infinite;
}

.hero-particles::before {
  background: rgba(251, 191, 36, 0.2);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.hero-particles::after {
  background: rgba(56, 189, 248, 0.15);
  bottom: 20%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 78, 216, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 2rem;
}

/* Hero split layout (modern) */
.hero-split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 85vh;
  padding: 4rem 2rem;
}

.hero-split .hero-content {
  text-align: left;
  padding: 0;
}

.hero-split .hero-ctas {
  justify-content: flex-start;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.15);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40%;
  height: 40%;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  opacity: 0.15;
  border-radius: var(--radius);
  z-index: 0;
}

@media (max-width: 900px) {
  .hero-split .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-split .hero-content { text-align: center; }
  .hero-split .hero-ctas { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image-wrapper img { aspect-ratio: 16/10; }
}

/* Split section (image + text) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.split-content p { margin-bottom: 1rem; }

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.split-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.split-reverse .split-content { order: 2; }
.split-reverse .split-image { order: 1; }

@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .split-image { order: -1 !important; }
  .split-content { order: 1 !important; }
}

/* Platform visual (full-width image) */
.platform-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.platform-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 21/9;
}

.platform-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.3) 100%);
  pointer-events: none;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
}

.contact-form-card {
  padding: 2.5rem;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-image { max-width: 400px; margin: 0 auto; width: 100%; }
}

/* Card with icon */
.card-icon .card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08) 0%, rgba(251, 191, 36, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
  transition: all var(--transition);
}

.card-icon:hover .card-icon-wrap {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12) 0%, rgba(251, 191, 36, 0.1) 100%);
  transform: scale(1.05);
}

.hero h1 {
  font-family: var(--font-display);
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subheadline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Section Divider === */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.section-divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
}

.section-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-secondary);
}

/* === Section Styles === */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-section);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title .section-subtitle {
  font-size: 1.15rem;
  color: var(--accent-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title p {
  max-width: 640px;
  margin: 0 auto;
}

/* === Cards === */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.06);
}

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

.card-accent-top {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary)) 1;
}

.card-accent-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50px;
  background: linear-gradient(180deg, var(--accent-secondary), transparent);
  border-radius: 0 0 3px 0;
}

/* === Grid Layouts === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* === Email List === */
.email-list {
  list-style: none;
}

.email-list li {
  padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.04) 0%, rgba(56, 189, 248, 0.02) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 0.95rem;
  color: var(--accent-primary);
  border: 1px solid rgba(29, 78, 216, 0.08);
  transition: all var(--transition);
}

.email-list li:hover {
  border-color: rgba(29, 78, 216, 0.15);
  transform: translateX(4px);
}

/* === Comparison === */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

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

.comparison-col {
  padding: 2rem !important;
  position: relative;
}

.comparison-col:last-child {
  border: 2px solid rgba(29, 78, 216, 0.1);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.02) 0%, transparent 100%);
}

.comparison-col h4 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-secondary);
  font-family: var(--font-display);
}

.comparison-col ul {
  list-style: none;
}

.comparison-col li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.comparison-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* === Pricing Cards === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.pricing-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-6px);
}

.pricing-card.highlight {
  border-color: rgba(29, 78, 216, 0.2);
  box-shadow: 0 20px 50px rgba(29, 78, 216, 0.12);
  transform: scale(1.02);
}

.pricing-card.highlight:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-card.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  border-radius: var(--radius) var(--radius) 0 0;
}

.pricing-card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-card li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* === Toggle === */
.toggle-group {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: inline-flex;
}

.toggle-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.toggle-btn.active {
  background: var(--accent-primary);
  color: white;
}

.toggle-btn:not(.active):hover {
  color: var(--text-primary);
}

/* === Form Styles === */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.08);
}

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

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.form-section:last-of-type { border-bottom: none; }

.form-section h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  color: var(--text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.apply-form {
  padding: 2.5rem;
}

.btn-block {
  width: 100%;
}

/* === Footer === */
.footer {
  background: linear-gradient(180deg, #0F172A 0%, #0A0F1A 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer h4 {
  font-family: var(--font-display);
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

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

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.6rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* === Service Scope Box === */
.scope-box {
  background: white;
  border-left: 4px solid var(--accent-primary);
  padding: 2rem 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.scope-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.02));
  border-radius: 0 var(--radius) 0 0;
  pointer-events: none;
}

.scope-box h4 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.scope-box ul {
  list-style: none;
}

.scope-box li {
  padding: 0.35rem 0;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.scope-box li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
}

/* === Page Headers === */
.page-header {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(251, 191, 36, 0.08), transparent 70%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-primary) 100%);
}

.page-header {
  position: relative;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-header-image .page-header-bg {
  opacity: 0.2;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
}

/* === Content Sections === */
.content-section {
  max-width: 720px;
  margin: 0 auto;
}

.content-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.content-section ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.content-section li {
  margin-bottom: 0.35rem;
  color: var(--text-secondary);
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.35s; }
.fade-in:nth-child(4) { animation-delay: 0.5s; }
.fade-in:nth-child(5) { animation-delay: 0.65s; }
.fade-in:nth-child(6) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* === Value List === */
.value-list {
  list-style: none;
  max-width: 400px;
}

.value-list li {
  padding: 0.65rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-primary);
  font-weight: 500;
}

.value-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-size: 0.6rem;
}

/* === Audience list (who it's for) === */
.audience-list {
  list-style: none;
}

.audience-list li {
  padding: 0.65rem 1rem;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.06) 0%, transparent 100%);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-secondary);
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition);
}

.audience-list li:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(56, 189, 248, 0.04) 100%);
  transform: translateX(4px);
}

/* === Utility === */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1.5rem; }

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 0.08em; padding: 0.35rem 0.85rem; }
}

@media (max-width: 600px) {
  .nav-inner { flex-direction: column; gap: 1rem; padding: 1rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
