/* ============================================
   HEARING ADS - Be Heard Before You're Needed
   Brand Palette: Purple / Gold / Cream
   ============================================ */

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

:root {
  --purple-deep: #2D1B4E;
  --purple-mid: #4A2D7A;
  --purple-light: #6B42A8;
  --purple-glow: #8B5FD4;
  --gold-bright: #D4A843;
  --gold-mid: #C49A38;
  --gold-muted: #B8923A;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --cream-dark: #E8E0D4;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A5A;
  --text-light: #7A7A8A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(45, 27, 78, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 27, 78, 0.12);
  --shadow-lg: 0 8px 40px rgba(45, 27, 78, 0.16);
  --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 27, 78, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.98);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-deep);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--purple-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-bright);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 4px 0;
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--purple-deep) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--purple-mid) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--purple-deep);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--cream-light) 0%, var(--cream) 40%, var(--cream-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 45, 122, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1.5px solid var(--gold-mid);
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--purple-deep);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-question {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-deep);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple-deep);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--purple-deep);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--purple-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--purple-deep);
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
}

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

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-dark .section-header h2 {
  color: var(--cream);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(245, 240, 232, 0.7);
}

/* ============================================
   SERVICES GRID
   ============================================ */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
  border: 1px solid rgba(45, 27, 78, 0.06);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-bright);
}

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

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--gold-bright);
  gap: 10px;
}

/* ============================================
   PHILOSOPHY / VALUE PROP
   ============================================ */

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-content .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.philosophy-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--purple-deep);
  margin-bottom: 20px;
}

.philosophy-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.stat-item {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-bright);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-deep);
}

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

.philosophy-visual {
  position: relative;
}

.philosophy-card {
  background: var(--purple-deep);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.philosophy-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.philosophy-card .quote-mark {
  font-size: 4rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

/* ============================================
   NAMEDROP FEATURE
   ============================================ */

.namedrop-section {
  background: linear-gradient(170deg, var(--purple-deep) 0%, #1A0F33 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.namedrop-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 66, 168, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(212, 168, 67, 0.1) 0%, transparent 50%);
}

.namedrop-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.namedrop-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: var(--gold-bright);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.namedrop-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 24px;
  color: var(--cream);
}

.namedrop-content h2 .gold {
  color: var(--gold-bright);
}

.namedrop-content > p {
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 48px;
  line-height: 1.7;
}

.namedrop-demo {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.namedrop-example {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  text-align: left;
  min-width: 280px;
  backdrop-filter: blur(10px);
}

.namedrop-example .location {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.namedrop-example .message {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

.namedrop-example .message strong {
  color: var(--gold-bright);
}

/* ============================================
   SIGNALDROP SECTION
   ============================================ */

.signaldrop-section {
  background: linear-gradient(170deg, #1A0F33 0%, var(--purple-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.signaldrop-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 168, 67, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(107, 66, 168, 0.15) 0%, transparent 50%);
}

.signaldrop-badge {
  background: var(--cream) !important;
  color: var(--purple-deep) !important;
}

.namedrop-after {
  border-color: rgba(212, 168, 67, 0.3) !important;
  background: rgba(212, 168, 67, 0.08) !important;
}

.namedrop-strategy {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.5);
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   VIDEO EMBED SECTION
   ============================================ */

.video-embed {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.video-play-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.video-play-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-bright);
  margin-left: 4px;
}

.video-caption {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  position: relative;
  z-index: 2;
}

/* ============================================
   COMPACT SERVICES
   ============================================ */

.services-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-compact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid rgba(45, 27, 78, 0.06);
  transition: var(--transition);
}

.service-compact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon-sm {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-sm svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-bright);
}

.service-compact-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 4px;
}

.service-compact-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

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

  .video-placeholder {
    padding: 60px 24px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

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

.about-visual {
  background: var(--purple-deep);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.about-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.about-logo-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(245, 240, 232, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--purple-deep);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-content .highlight {
  font-weight: 600;
  color: var(--purple-deep);
}

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--purple-deep);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--purple-deep);
}

.contact-detail-text {
  font-size: 0.92rem;
  color: var(--text-mid);
}

.contact-detail-text strong {
  display: block;
  color: var(--purple-deep);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 27, 78, 0.06);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 66, 168, 0.1);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--purple-deep);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ============================================
   LEAD MAGNET SECTION
   ============================================ */

.lead-magnet {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(45, 27, 78, 0.06);
}

.lead-magnet h3 {
  font-size: 1.8rem;
  color: var(--purple-deep);
  margin-bottom: 16px;
}

.lead-magnet p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lead-magnet-checklist {
  margin-bottom: 28px;
}

.lead-magnet-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.lead-magnet-checklist li::before {
  content: '✓';
  font-weight: 700;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 1px;
}

.lead-magnet-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.lead-magnet-form h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 20px;
  text-align: center;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(45, 27, 78, 0.06);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.2) 0%, transparent 70%);
}

.blog-card-category {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--purple-deep);
  color: rgba(245, 240, 232, 0.7);
  padding: 60px 0 30px;
}

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.88rem;
  margin-bottom: 20px;
  color: rgba(245, 240, 232, 0.5);
}

.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.6);
}

.footer ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--gold-bright);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--cream);
}

/* ============================================
   INNER PAGE STYLES
   ============================================ */

.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--cream-light) 0%, var(--cream) 100%);
  text-align: center;
}

.page-hero .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--purple-deep);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-content {
  padding: 80px 0;
}

.page-content h2 {
  font-size: 1.8rem;
  color: var(--purple-deep);
  margin-bottom: 16px;
  margin-top: 48px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 720px;
}

.page-content .benefit-list {
  margin: 24px 0;
}

.page-content .benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.page-content .benefit-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.page-cta-section {
  background: var(--purple-deep);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: var(--cream);
  margin-top: 60px;
}

.page-cta-section h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.page-cta-section p {
  color: rgba(245, 240, 232, 0.7);
  max-width: 500px;
  margin: 0 auto 28px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bright);
  color: var(--purple-deep);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}

.blog-post-content h1 {
  font-size: 2.2rem;
  color: var(--purple-deep);
  margin-bottom: 16px;
}

.blog-post-content .post-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.blog-post-content h2 {
  font-size: 1.5rem;
  color: var(--purple-deep);
  margin-top: 40px;
  margin-bottom: 12px;
}

.blog-post-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  .philosophy {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lead-magnet {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--cream-dark);
  }
  
  .hero { min-height: auto; padding: 120px 0 60px; }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .namedrop-demo {
    flex-direction: column;
    align-items: center;
  }
  
  .philosophy-stats {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }
