:root {
        --primary: #ff6b35;
        --primary-dark: #e55a2b;
        --secondary: #2a5298;
        --text-dark: #333;
        --text-light: #666;
        --bg-light: #f8f9fa;
        --glass-bg: rgba(255, 255, 255, 0.95);
        --glass-border: rgba(255, 255, 255, 0.6);
        --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background-color: #fff;
    }

    /* --- Header Styles --- */
    .header {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
    .logo { font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; }
    .logo i { margin-right: 0.5rem; color: #ff6b35; }
    .nav-menu { display: flex; list-style: none; gap: 2rem; }
    .nav-menu a { color: white; text-decoration: none; transition: color 0.3s; }
    .nav-menu a:hover { color: #ff6b35; }
    .cta-header { background: #ff6b35; padding: 0.7rem 1.5rem; border-radius: 25px; text-decoration: none; color: white; font-weight: bold; transition: all 0.3s; }
    .cta-header:hover { background: #e55a2b; transform: translateY(-2px); }

    /* --- Hero Section --- */
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 6rem 0 7rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .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 1000 300"><polygon fill="%23ffffff10" points="0,300 1000,300 1000,0"/></svg>');
        opacity: 0.1;
    }

    .hero-container { max-width: 900px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
    .hero-badge { background: rgba(255, 107, 53, 0.2); color: #ffcbba; padding: 0.5rem 1.2rem; border-radius: 50px; display: inline-block; margin-bottom: 1.5rem; border: 1px solid rgba(255, 107, 53, 0.3); font-weight: 600; font-size: 0.9rem; }
    .hero h1 { font-size: 3.2rem; margin-bottom: 1.2rem; font-weight: 800; line-height: 1.2; }

    /* AEO Direct Answer Block - Optimized for AI Extraction */
    .direct-answer-block {
        background: rgba(255, 255, 255, 0.1);
        border-left: 4px solid var(--primary);
        padding: 1.2rem 1.5rem;
        border-radius: 0 15px 15px 0;
        margin: 0 auto 2rem auto;
        font-size: 1.1rem;
        text-align: left;
        backdrop-filter: blur(5px);
        line-height: 1.6;
        max-width: 800px;
    }
    .direct-answer-block strong { color: #fff; }

    /* SEO IMPROVEMENT: Executive Summary for AEO */
    .aeo-executive-summary {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        margin: 0 auto 2rem auto;
        max-width: 800px;
        text-align: left;
        font-size: 0.95rem;
        display: flex;
        gap: 15px;
        align-items: center;
    }
    .aeo-executive-summary i { color: #4ade80; font-size: 1.5rem; }

    .hero-subtitle { font-size: 1.25rem; margin-bottom: 2.5rem; opacity: 0.9; font-weight: 400; line-height: 1.6; max-width: 750px; margin-left: auto; margin-right: auto; }

    /* Hero Input Form */
    .hero-input-container { max-width: 700px; margin: 0 auto; position: relative; }
    .hero-form .input-group { background: white; padding: 0.5rem; border-radius: 60px; display: flex; align-items: center; box-shadow: 0 20px 50px rgba(0,0,0,0.25); border: 4px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(5px); }
    .input-icon { color: var(--primary); font-size: 1.2rem; margin-left: 1.2rem; margin-right: 0.5rem; }
    .hero-form input { flex: 1; border: none; padding: 1.2rem 0.5rem; font-size: 1.1rem; outline: none; color: #333; }
    .btn-generate { background: var(--primary); color: white; border: none; padding: 1rem 2rem; border-radius: 40px; font-weight: bold; cursor: pointer; transition: all 0.3s; font-size: 1rem; white-space: nowrap; }
    .btn-generate:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }

    .hero-footer { display: flex; flex-direction: column; align-items: center; margin-top: 1.5rem; gap: 1rem; }
    .trust-signals { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
    .trust-signals i { color: #4ade80; margin-right: 5px; }
    .demo-link { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 0.95rem; border-bottom: 1px dashed rgba(255, 255, 255, 0.5); padding-bottom: 2px; transition: all 0.3s; }
    .demo-link:hover { color: white; border-bottom-style: solid; }

    /* Bank Approval Badge */
    .bank-approval-section { margin-top: 2rem; padding: 1.2rem 1.5rem; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.2); display: inline-block; }
    .bank-approval-section small { display: block; opacity: 0.8; font-size: 0.85rem; margin-bottom: 0.5rem; }
    .bank-logos-inline { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; font-weight: 600; font-size: 1.05rem; }
    .bank-logos-inline span { color: rgba(255, 255, 255, 0.5); }

    .hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
    .stat-item { text-align: center; }
    .stat-number { font-size: 1.8rem; font-weight: bold; color: #fff; margin-bottom: 0.2rem; }
    .stat-label { font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

    /* --- Features Section (Bento Grid) --- */
    .features { padding: 5rem 0; background: #fff; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-dark); font-weight: 700; }
    .section-subtitle { text-align: center; font-size: 1.2rem; color: var(--text-light); margin-bottom: 4rem; max-width: 700px; margin-left: auto; margin-right: auto; }

    .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(280px, auto); gap: 1.5rem; }
    .bento-card { background: #fff; border: 1px solid #eee; border-radius: 24px; padding: 2.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-start; }
    .bento-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: transparent; }
    .span-2-col { grid-column: span 2; }
    .span-2-row { grid-row: span 2; }
    .bento-card.highlight-bg { background: linear-gradient(135deg, #fff5f2 0%, #fff 100%); border-color: #ffe0d6; }
    .bento-card.dark-bg { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); color: white; position: relative; }
    .bento-card.dark-bg .feature-title, .bento-card.dark-bg .feature-desc { color: white; }
    .product-preview-img { margin-top: 1.5rem; width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); border: 2px solid rgba(255,255,255,0.2); }
    .feature-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; background: rgba(255, 107, 53, 0.1); width: 70px; height: 70px; border-radius: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .dark-bg .feature-icon { background: rgba(255, 255, 255, 0.2); color: white; }
    .feature-title { font-size: 1.4rem; margin-bottom: 1rem; font-weight: 700; color: #222; }
    .feature-desc { color: var(--text-light); line-height: 1.6; font-size: 1rem; }

    /* SEO IMPROVEMENT: Comparison Table Styles with Professional SaaS Aesthetic */
    .comparison-table-wrapper { overflow-x: auto; margin-top: 3rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 16px; }
    .comparison-table { width: 100%; border-collapse: collapse; background: white; text-align: left; }
    .comparison-table th { background-color: #28a745; color: black; padding: 1.5rem; font-weight: 700; font-size: 1.1rem; border-bottom: 2px solid #1e7e34; }
    .comparison-table td { padding: 1.5rem; border-bottom: 1px solid #eee; color: #444; }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table .highlight { background: #f0faf2; font-weight: 700; color: #1e7e34; border-left: 2px solid #28a745; border-right: 2px solid #28a745; }
    .comparison-table th.highlight { background-color: #218838; color: white; }

   /* --- BIZPLAN PROCESS SECTION --- */
    .biz-process-wrapper { padding: 6rem 0; background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); width: 100%; overflow: hidden; }
    .biz-process-container { max-width: 1200px !important; margin: 0 auto !important; padding: 0 2rem !important; box-sizing: border-box !important; }
    .biz-process-grid { display: grid !important; grid-template-columns: repeat(4, minmax(220px, 1fr)) !important; gap: 2rem !important; margin-top: 5rem !important; position: relative !important; width: 100% !important; }
    @media (max-width: 992px) { .biz-process-grid { grid-template-columns: repeat(2, minmax(250px, 1fr)) !important; gap: 4rem 2rem !important; } }
    @media (max-width: 576px) { .biz-process-grid { grid-template-columns: 1fr !important; } }
    @media (min-width: 993px) {
        .biz-process-grid::before { content: '' !important; position: absolute !important; top: 35px !important; left: 12% !important; right: 12% !important; height: 2px !important; background: linear-gradient(to right, rgba(255,107,53,0.1) 0%, rgba(255,107,53,0.5) 50%, rgba(255,107,53,0.1) 100%) !important; z-index: 0 !important; }
    }
    .biz-step-card { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; position: relative !important; z-index: 1 !important; padding: 0 1rem !important; height: 100% !important; width: 100% !important; box-sizing: border-box !important; }
    .biz-step-circle { width: 70px !important; height: 70px !important; background: white !important; color: var(--primary) !important; border: 3px solid var(--primary) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 1.5rem !important; font-weight: 800 !important; margin-bottom: 1.5rem !important; box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2) !important; flex-shrink: 0 !important; transition: transform 0.3s ease, background 0.3s ease !important; line-height: 1 !important; }
    .biz-step-card:hover .biz-step-circle { transform: scale(1.1) !important; background: var(--primary) !important; color: white !important; }
    .biz-step-heading { font-size: 1.3rem !important; margin: 0 0 1rem 0 !important; color: var(--text-dark) !important; font-weight: 700 !important; width: 100% !important; line-height: 1.4 !important; white-space: normal !important; word-break: normal !important; }
    .biz-step-text { color: var(--text-light) !important; font-size: 1rem !important; line-height: 1.6 !important; width: 100% !important; max-width: none !important; margin: 0 auto !important; padding: 0 !important; flex-grow: 1 !important; white-space: normal !important; word-break: normal !important; display: block !important; }
    .biz-step-badge { background: #f1f3f5 !important; color: #495057 !important; padding: 0.5rem 1.2rem !important; border-radius: 20px !important; font-size: 0.85rem !important; margin-top: 1.5rem !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 6px !important; font-weight: 600 !important; border: 1px solid #e9ecef !important; width: max-content !important; white-space: nowrap !important; }
    .biz-step-badge i { color: var(--primary) !important; margin: 0 !important; }

    /* --- Testimonials Section --- */
    .testimonials { padding: 5rem 0; background: white; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
    .testimonial { background: white; padding: 2rem; border-radius: 20px; border: 1px solid #eee; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s; position: relative; }
    .testimonial:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .testimonial::before { content: '"'; font-size: 4rem; color: var(--primary); opacity: 0.2; line-height: 0; position: absolute; top: 1.5rem; left: 1.5rem; }
    .testimonial-text { font-style: italic; margin: 2rem 0 1.5rem; color: #555; line-height: 1.7; }
    .testimonial-author { display: flex; align-items: center; gap: 1rem; }
    .author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.1rem; flex-shrink: 0; }
    .author-info h4 { color: #333; margin-bottom: 0.2rem; font-weight: 600; }
    .author-info p { color: #666; font-size: 0.9rem; }

    /* --- Pricing Section --- */
    .pricing { padding: 5rem 0; background-color: #f4f6f8; background-image: radial-gradient(#e1e4e8 1px, transparent 1px); background-size: 30px 30px; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
    .pricing-card { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; position: relative; transition: all 0.3s; box-shadow: var(--glass-shadow); }
    .pricing-card.featured { border: 2px solid var(--primary); transform: scale(1.05); z-index: 2; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
    .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
    .pricing-card.featured:hover { transform: scale(1.05) translateY(-5px); }
    .featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 12px; border-radius: 12px; font-size: 0.8rem; font-weight: bold; }
    .btn-pricing { display: inline-block; padding: 1rem 2rem; border-radius: 30px; font-weight: bold; text-decoration: none; transition: all 0.3s; width: 100%; margin-top: 1.5rem; }
    .btn-pricing-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
    .btn-pricing-secondary:hover { background: var(--primary); color: white; }
    .btn-pricing-primary { background: var(--primary); color: white; border: 2px solid var(--primary); box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3); }
    .btn-pricing-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4); }
    .plan-name { font-size: 1.3rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
    .plan-price { font-size: 3.5rem; font-weight: 800; color: #222; margin-bottom: 0.5rem; line-height: 1; }
    .plan-period { color: #666; margin-bottom: 2rem; font-size: 0.9rem; }
    .plan-features { list-style: none; margin-bottom: 2rem; text-align: left; }
    .plan-features li { padding: 0.8rem 0; color: #555; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; }
    .plan-features li i { color: #28a745; margin-right: 0.8rem; font-size: 1.1rem; flex-shrink: 0; }
    .plan-features li i.fa-times { color: #ccc; }

    /* --- Trust & FAQ Sections --- */
    .trust-banks { padding: 4rem 0; background: white; text-align: center; }
    .trust-intro { max-width: 700px; margin: 0 auto 3rem; color: #666; font-size: 1.1rem; }
    .bank-logos-grid { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; margin: 3rem 0; }
    .bank-logo-item { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; padding: 1.5rem 2rem; background: #f8f9fa; border-radius: 15px; border: 1px solid #eee; transition: all 0.3s; min-width: 160px; }
    .bank-logo-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); background: white; }
    .bank-logo-placeholder { font-size: 2rem; font-weight: bold; color: #2a5298; height: 50px; display: flex; align-items: center; justify-content: center; }
    .bank-logo-name { font-size: 0.9rem; color: #666; font-weight: 600; }
    .bank-approved-badge { background: linear-gradient(135deg, #28a745, #20c997); color: white; padding: 1rem 2rem; border-radius: 50px; display: inline-flex; align-items: center; gap: 0.8rem; font-size: 1.1rem; font-weight: 700; margin-top: 2rem; box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3); }
    .bank-approved-badge i { font-size: 1.3rem; }

    .trust { padding: 3rem 0; background: #f8f9fa; text-align: center; }
    .trust-badges { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; color: #666; }
    .trust-badge { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; padding: 1.5rem; background: white; border-radius: 15px; border: 1px solid #eee; transition: all 0.3s; min-width: 140px; }
    .trust-badge:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
    .trust-badge i { font-size: 2rem; color: #28a745; }
    .trust-badge span { font-weight: 600; font-size: 0.9rem; }

    .seo-faq-section { padding: 5rem 0; background: white; }
    .faq-container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
    .faq-item { background: #f8f9fa; border-radius: 15px; padding: 1.5rem 2rem; margin-bottom: 1.5rem; border: 1px solid #eee; transition: all 0.3s; }
    .faq-item:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
    .faq-question { font-size: 1.15rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #333; }
    .faq-question i { transition: transform 0.3s ease; color: var(--primary); font-size: 1rem; }
    .faq-answer { display: none; margin-top: 1rem; color: #666; line-height: 1.7; padding-top: 1rem; border-top: 1px solid #e0e0e0; }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2rem; }
        .hero-subtitle { font-size: 1rem; }
        .hero-input-container { margin: 0 1rem; }
        .hero-form .input-group { flex-direction: column; border-radius: 20px; padding: 1rem; }
        .hero-form input { width: 100%; text-align: center; border-bottom: 1px solid #eee; margin-bottom: 1rem; padding: 1rem; }
        .btn-generate { width: 100%; }
        .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
        .span-2-col, .span-2-row { grid-column: span 1; grid-row: span 1; }
        .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
        .pricing-card.featured { transform: scale(1); }
        .bank-logos-grid { gap: 1.5rem; }
        .nav-menu { display: none; }
        .section-title { font-size: 2rem; }
    }

    .fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
    .fade-in-up.visible { opacity: 1; transform: translateY(0); }
    
    /* --- AI Tools Suite Section --- */
    .tools-suite { padding: 4rem 0; background: #fdfdfd; border-bottom: 1px solid #eee; }
    .tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
    .tool-card { background: white; border: 1px solid #e1e4e8; border-radius: 16px; padding: 1.5rem; transition: all 0.3s ease; position: relative; display: flex; flex-direction: column; align-items: flex-start; height: 100%; }
    .tool-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15); }
    .tool-icon-wrapper { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; }
    .bg-blue { background: #e3f2fd; color: #1976d2; }
    .bg-green { background: #e8f5e9; color: #2e7d32; }
    .bg-purple { background: #f3e5f5; color: #7b1fa2; }
    .bg-orange { background: #fff3e0; color: #ef6c00; }
    .bg-teal { background: #e0f2f1; color: #00695c; }
    .bg-indigo { background: #e8eaf6; color: #283593; }

    .tool-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: #333; }
    .tool-desc { font-size: 0.9rem; color: #666; margin-bottom: 1.5rem; line-height: 1.5; flex-grow: 1; }
    .tool-link { font-size: 0.9rem; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
    .tool-link:hover { gap: 8px; }
    .new-badge { position: absolute; top: 12px; right: 12px; background: #ff4757; color: white; font-size: 0.7rem; padding: 2px 8px; border-radius: 10px; font-weight: 700; animation: pulse 2s infinite; }

    @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
    
    .coach-banner { margin-top: 3rem; background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); border-radius: 20px; padding: 3rem; color: white; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 2rem; box-shadow: 0 15px 30px rgba(30, 60, 114, 0.2); }
    .coach-banner::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="100" cy="0" r="50" fill="white" opacity="0.1"/></svg>') no-repeat top right; background-size: cover; }
    .coach-content { position: relative; z-index: 1; max-width: 600px; }
    .coach-tag { background: #ff6b35; color: white; padding: 5px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; margin-bottom: 1rem; display: inline-block; }
    .coach-title { font-size: 2rem; margin-bottom: 1rem; font-weight: 700; color: white; }
    .coach-desc { font-size: 1.1rem; opacity: 0.9; margin-bottom: 0; line-height: 1.6; }
    .coach-action { background: white; color: #1e3c72; padding: 1rem 2rem; border-radius: 50px; font-weight: bold; text-decoration: none; transition: transform 0.3s; white-space: nowrap; z-index: 2; }
    .coach-action:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    @media (max-width: 768px) { .coach-banner { flex-direction: column; text-align: center; padding: 2rem; } .coach-action { width: 100%; } }