/* Social Media Pro Agency - Brand Styles */
/* Based on SMP Gold/White Marble Branding */

:root {
  --gold: #c5a572;
  --gold-dark: #9a7b4a;
  --gold-light: #e8d5b5;
  --cream: #faf8f5;
  --white: #ffffff;
  --charcoal: #2c2c2c;
  --gray: #6b6b6b;
  --gray-light: #f0eeea;
  --border: #e5e0d8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Layout */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* Header & Navigation */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 2px;
}

.logo span {
  color: var(--gold);
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

nav a {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.cta-btn.outline {
  background: transparent;
  color: var(--gold);
}

.cta-btn.outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  text-align: center;
  padding: 120px 0 100px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

/* Gold accent line */
.accent-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

/* Cards & Pricing */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card.featured {
  border: 2px solid var(--gold);
  position: relative;
}

.card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.price {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

.card ul {
  list-style: none;
  margin: 24px 0;
}

.card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--gray);
  font-size: 0.95rem;
}

.card ul li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
  font-weight: bold;
}

.card ul li.exclude::before {
  content: "—";
  color: var(--gray);
}

/* Timeline Truth Box */
.timeline-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 40px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.timeline-box h3 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.timeline-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.month-block {
  text-align: center;
  padding: 20px;
}

.month-block .month-num {
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Wrong Fit Warning */
.warning-box {
  background: var(--gray-light);
  border: 1px solid var(--border);
  padding: 30px 40px;
  border-radius: 8px;
  margin-top: 40px;
}

.warning-box h4 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

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

.warning-box ul li {
  padding: 6px 0;
  color: var(--gray);
}

.warning-box ul li::before {
  content: "→";
  color: var(--gold);
  margin-right: 10px;
}

/* Case Studies */
.case-study {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.case-study h3 {
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.metrics-table th {
  background: var(--gold-light);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.metrics-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
}

.metrics-table .highlight {
  color: var(--gold-dark);
  font-weight: 600;
}

/* Contact Form */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group label .required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
  font-family: inherit;
}

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

.form-group .hint {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

fieldset {
  border: none;
  margin-bottom: 20px;
}

fieldset legend {
  font-weight: 500;
  margin-bottom: 10px;
}

.radio-group label {
  display: block;
  padding: 8px 0;
  font-weight: 400;
  cursor: pointer;
}

.radio-group input {
  width: auto;
  margin-right: 10px;
}

/* What Happens Next Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

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

.step-num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 16px;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--gray);
  padding: 60px 0 30px;
  text-align: center;
}

footer .logo-img {
  filter: brightness(1.5);
  margin-bottom: 20px;
}

footer a {
  color: var(--gold-light);
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.85rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h4 {
  margin-bottom: 8px;
  color: var(--charcoal);
}

.faq-item p {
  color: var(--gray);
  margin: 0;
}

/* Reporting Standards */
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.report-list h4 {
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.report-list ul {
  list-style: none;
}

.report-list ul li {
  padding: 8px 0;
  color: var(--gray);
}

.report-list ul li::before {
  content: "✓";
  color: #4caf50;
  margin-right: 10px;
}

.report-list.dont ul li::before {
  content: "✕";
  color: #f44336;
}

/* About Page Specifics */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.principle {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.principle h4 {
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.comparison th {
  background: var(--charcoal);
  color: var(--white);
  padding: 14px;
  text-align: left;
}

.comparison td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
}

.comparison tr:nth-child(even) {
  background: var(--gray-light);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero h1 { font-size: 2.2rem; }

  .header-inner {
    position: relative;
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .timeline-months {
    grid-template-columns: 1fr;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

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

.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s, background 0.2s;
}

.faq-card.open .faq-toggle {
  transform: rotate(180deg);
  background: var(--gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s;
  padding: 0 30px;
}

.faq-card.open .faq-answer {
  max-height: 300px;
  padding: 0 30px 24px;
}

.faq-answer p {
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--gold-light);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 8px 0;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.testimonial-card .client-name {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.testimonial-card .client-business {
  font-size: 0.8rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
  font-style: italic;
}

/* Urgency Banner */
.urgency-banner {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.urgency-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* Guarantee Box */
.guarantee-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  margin: 40px 0;
}

.guarantee-box h3 {
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.guarantee-box p {
  margin-bottom: 0;
  color: var(--gray);
}

/* Social Proof Bar */
.social-proof-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.social-proof-bar h3 {
  margin-bottom: 24px;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logos img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.client-logos img:hover {
  filter: grayscale(0%);
}

/* === TRANSCEND CASE STUDY — Premium Dark Section === */

.transcend-hero {
  background: #0a0a0a;
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.transcend-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(197,165,114,0.08) 0%, transparent 50%);
  animation: transcend-glow 8s ease-in-out infinite;
}

@keyframes transcend-glow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 5%); }
}

.transcend-hero .container {
  position: relative;
  z-index: 1;
}

.transcend-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.transcend-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

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

.transcend-hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.transcend-hero .context-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.transcend-hero .context-badge strong {
  color: #fff;
  font-weight: 600;
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Metrics Grid */
.transcend-metrics {
  background: #0a0a0a;
  padding: 0 0 80px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.metric-cell {
  background: #0f0f0f;
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
}

.metric-cell:hover {
  background: #141414;
}

.metric-cell .metric-value {
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-cell .metric-value .prefix {
  font-size: 1.5rem;
  color: var(--gold);
}

.metric-cell .metric-value .suffix {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
}

.metric-cell .metric-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.metric-cell .metric-change {
  font-size: 0.8rem;
  color: #4ade80;
  font-weight: 500;
}

.metric-cell .metric-change.down {
  color: #4ade80;
}

.metric-cell .metric-change.up {
  color: #f87171;
}

.metric-cell.highlight {
  background: rgba(197,165,114,0.06);
  border: 1px solid rgba(197,165,114,0.2);
}

/* Performance Insights */
.transcend-insights {
  background: #0a0a0a;
  padding: 80px 0;
}

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

.insight-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 48px;
  transition: border-color 0.3s, transform 0.3s;
}

.insight-card:hover {
  border-color: rgba(197,165,114,0.3);
  transform: translateY(-4px);
}

.insight-card .insight-number {
  font-size: 3.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

.insight-card .insight-number em {
  color: var(--gold);
  font-style: normal;
}

.insight-card .insight-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 12px;
}

.insight-card .insight-detail {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Revenue Impact */
.transcend-revenue {
  background: #0a0a0a;
  padding: 80px 0;
  text-align: center;
}

.revenue-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.revenue-item {
  text-align: center;
}

.revenue-item .rev-num {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
}

.revenue-item .rev-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.revenue-operator {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}

.revenue-result {
  background: rgba(197,165,114,0.1);
  border: 2px solid rgba(197,165,114,0.3);
  border-radius: 16px;
  padding: 32px 48px;
}

.revenue-result .rev-num {
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
}

/* Screenshots Gallery */
.transcend-proof {
  background: #0a0a0a;
  padding: 80px 0;
}

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

.proof-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.proof-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.proof-item img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-item.wide {
  grid-column: span 2;
}

.proof-caption {
  padding: 16px 20px;
  background: #0f0f0f;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA */
.transcend-cta {
  background: #0a0a0a;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.transcend-cta h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 32px;
}

.transcend-cta h2 em {
  color: var(--gold);
  font-style: italic;
}

.transcend-cta p {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 40px;
}

.transcend-cta .cta-btn {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  font-size: 0.9rem;
  padding: 16px 40px;
}

.transcend-cta .cta-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .transcend-hero h1 {
    font-size: 2.2rem;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-cell .metric-value {
    font-size: 2rem;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-item.wide {
    grid-column: span 1;
  }
  .revenue-equation {
    flex-direction: column;
    gap: 24px;
  }
}
