/* TEDx Coaching Page - Standalone Styles */
/* Inspired by modern coaching sites with bold visuals and clear hierarchy */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e62b1e;
    --dark-red: #c41e14;
    --dark-bg: #1a1a1a;
    --light-bg: #EEF1F4;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-gray: #666666;
    --text-light: #999999;
    --border-light: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--dark-red);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 6rem 0 5rem;
    text-align: center;
    overflow: hidden;
    background: #1a1a1a;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero h1 {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero .description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero .note {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
}

/* Stats Bar */
.stats-section {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stats-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Auto-Scrolling Company Logos */
.company-logos-wrapper {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
}

.company-logos-track {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    margin: 0 2rem;
}

.company-logo .company-img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.company-logo .company-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Pause animation on hover */
.company-logos-wrapper:hover .company-logos-track {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.section-light {
    background: var(--white);
}

.section-gray {
    background: var(--light-bg);
}


/* Component styles moved to normalization patch at end of file */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}
.section-header p{
  max-width: 720px;
  color: rgba(0,0,0,0.70);
}

/* Feature Grid with Icons */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-red);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

/* About Section with Image */
.about-section {
    background: var(--white);
    padding: 80px 0;
}

.about-content {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    margin-top: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.about-text h2 {
    margin-bottom: 32px;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #1d1d1f;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
    color: #1d1d1f;
    font-weight: 400;
}

.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 48px;
    justify-content: center;
}

.badge {
    background: #f5f5f7;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #1d1d1f;
    font-weight: 600;
    border: none;
    letter-spacing: 0.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge:hover{
    background: #e8e8ed;
    transform: translateY(-2px);
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.col-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.col-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Lists */
.clean-list {
    list-style: none;
    padding: 0;
}

.clean-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.clean-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
}

/* Checklist Style */
.checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.checklist li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.2rem;
}

.checklist li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Blockquote */
blockquote {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    border-left: 4px solid var(--primary-red);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
    font-style: italic;
}

blockquote p {
    margin: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

blockquote strong {
    color: var(--primary-red);
    font-style: normal;
    font-weight: 600;
}

blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

/* Panel styles moved to normalization patch at end of file */

/* Steps/Process */
.steps {
    max-width: 800px;
    margin: 3rem auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-content p {
    margin-bottom: 0.75rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    color: var(--primary-red);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Week Timeline */
.week-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.timeline-marker {
    flex-shrink: 0;
}

.week-badge {
    background: var(--primary-red);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image .about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.about-image .about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    min-height: 400px;
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 2rem;
    }
}

/* =========================================================
   PATCH: Layout + tiles normalization (single source of truth)
   ========================================================= */


/* 2) Stop horizontal jitter/overflow from logo strip */
.company-logos-wrapper {
  width: 100%;
  margin-left: 0;
  overflow: hidden;
}

/* 3) One consistent "card language" for tiles/panels/pricing */
:root {
  --radius-card: 16px;
  --card-pad: 2.25rem;
}

/* Apply consistent radius everywhere */
.panel,
.feature-card,
.pricing-card {
  border-radius: var(--radius-card);
}

/* Panels: consistent padding + premium hover */
.panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: var(--card-pad);
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.panel:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
  border-color: rgba(230, 43, 30, 0.25);
}
.panel h3,
.panel h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* Feature tiles: align heights */
.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}
.feature-card h3 {
  min-height: 3.2rem; /* aligns tile titles across row */
}

/* Pricing tiles: align CTA buttons at bottom and remove scaling misalignment */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 2px solid var(--border-light);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 18px;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  border-color: var(--primary-red);
}
.pricing-card h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 0.5rem 0 0.5rem 0;
  line-height: 1;
}
.pricing-card .description {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.70);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding: 0 1rem;
}
.pricing-card .duration {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.50);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card .clean-list {
  text-align: left;
  margin: 2rem 0;
  padding-left: 0;
}

.pricing-card .clean-list li {
  padding: 0.85rem 0;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.80);
}

.pricing-card .clean-list li::before {
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-card .clean-list li strong {
  color: var(--primary-red);
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
  font-size: 1.05rem;
  padding: 1.1rem 2rem;
  font-weight: 600;
}

/* Featured card: remove scale to keep row height aligned */
.pricing-card.featured {
  transform: none;
  border-color: var(--primary-red);
  box-shadow: 0 12px 40px rgba(230, 43, 30, 0.2);
  border-width: 2.5px;
}
.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(230, 43, 30, 0.3);
  transform: translateY(-8px);
}
.pricing-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: var(--white);
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Subtle hero typography normalization */
.hero .subtitle {
  line-height: 1.35;
}

/* ===== Brand pass: remove template feel ===== */

.hero-support{
  font-size: 1.05rem;
  color: #cfcfcf;
  max-width: 820px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

/* Brand motif */
.dot{
  display:inline-block;
  width:12px; height:12px;
  border-radius:999px;
  background: var(--primary-red);
  box-shadow: 0 0 0 6px rgba(230,43,30,0.15);
}

/* Replace emoji icon layout with motif */
.feature-icon{
  display:flex;
  justify-content:center;
  margin-bottom: 1.25rem;
}

/* Section headers: left-align on desktop (premium feel) */
@media (min-width: 900px){
  .section-header{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }
  .section-header p{
    max-width: 720px;
  }
}

/* Reduce "template center stack" feel on desktop */
@media (min-width: 900px){
  .feature-grid{
    text-align:left;
  }
  .feature-card{
    text-align:left;
  }
}

/* Logo strip: remove 100vw hack + add edge fades */
.company-logos-wrapper{
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  position: relative;
}
.company-logos-wrapper::before,
.company-logos-wrapper::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:80px;
  pointer-events:none;
  z-index:2;
}
.company-logos-wrapper::before{
  left:0;
  background: linear-gradient(to right, var(--white), rgba(255,255,255,0));
}
.company-logos-wrapper::after{
  right:0;
  background: linear-gradient(to left, var(--white), rgba(255,255,255,0));
}

/* Keep inner cards crisp against warm-slate sections */
.timeline-item { background: #ffffff; }
.feature-icon { background: #ffffff; border: 1px solid rgba(0,0,0,0.06); }
.badge { background: #ffffff; }

/* ===== Deliverables accordion (premium) ===== */
.deliverables-accordion{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.06);
}

.deliverables-item{
  border-top:1px solid rgba(0,0,0,0.06);
}
.deliverables-item:first-child{
  border-top:none;
}

.deliverables-button{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:22px 24px;
  background:transparent;
  border:none;
  cursor:pointer;
  text-align:left;
}

.deliverables-title{
  font-size:1.1rem;
  font-weight:600;
  color:#111;
  line-height:1.35;
}

.deliverables-icon{
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,0.12);
  color:#111;
  flex:0 0 auto;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.deliverables-button:hover .deliverables-icon{
  background:rgba(230,43,30,0.08);
  border-color:rgba(230,43,30,0.35);
  color:var(--primary-red);
}

/* Expanded state */
.deliverables-item.active .deliverables-icon{
  transform:rotate(45deg); /* turns + into × */
  background:rgba(230,43,30,0.10);
  border-color:rgba(230,43,30,0.45);
  color:var(--primary-red);
}

.deliverables-content{
  display:none;
  padding:0 24px 22px 24px;
  color:rgba(0,0,0,0.75);
  line-height:1.65;
}
.deliverables-item.active .deliverables-content{
  display:block;
}

/* Ensure no random red highlighting due to link styles */
.deliverables-accordion a,
.deliverables-accordion .deliverables-title{
  color:#111;
}

/* ===== What Makes This Different: Evaluation Card ===== */
.eval-card{
  max-width: 880px;
  margin: 2rem 0 0; /* left aligned */
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px 28px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.eval-intro{
  margin: 0 0 18px;
  color: rgba(0,0,0,0.75);
  line-height: 1.6;
  font-size: 1.05rem;
}

.eval-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px; /* tighter, more premium */
}

.eval-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 12px;
  background: rgba(238,241,244,0.55); /* warm-slate tint */
  border: 1px solid rgba(0,0,0,0.04);
}

.eval-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  margin-top: 2px;
  background: rgba(230,43,30,0.12);
  border: 1px solid rgba(230,43,30,0.30);
  position: relative;
  flex: 0 0 auto;
}
.eval-icon::after{
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 14px;
}

.eval-sep{
  margin: 0 6px;
  color: rgba(0,0,0,0.35);
}

.eval-note{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.75);
  line-height: 1.6;
}
/* ===== Bonuses: premium cards ===== */
.bonuses-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 2rem;
}

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

.bonus-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.bonus-card--physical{
  border-color: rgba(230,43,30,0.25);
  box-shadow:0 12px 36px rgba(230,43,30,0.06), 0 10px 30px rgba(0,0,0,0.06);
}

.bonus-top{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.bonus-badge{
  display:inline-flex;
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  border:1px solid rgba(0,0,0,0.10);
  color:rgba(0,0,0,0.70);
  background: rgba(238,241,244,0.65);
}

.bonus-card--physical .bonus-badge{
  border-color: rgba(230,43,30,0.25);
  background: rgba(230,43,30,0.08);
  color: rgba(230,43,30,0.90);
}

.bonus-title{
  font-size:1.35rem;
  line-height:1.25;
  margin:0;
  color:#111;
}

.bonus-sub{
  margin:0;
  color:rgba(0,0,0,0.72);
  line-height:1.55;
}

.bonus-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.bonus-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(0,0,0,0.80);
  line-height:1.5;
}

.bonus-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  margin-top:6px;
  background: rgba(230,43,30,0.20);
  border:1px solid rgba(230,43,30,0.35);
  flex:0 0 auto;
}

.bonus-foot{
  margin:6px 0 0;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,0.08);
  color:rgba(0,0,0,0.62);
  font-size:0.95rem;
}
/* ===== Group Option: Momentum Cohort card ===== */
.cohort-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
  overflow:hidden;
}

.cohort-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding:28px;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.cohort-badge{
  display:inline-flex;
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  border:1px solid rgba(230,43,30,0.25);
  background: rgba(230,43,30,0.08);
  color: rgba(230,43,30,0.90);
}

.cohort-title{
  margin:10px 0 6px;
  font-size:1.6rem;
  line-height:1.2;
  color:#111;
}

.cohort-sub{
  margin:0;
  color:rgba(0,0,0,0.70);
  line-height:1.55;
}

.cohort-pricebox{
  min-width: 220px;
  text-align:right;
  background: rgba(238,241,244,0.60);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  padding:14px 16px;
}

.cohort-price{
  font-size:2.1rem;
  font-weight:800;
  color: var(--primary-red);
  line-height:1;
}

.cohort-price-note{
  margin-top:6px;
  font-size:0.95rem;
  color: rgba(0,0,0,0.60);
}

.cohort-body{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  padding:28px;
}

.cohort-col{
  background: rgba(238,241,244,0.45);
  border:1px solid rgba(0,0,0,0.05);
  border-radius:16px;
  padding:20px;
}

.cohort-h{
  margin:0 0 12px;
  font-size:1.05rem;
  letter-spacing:0.02em;
  color:#111;
}

.cohort-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.cohort-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(0,0,0,0.80);
  line-height:1.55;
}

.cohort-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  margin-top:7px;
  background: rgba(230,43,30,0.20);
  border:1px solid rgba(230,43,30,0.35);
  flex:0 0 auto;
}

.cohort-note{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.75);
  line-height:1.55;
}

.cohort-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 28px;
  border-top:1px solid rgba(0,0,0,0.06);
  background: #fff;
}

.cohort-guardrail{
  color: rgba(0,0,0,0.65);
  line-height:1.5;
  max-width: 720px;
}

@media (max-width: 900px){
  .cohort-head{ flex-direction:column; }
  .cohort-pricebox{ width:100%; text-align:left; min-width: 0; }
  .cohort-body{ grid-template-columns: 1fr; }
  .cohort-foot{ flex-direction:column; align-items:stretch; }
  .cohort-foot .btn{ width:100%; }
}
/* ===== Stage Circle (Alumni) card ===== */
.circle-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
  overflow:hidden;
}

.circle-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding:28px;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.circle-badge{
  display:inline-flex;
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  border:1px solid rgba(0,0,0,0.10);
  background: rgba(238,241,244,0.65); /* warm slate tint */
  color: rgba(0,0,0,0.70);
}

.circle-title{
  margin:10px 0 6px;
  font-size:1.45rem;
  line-height:1.2;
  color:#111;
}

.circle-sub{
  margin:0;
  color:rgba(0,0,0,0.70);
  line-height:1.55;
  max-width: 720px;
}

.circle-pricebox{
  min-width: 260px;
  text-align:right;
  background: rgba(238,241,244,0.60);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  padding:14px 16px;
}

.circle-price{
  font-size:1.9rem;
  font-weight:800;
  color: var(--primary-red);
  line-height:1.05;
}

.circle-price span{
  font-size:1rem;
  font-weight:700;
  color: rgba(0,0,0,0.55);
  margin-left: 6px;
}

.circle-price-note{
  margin-top:6px;
  font-size:0.95rem;
  color: rgba(0,0,0,0.60);
}

.circle-body{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  padding:28px;
}

.circle-col{
  background: rgba(238,241,244,0.45);
  border:1px solid rgba(0,0,0,0.05);
  border-radius:16px;
  padding:20px;
}

.circle-h{
  margin:0 0 12px;
  font-size:1.05rem;
  letter-spacing:0.02em;
  color:#111;
}

.circle-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.circle-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(0,0,0,0.80);
  line-height:1.55;
}

.circle-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  margin-top:7px;
  background: rgba(230,43,30,0.20);
  border:1px solid rgba(230,43,30,0.35);
  flex:0 0 auto;
}

.circle-access{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.72);
  line-height:1.55;
}

.circle-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 28px;
  border-top:1px solid rgba(0,0,0,0.06);
  background:#fff;
}

.circle-note{
  color: rgba(0,0,0,0.65);
  line-height:1.5;
  max-width: 720px;
}

@media (max-width: 900px){
  .circle-head{ flex-direction:column; }
  .circle-pricebox{ width:100%; text-align:left; min-width: 0; }
  .circle-body{ grid-template-columns: 1fr; }
  .circle-foot{ flex-direction:column; align-items:stretch; }
  .circle-foot .btn{ width:100%; }
}
.scope-note{
  margin-top: 0.75rem;
  color: rgba(0,0,0,0.65);
  font-size: 0.98rem;
}
/* Deliverables: badges + tighter heading layout */
.deliverables-heading{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 0;
}

.deliverables-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:0.72rem;
  letter-spacing:0.10em;
  text-transform:uppercase;
  border:1px solid rgba(0,0,0,0.10);
  background: rgba(238,241,244,0.65); /* warm slate tint */
  color: rgba(0,0,0,0.70);
  flex: 0 0 auto;
}

.deliverables-title{
  font-size:1.1rem;
  font-weight:600;
  color:#111;
  line-height:1.35;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* Optional: make badges subtly “brand” on hover/active */
.deliverables-button:hover .deliverables-badge{
  border-color: rgba(230,43,30,0.25);
}

.deliverables-item.active .deliverables-badge{
  border-color: rgba(230,43,30,0.25);
  background: rgba(230,43,30,0.08);
  color: rgba(230,43,30,0.90);
}

/* On small screens allow wrapping instead of truncation */
@media (max-width: 700px){
  .deliverables-title{
    white-space:normal;
  }
  .deliverables-heading{
    align-items:flex-start;
  }
}
/* ===== Mobile fix for eval-list tiles ===== */
@media (max-width: 768px) {
  .eval-list li{
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 12px;
    row-gap: 6px;
    align-items: start;
  }

  /* Keep icon in column 1 */
  .eval-list .eval-icon{
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 2px;
  }

  /* Move all text into column 2 */
  .eval-list li strong{
    grid-column: 2;
    margin-right: 8px;
  }

  /* The dash causes awkward wrapping on mobile */
  .eval-list .eval-sep{
    display: none;
  }
}
/* ===== Deliverables accordion: mobile visual fix ===== */
@media (max-width: 768px){

  /* Slightly tighter row padding */
  .deliverables-button{
    padding: 18px 16px;
    align-items: flex-start;
  }

  /* Let heading take full width and wrap cleanly */
  .deliverables-heading{
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;   /* stack badge above title */
    align-items: flex-start;
    gap: 10px;
  }

  /* Badge: smaller + less wide */
  .deliverables-badge{
    padding: 6px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  /* Title: allow wrapping, remove truncation */
  .deliverables-title{
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.2;
    font-size: 1.15rem;
  }

  /* Plus icon: keep top-right, don’t hog space */
  .deliverables-icon{
    width: 36px;
    height: 36px;
    margin-top: 2px;
    flex: 0 0 auto;
  }
}

/* ===== Visual Architecture: Credibility Showcase ===== */
.credibility-showcase{
  display: block;
  margin-bottom: 80px;
}

.primary-credential{
  width: 100%;
  max-width: 420px;
  margin: 0 auto 64px;
}

.primary-credential img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-credential img:hover{
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.16);
}

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

.credential-photo{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.credential-photo:hover{
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.credential-photo img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.credential-label{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.5));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.credential-photo:hover .credential-label{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px){
  .credential-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  
  .credential-photo img{
    height: 260px;
  }
}

@media (max-width: 768px){
  .about-section{
    padding: 60px 0;
  }
  
  .about-content{
    padding: 0 1.5rem;
  }
  
  .credibility-showcase{
    margin-bottom: 60px;
  }
  
  .primary-credential{
    max-width: 360px;
    margin-bottom: 48px;
  }
  
  .credential-grid{
    gap: 16px;
  }
  
  .credential-photo img{
    height: 220px;
  }
  
  .credential-label{
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-text h2{
    font-size: 2.25rem;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
  }
  
  .about-text p{
    font-size: 1.05rem;
    line-height: 1.5;
  }
  
  .badges{
    margin-top: 36px;
  }
}

/* ===== Hero Headshot Enhancement ===== */
.hero-headshot{
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  object-fit: cover;
  z-index: 2;
}

@media (max-width: 768px){
  .hero-headshot{
    width: 160px;
    height: 160px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== Process Visualization ===== */
.eval-card-enhanced{
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

.eval-visual{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-photo{
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-caption{
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  font-style: italic;
  text-align: center;
}

@media (max-width: 900px){
  .eval-card-enhanced{
    grid-template-columns: 1fr;
  }
  
  .eval-visual{
    order: -1;
  }
}

/* ===== Step Visual Enhancement ===== */
.step{
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: start;
}

.step:nth-child(even){
  grid-template-columns: 1fr 400px;
}

.step:nth-child(even) .step-visual{
  order: 2;
}

.step-visual{
  width: 100%;
}

.step-visual img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

@media (max-width: 900px){
  .step{
    grid-template-columns: 1fr !important;
  }
  
  .step:nth-child(even) .step-visual{
    order: -1;
  }
  
  .step-visual{
    margin-bottom: 16px;
  }
}

/* ===== Bonus Visual Enhancement ===== */
.bonus-visual{
  width: 100%;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.bonus-visual img{
  width: 100%;
  height: auto;
  display: block;
}

.product-photo{
  width: 100%;
  height: auto;
}

/* ===== Behind the Standards Gallery ===== */
.visual-proof{
  padding: 80px 0;
}

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

.proof-item{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.proof-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

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

.proof-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.proof-item--featured img{
  min-height: 480px;
}

.proof-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.proof-item:hover .proof-overlay{
  opacity: 1;
  transform: translateY(0);
}

.proof-label{
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 900px){
  .proof-gallery{
    grid-template-columns: 1fr;
  }
  
  .proof-item--featured{
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .proof-item img,
  .proof-item--featured img{
    min-height: 240px;
  }
  
  .proof-overlay{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Testimonial Showcase ===== */
.testimonial-showcase{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 3rem 0;
}

.testimonial-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  gap: 20px;
  align-items: start;
}

.testimonial-photo{
  flex: 0 0 auto;
}

.testimonial-photo img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(230,43,30,0.15);
}

.testimonial-content{
  flex: 1;
}

.testimonial-text{
  margin: 0 0 14px;
  color: rgba(0,0,0,0.80);
  line-height: 1.65;
  font-style: italic;
}

.testimonial-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-meta strong{
  color: #111;
  font-size: 0.95rem;
}

.testimonial-meta span{
  color: rgba(0,0,0,0.60);
  font-size: 0.85rem;
}

@media (max-width: 768px){
  .testimonial-showcase{
    grid-template-columns: 1fr;
  }
  
  .testimonial-card{
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-photo{
    margin: 0 auto;
  }
}

/* ===== Results Grid (Before/After) ===== */
.results-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 3rem 0;
}

.result-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.result-item h4{
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: #111;
  text-align: center;
}

.result-screenshot{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.result-screenshot img{
  width: 100%;
  height: auto;
  display: block;
}

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

/* ===== Video Testimonials ===== */
.video-testimonials{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 3rem 0;
}

.video-testimonial{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.video-wrapper{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 16px;
}

.video-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info{
  text-align: center;
}

.video-info h4{
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #111;
}

.video-info p{
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
}

@media (max-width: 900px){
  .video-testimonials{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .video-testimonial{
    width: 100%;
    margin: 0 auto;
  }
}

/* ===== Auto-scrolling Testimonials ===== */
.scrolling-testimonials-wrapper{
  margin-top: 4rem;
  overflow: hidden;
  position: relative;
}

.scrolling-testimonials-wrapper::before,
.scrolling-testimonials-wrapper::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.scrolling-testimonials-wrapper::before{
  left: 0;
  background: linear-gradient(to right, #f5f5f7, rgba(245,245,247,0));
}

.scrolling-testimonials-wrapper::after{
  right: 0;
  background: linear-gradient(to left, #f5f5f7, rgba(245,245,247,0));
}

.scrolling-testimonials{
  overflow: hidden;
  padding: 2rem 0;
}

.scrolling-track{
  display: flex;
  gap: 2rem;
  animation: scroll-left 40s linear infinite;
  width: fit-content;
}

.scrolling-track:hover{
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-scroll-card{
  flex: 0 0 400px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.testimonial-scroll-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: rgba(230,43,30,0.2);
}

.testimonial-quote{
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.80);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before{
  content: "\201C";
  position: absolute;
  top: -10px;
  left: -8px;
  font-size: 3rem;
  color: rgba(230,43,30,0.15);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-author{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong{
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d1d1f;
}

.testimonial-author span{
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
}

@media (max-width: 768px){
  .scrolling-testimonials-wrapper::before,
  .scrolling-testimonials-wrapper::after{
    width: 40px;
  }
  
  .testimonial-scroll-card{
    flex: 0 0 300px;
    padding: 1.5rem;
  }
  
  .scrolling-track{
    gap: 1.5rem;
  }
}

/* =========================================================
   Founding Client Offer
   ========================================================= */

.founding-offer{
  margin: 1.5rem 0 2.5rem;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(230,43,30,0.18);
  background: linear-gradient(180deg, rgba(230,43,30,0.06) 0%, rgba(230,43,30,0.03) 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.founding-badge{
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 1px solid rgba(230,43,30,0.28);
  background: rgba(230,43,30,0.10);
  color: rgba(230,43,30,0.95);
  font-weight: 600;
}

.founding-copy{
  margin: 0;
  color: rgba(0,0,0,0.78);
  line-height: 1.5;
}

.price-wrap{
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-old{
  font-size: 1.25rem !important;
  font-weight: 600;
  color: rgba(0,0,0,0.42) !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(0,0,0,0.28);
}

.founding-note{
  margin-top: 6px;
  font-size: 0.92rem;
  color: rgba(230,43,30,0.88);
  font-weight: 600;
}

@media (max-width: 768px){
  .founding-offer{
    align-items: flex-start;
  }

  .price-wrap{
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
  
  .price-old{
    font-size: 2rem !important;
    margin-bottom: 0;
  }
}
/* =========================================================
   Top founding offer banner
   ========================================================= */
.top-banner{
  background: #111;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-banner .container{
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-banner p{
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
}

.top-banner strong{
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px){
  .top-banner .container{
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-banner p{
    font-size: 0.86rem;
    line-height: 1.45;
  }
}
.top-banner{
  display:block;
  background:#111;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,0.08);
  text-decoration:none;
  transition: background 0.18s ease;
  cursor:pointer;
}

.top-banner:hover{
  background:#1a1a1a;
}

.top-banner .container{
  padding-top:10px;
  padding-bottom:10px;
}

.top-banner p{
  margin:0;
  text-align:center;
  font-size:0.92rem;
  line-height:1.4;
  color:rgba(255,255,255,0.92);
}

.top-banner strong{
  color:#fff;
  font-weight:700;
}

.top-banner-link{
  text-decoration:underline;
  text-underline-offset:2px;
}

@media (max-width: 768px){
  .top-banner .container{
    padding-top:12px;
    padding-bottom:12px;
  }

  .top-banner p{
    font-size:0.86rem;
    line-height:1.45;
  }
}

/* =========================================================
   Premium thank-you page
   ========================================================= */

.thankyou-hero{
  padding-top: 6.5rem;
  padding-bottom: 5.5rem;
}

.thankyou-badge{
  display:inline-flex;
  width:fit-content;
  margin-bottom: 1rem;
  padding:6px 10px;
  border-radius:999px;
  font-size:0.74rem;
  letter-spacing:0.10em;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}

.next-steps-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.next-step-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
}

.next-step-number{
  width:40px;
  height:40px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(230,43,30,0.10);
  border:1px solid rgba(230,43,30,0.30);
  color: var(--primary-red);
  font-weight:700;
  font-size:1rem;
}

.next-step-card h3{
  margin:0;
  font-size:1.2rem;
  line-height:1.25;
  color:#111;
}

.next-step-card p{
  margin:0;
  color:rgba(0,0,0,0.72);
  line-height:1.55;
}

.text-link{
  margin-top:auto;
  color: var(--primary-red);
  font-weight:600;
  text-decoration:none;
}

.text-link:hover{
  text-decoration:underline;
}

.scheduler-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:20px;
  box-shadow:0 12px 34px rgba(0,0,0,0.06);
  overflow:hidden;
}

.scheduler-intro{
  padding:24px 24px 18px;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.scheduler-intro h3{
  margin:0 0 8px;
  font-size:1.35rem;
  line-height:1.2;
}

.scheduler-intro p{
  margin:0;
  color:rgba(0,0,0,0.72);
  line-height:1.55;
}

.scheduler-embed{
  background:#fff;
}

.scheduler-embed iframe{
  display:block;
  width:100%;
  border:0;
}

.thankyou-panel{
  max-width: 820px;
  margin: 0 auto;
}

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

  .scheduler-embed iframe{
    height: 920px;
  }
}
.payment-plan{
  margin: 4px 0 16px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.58);
  font-weight: 500;
}