/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #555555;
}

.bold-text {
    font-weight: 600;
    font-size: 1.25rem;
    color: #2d3748;
}

.highlight {
    color: #ffd89b;
    font-weight: 800;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.2rem;
}

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

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #f8fafc;
}

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

.section-title {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #718096;
    font-size: 1.125rem;
    font-weight: 400;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3748;
    text-decoration: none;
}

.nav-logo i {
    color: #667eea;
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2d3748;
    cursor: pointer;
}

.nav-cta {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

.btn-huge {
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-demo {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid #667eea;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-demo:hover {
    background: #667eea;
    color: white;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
    margin-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-features i {
    color: #90cdf4;
    font-size: 1.25rem;
}

/* ===== CONTENT SECTIONS ===== */
.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.highlight-box h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature-list i {
    color: #ffd89b;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* ===== BENEFIT CARDS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.pitch-box {
    background: #2d3748;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.pitch-box h3 {
    color: #90cdf4;
    margin-bottom: 1rem;
}

.pitch-box blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #667eea;
}

/* ===== STEPS SECTION ===== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.result-box {
    background: #f0fff4;
    border: 2px solid #68d391;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

/* ===== CUSTOMIZATION GRID ===== */
.customization-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.custom-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-feature i {
    color: #667eea;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== DEMO SECTION ===== */
.demo-container {
    text-align: center;
}

.demo-note {
    color: #718096;
    margin-top: 1rem;
    font-style: italic;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #2d3748;
    font-size: 1.25rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
}

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

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price span {
    font-size: 1.25rem;
    font-weight: 400;
}

.optional {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.pricing-features i {
    color: #48bb78;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features i {
    color: #90cdf4;
}

/* ===== BENEFITS LIST ===== */
.benefits-list {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit i {
    color: #48bb78;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.opportunity-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.cta-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.2;
}

.cta-title i {
    color: #90cdf4;
    margin-right: 0.5rem;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #a0aec0;
}

.trust-item i {
    color: #90cdf4;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-cta {
        display: inline-flex;
    }
    
    .hero {
        padding: 10rem 0 8rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 3rem;
    }
    
    .steps-container {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }
    
    .sticky-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== FOCUS STYLES ===== */
.btn:focus,
.nav-link:focus,
.nav-toggle:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .sticky-cta,
    .modal {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
    }
}

/* ===== CHECKED BACKGROUND PATTERN ===== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

/* ===== HERO VISUAL (CHATBOT DEMO) ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-demo-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.hero-demo-header {
    background: #f7fafc;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.hero-demo-dots {
    display: flex;
    gap: 6px;
}

.hero-demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-demo-dot--red { background: #fc8181; }
.hero-demo-dot--yellow { background: #f6e05e; }
.hero-demo-dot--green { background: #68d391; }

.hero-demo-title {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

.hero-demo-chat {
    padding: 20px;
    height: 420px;
    background: white;
    overflow-y: auto;
}

.hero-message {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    max-width: 80%;
    text-align: left;
    animation: messageSlideIn 0.5s ease-out;
}

.hero-message--user {
    background: #667eea;
    color: white;
    margin-left: auto;
    text-align: right;
}

.hero-message--bot {
    background: #f7fafc;
    color: #2d3748;
    display: flex;
    align-items: flex-start;
}

/* Typing Animation */
.hero-typing {
    display: flex;
    gap: 3px;
}

.hero-typing span {
    width: 6px;
    height: 6px;
    background: #cbd5e0;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.hero-typing span:nth-child(2) { animation-delay: 0.2s; }
.hero-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

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

/* ===== HERO LAYOUT UPDATES ===== */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: flex-start;
    }
    
    .hero-content {
        max-width: none;
    }
    
    .hero-visual {
        justify-content: flex-start;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-demo-container {
        max-width: 350px;
    }
    
    .hero-demo-chat {
        height: 300px;
    }
}

/* Update highlight color to gold */
.highlight {
    color: #ffd89b;
    font-weight: 800;
}

.hero-title .highlight {
    color: #ffd89b;
}


/* ===== DESKTOP LEFT ALIGNMENT FIXES ===== */
@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-features {
        justify-content: flex-start;
    }
    
    /* Section headers on desktop - left align */
    .section-header {
        text-align: left;
    }
    
    .section-title {
        text-align: left;
    }
    
    .section-subtitle {
        text-align: left;
    }
    
    /* Content sections on desktop */
    .content {
        text-align: left;
    }
    
    /* Demo container on desktop */
    .demo-container {
        text-align: left;
    }
    
    /* CTA section keep centered */
    .cta-section .section-header,
    .cta-section .cta-content {
        text-align: center;
    }
}

/* Keep mobile centered */
@media (max-width: 767px) {
    .hero-content {
        text-align: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .content {
        text-align: center;
    }
    
    .demo-container {
        text-align: center;
    }
}


/* ===== DESKTOP FONT SIZE AND LAYOUT FIXES ===== */
@media (min-width: 768px) {
    /* Reduce desktop header font size */
    .hero-title {
        font-size: 3rem; /* Reduced from 3.5rem */
    }
    
    /* Hero features layout - 2 on first row, 1 on second */
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1rem 2rem;
        justify-content: flex-start;
        max-width: 400px;
    }
    
    /* First two items on first row */
    .hero-features .feature:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .hero-features .feature:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* Third item on second row, spanning both columns or centered */
    .hero-features .feature:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (min-width: 1024px) {
    /* Even smaller on larger screens if needed */
    .hero-title {
        font-size: 3.2rem;
    }
}

/* Keep mobile layout as is */
@media (max-width: 767px) {
    .hero-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem; /* Keep mobile size */
    }
}


/* ===== FIX: ONLY HERO SECTION LEFT-JUSTIFIED ON DESKTOP ===== */
@media (min-width: 768px) {
    /* Reset all section headers back to center */
    .section-header {
        text-align: center !important;
    }
    
    .section-title {
        text-align: center !important;
    }
    
    .section-subtitle {
        text-align: center !important;
    }
    
    /* Reset content sections back to center */
    .content {
        text-align: center !important;
    }
    
    /* Reset demo container back to center */
    .demo-container {
        text-align: center !important;
    }
    
    /* ONLY hero section should be left-justified */
    .hero-content {
        text-align: left !important;
    }
    
    .hero-title {
        text-align: left !important;
    }
    
    .hero-subtitle {
        text-align: left !important;
    }
    
    .hero-cta {
        justify-content: flex-start !important;
    }
    
    .hero-features {
        justify-content: flex-start !important;
    }
}


/* ===== HERO COLUMN WIDTH ADJUSTMENTS ===== */
@media (min-width: 768px) {
    /* Adjust hero grid to give more space to left column */
    .hero .container {
        display: grid;
        grid-template-columns: 1.4fr 1fr; /* Left column wider: 58% vs 42% */
        gap: 40px; /* Reduce gap slightly */
        align-items: flex-start;
    }
    
    /* Ensure hero content uses full width */
    .hero-content {
        max-width: none;
        padding-right: 20px; /* Add some padding */
    }
    
    /* Move chatbot demo slightly right and make it smaller */
    .hero-visual {
        justify-content: flex-end;
        padding-left: 10px;
    }
    
    .hero-demo-container {
        max-width: 380px; /* Slightly smaller */
    }
}

@media (min-width: 1024px) {
    /* Even more space for left column on larger screens */
    .hero .container {
        grid-template-columns: 1.5fr 1fr; /* 60% vs 40% */
        gap: 60px;
    }
    
    .hero-content {
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    /* Maximum space for heading on very large screens */
    .hero .container {
        grid-template-columns: 1.6fr 1fr; /* 62% vs 38% */
        gap: 80px;
    }
}


/* ===== HERO HEADER ADJUSTMENTS ===== */
@media (min-width: 768px) {
    /* Reduce font size more to fit on 3 lines */
    .hero-title {
        font-size: 2.4rem !important; /* Smaller to fit 3 lines */
        line-height: 1.15 !important; /* Tighter line height */
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.6rem !important; /* Slightly larger on bigger screens */
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 2.8rem !important; /* Max size for very large screens */
    }
}

/* ===== HIDE "NO MONTHLY FEES" FEATURE ===== */
.hero-features .feature:nth-child(1) {
    display: none !important; /* Hide "No Monthly Fees" */
}

/* Adjust remaining features layout */
@media (min-width: 768px) {
    .hero-features {
        display: flex !important; /* Change back to flex for 2 items */
        gap: 2rem !important;
        justify-content: flex-start !important;
    }
}

/* ===== GOLD TEXT FOR "AI GOLD RUSH" ===== */
.section-title:contains("Gold Rush"),
h2:contains("Gold Rush") {
    color: #ffd89b !important;
}

/* More specific selector for the gold rush section */
#goldrush .section-title {
    color: #ffd89b !important;
}

/* ===== GOLD SHADOW BUTTON ===== */
.btn-primary {
    box-shadow: 0 4px 15px rgba(255, 216, 155, 0.4) !important; /* Gold shadow */
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 216, 155, 0.6) !important; /* Stronger gold shadow on hover */
    transform: translateY(-2px);
}


/* ===== HIDE SECOND HERO FEATURE ===== */
.hero-features .feature:nth-child(3) {
    display: none !important; /* Hide "Compounding Profitability" */
}

/* Center the single remaining feature */
@media (min-width: 768px) {
    .hero-features {
        justify-content: flex-start !important; /* Keep left aligned */
    }
}

