/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --midnight-blue: #1E2A38;
    --sky-blue: #4DA6FF;
    --emerald-green: #2ECC71;
    --slate-gray: #7F8C8D;
    --warm-yellow: #F1C40F;
    --soft-white: #FDFEFE;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --element-spacing: 2rem;
    
    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--midnight-blue);
    background-color: var(--soft-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--sky-blue);
    color: var(--soft-white);
}

.btn-primary:hover {
    background-color: var(--emerald-green);
    transform: scale(1.05);
}

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

.btn-secondary:hover {
    background-color: var(--midnight-blue);
    color: var(--soft-white);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: var(--soft-white);
    box-shadow: 0 2px 10px rgba(30, 42, 56, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--midnight-blue);
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--midnight-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--sky-blue);
}

.nav-cta {
    background-color: var(--sky-blue);
    color: var(--soft-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--emerald-green);
    transform: scale(1.05);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--soft-white);
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(30, 42, 56, 0.15);
    border-radius: 6px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--midnight-blue);
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--soft-white) 0%, #f8f9fa 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content .subhead {
    font-size: 1.25rem;
    color: var(--slate-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-gray);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge::before {
    content: "✓";
    color: var(--emerald-green);
    font-weight: 700;
}

.hero-visual {
    background: var(--midnight-blue);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.demo-screen {
    background: var(--soft-white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.transcript-line {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.suggestion-popup {
    background: var(--sky-blue);
    color: var(--soft-white);
    padding: 1rem;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.suggestion-popup::before {
    content: "💡 Suggestion:";
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Social Proof Strip */
.social-proof {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
}

.proof-quote {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.proof-attribution {
    color: var(--slate-gray);
    font-size: 0.875rem;
}

.proof-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--slate-gray);
}

/* Outcome Tiles */
.outcomes {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--slate-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.outcome-tile {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 42, 56, 0.08);
    text-align: center;
    transition: transform var(--transition-fast);
}

.outcome-tile:hover {
    transform: translateY(-4px);
}

.outcome-icon {
    width: 64px;
    height: 64px;
    background: var(--sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--soft-white);
}

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

.outcome-tile p {
    color: var(--slate-gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: #f8f9fa;
    padding: var(--section-padding);
}

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

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--sky-blue);
    color: var(--soft-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--slate-gray);
}

/* Feature Cards for Better Visual Balance */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--soft-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30, 42, 56, 0.06);
    transition: all var(--transition-fast);
    border: 1px solid rgba(30, 42, 56, 0.04);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 42, 56, 0.12);
    border-color: var(--sky-blue);
}

.feature-icon {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--sky-blue);
}

.feature-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(199deg) brightness(101%) contrast(101%);
}

.outcome-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.feature-card span {
    color: var(--midnight-blue);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Calculator */
.calculator-section {
    padding: var(--section-padding);
    background: var(--midnight-blue);
    color: var(--soft-white);
}

.calculator-section h2 {
    color: var(--soft-white);
    text-align: center;
    margin-bottom: 3rem;
}

.calculator {
    background: var(--soft-white);
    border-radius: 12px;
    padding: 2rem;
    color: var(--midnight-blue);
    max-width: 600px;
    margin: 0 auto;
}

.calc-input {
    margin-bottom: 1.5rem;
}

.calc-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.calc-input input,
.calc-input select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
}

.calc-input input:focus,
.calc-input select:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.calc-result {
    background: var(--emerald-green);
    color: var(--soft-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: var(--section-padding);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--soft-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(30, 42, 56, 0.08);
    text-align: center;
    position: relative;
}

.pricing-card.recommended {
    border: 2px solid var(--sky-blue);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sky-blue);
    color: var(--soft-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
}

.pricing-card .period {
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: 700;
}

/* FAQ */
.faq {
    background: #f8f9fa;
    padding: var(--section-padding);
}

.faq-item {
    background: var(--soft-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate-gray);
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    background: var(--midnight-blue);
    color: var(--soft-white);
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--soft-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Final CTA button overrides for dark background */
.final-cta .btn-secondary {
    background-color: var(--soft-white) !important;
    color: var(--midnight-blue) !important;
    border: 2px solid var(--soft-white) !important;
}

.final-cta .btn-secondary:hover {
    background-color: transparent !important;
    color: var(--soft-white) !important;
    border-color: var(--soft-white) !important;
}

/* Footer */
.footer {
    background: var(--midnight-blue);
    color: var(--soft-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--soft-white);
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--sky-blue);
}

.footer-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.mobile-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mobile-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.app-store-link {
    transition: transform var(--transition-fast);
}

.app-store-link:hover {
    transform: scale(1.05);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--slate-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
}

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

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--slate-gray);
    text-align: center;
    margin-top: 1rem;
}

/* Mobile App Integration Styles */
.hero-mobile-note {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--slate-gray);
}

.hero-mobile-note a {
    transition: color var(--transition-fast);
}

.hero-mobile-note a:hover {
    color: var(--emerald-green);
}

.final-cta-mobile-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-mobile-note a {
    transition: color var(--transition-fast);
}

.final-cta-mobile-note a:hover {
    color: var(--sky-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Feature Cards */
    .feature-cards {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .feature-card {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
    }
    
    .feature-card span {
        font-size: 0.875rem;
    }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--midnight-blue);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--soft-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(30, 42, 56, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* Demo Modal Styles */
.demo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 42, 56, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.demo-modal-content {
  background: transparent;
  border-radius: 16px;
  width: 60%;
  max-width: 500px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 42, 56, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



.demo-close {
  background: none;
  border: none;
  color: var(--sky-blue);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  position: relative;
  z-index: 20;
}

.demo-close:hover {
  background: rgba(77, 166, 255, 0.1);
}

.demo-content {
  padding: 0;
  height: 100%;
}

.demo-ai-section {
  background: #232323;
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Demo Error Display */
.demo-error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.demo-error-content {
  text-align: center;
  padding: 2rem;
}

.demo-error-content i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.demo-error-content h4 {
  color: var(--midnight-blue);
  margin-bottom: 1rem;
}

.demo-error-message {
  color: var(--slate-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.demo-ai-section {
  background: #232323;
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  height: 250px;
  display: flex;
  flex-direction: column;
}

.demo-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(77, 166, 255, 0.3);
}

/* Overlaid call control buttons */
.demo-btn-overlay {
  position: absolute;
  bottom: 1rem;
  background: rgba(77, 166, 255, 0.9);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.demo-btn-overlay:hover {
  background: var(--sky-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.demo-btn-overlay:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.demo-btn-overlay.demo-btn-mute {
  left: 1rem;
}

.demo-btn-overlay.demo-btn-end {
  right: 1rem;
  background: rgba(231, 76, 60, 0.9);
}

.demo-btn-overlay.demo-btn-end:hover {
  background: #e74c3c;
}

.demo-ai-header h4 {
  margin: 0;
  color: var(--sky-blue);
  font-size: 1.1rem;
  font-weight: 600;
}

.demo-ai-header i {
  margin-right: 0.5rem;
}

.demo-ai-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
}

.demo-placeholder {
  text-align: center;
  color: #8e8e93;
  font-style: italic;
  padding: 2rem 1rem;
}

.demo-placeholder i {
  display: block;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.demo-text-container {
  width: 100%;
  max-width: 100%;
  transition: transform 2s ease-in-out;
  padding-top: 1rem;
}

.teleprompter-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  margin: 0 0 2rem 0;
  padding: 1rem;
  background: rgba(35, 35, 35, 0.8);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Post Demo CTA */
.post-demo-cta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  /* Ensure it's contained within the AI section */
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.post-demo-content {
  max-width: 400px;
  margin: 0 auto;
}

.post-demo-icon {
  width: 80px;
  height: 80px;
  background: var(--emerald-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.post-demo-content h3 {
  margin: 0 0 1rem 0;
  color: var(--midnight-blue);
  font-size: 1.75rem;
}

.post-demo-content p {
  margin: 0 0 2rem 0;
  color: var(--slate-gray);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .demo-modal-content {
    width: 90%;
    max-width: 400px;
    margin: 1rem;
  }
  
  .demo-content {
    padding: 0;
  }
  
  .demo-ai-section {
    height: 250px;
    padding: 1rem;
  }
  
  .demo-btn-overlay {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}
