/* ==========================================
   COMING SOON BANNER - DELETE THIS ENTIRE SECTION WHEN LAUNCHING
   ========================================== */
.coming-soon-banner {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    text-align: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 3000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(255, 0, 0, 0.7); }
}

.coming-soon-banner h2 {
    margin: 0 0 0.5rem 0;
    padding: 0;
    border: none;
    font-size: 2rem;
    color: white;
}

.coming-soon-banner p {
    margin: 0;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .coming-soon-banner {
        padding: 1.25rem 1rem;
    }
    
    .coming-soon-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .coming-soon-banner p {
        font-size: 0.9375rem;
    }
}
/* ========================================== */

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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
}

/* ========================================
   SLICK MODERN HEADER
   ======================================== */

header {
    background: linear-gradient(135deg, #E946F5 0%, #8B3FF5 40%, #5b21b6 70%, #3b0764 100%);
    color: white;
    padding: 0;
    box-shadow: 0 4px 30px rgba(76, 29, 149, 0.4);
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo Section */
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: transform 0.2s;
    text-align: center;
}

.header-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    display: none;
}

.logo-text h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    text-align: center;
}

.tagline {
    font-size: 0.75rem;
    opacity: 1;
    margin: 0;
    font-weight: 400;
    color: #f3f4f6;
}

/* Desktop Navigation */
.header-nav {
    display: none;
}

.nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-icon {
    font-size: 1.1rem;
}

/* Action Buttons */
.header-actions {
    display: none;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    right: 2rem;
    z-index: 100;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #5b21b6 !important;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #5b21b6 !important;
}

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

.nav-link-mobile {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.25rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    text-align: left;
}

.nav-link-mobile:hover,
.nav-link-mobile:active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2.5rem;
}

.nav-link-mobile:last-of-type {
    border-bottom: none;
}

.nav-icon {
    font-size: 1.2rem;
    opacity: 0.9;
    width: 24px;
    text-align: center;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0.5rem 0;
}

.btn-mobile {
    background: white;
    border: none;
    color: #8B3FF5;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-mobile.primary {
    background: white;
    color: #8B3FF5;
}

@media (max-width: 768px) {
    .header-content {
        padding: 1rem 1.5rem;
    }
    
    .logo-icon {
        display: none;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
}

nav {
    display: none;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem 4rem;
}

.content-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: none;
    position: relative;
    z-index: 10;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary);
}

h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.info-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
}

.warning-box {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
}

.success-box {
    background: #d1fae5;
    border-left: 4px solid var(--secondary);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
}

footer {
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

a {
    color: var(--primary);
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: break-word;
}

a:hover {
    text-decoration: underline;
}

.last-updated {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(233, 70, 245, 0.1) 0%, rgba(139, 63, 245, 0.1) 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    border: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E946F5 0%, #8B3FF5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #E946F5 0%, #8B3FF5 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 70, 245, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(233, 70, 245, 0.4);
}

/* ========================================
   FEATURES GRID
   ======================================== */

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #E946F5;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(233, 70, 245, 0.05) 0%, rgba(139, 63, 245, 0.05) 100%);
    border: 2px solid #E946F5;
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: "★ Core Feature";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #E946F5 0%, #8B3FF5 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    border: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E946F5 0%, #8B3FF5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(233, 70, 245, 0.3);
}

.step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #E946F5 0%, #8B3FF5 100%);
    border-radius: 24px;
    color: white;
    border: none;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-button-secondary {
    background: white;
    color: #8B3FF5;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ======================================== */

@media (max-width: 768px) {
    main {
        padding: 0 1rem 2rem;
    }
    
    .content-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .feature-highlight::before {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .how-it-works {
        padding: 2rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .step h4 {
        font-size: 1.0625rem;
        margin-bottom: 0.4rem;
    }
    
    .step p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .cta-section {
        padding: 2rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }
    
    .cta-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-button-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.625rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-section {
        padding: 1.75rem 1rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .cta-title {
        font-size: 1.375rem;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .how-it-works {
        padding: 1.75rem 1rem;
    }
    
    .cta-section {
        padding: 1.75rem 1rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    .content-section { padding: 1.5rem; }
    .nav-content { gap: 0.75rem; }
    .nav-btn { padding: 0.5rem 1rem; font-size: 0.875rem; }
    
    .nav-link-mobile {
        padding: 1.125rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .nav-link-mobile:hover {
        padding-left: 2rem;
    }
    
    .nav-icon {
        font-size: 1.1rem;
    }
    
    .btn-mobile {
        margin: 0.75rem;
        padding: 0.875rem 1.75rem;
    }
}

/* ==========================================
   ADDITIONS FOR JEKYLL LEGAL PAGES
   Add this to the END of your existing styles.css
   ========================================== */

/* Navigation links should work as both buttons and links */
.nav-link-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 1.25rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    text-align: left;
    text-decoration: none !important;
}

.nav-link-mobile:hover,
.nav-link-mobile:active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2.5rem;
    color: white !important;
}

.nav-link-mobile:last-of-type {
    border-bottom: none;
}

/* Ensure markdown content from Jekyll renders properly */
main .content-section h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary);
}

main .content-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary);
}

main .content-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

main .content-section h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

main .content-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

main .content-section ul,
main .content-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

main .content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

main .content-section blockquote {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
}

main .content-section blockquote p {
    margin-bottom: 0;
}

main .content-section hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 2rem 0;
}

/* Responsive for legal pages */
@media (max-width: 768px) {
    main .content-section h1 {
        font-size: 1.875rem;
    }
    
    main .content-section h2 {
        font-size: 1.5rem;
    }
    
    main .content-section h3 {
        font-size: 1.25rem;
    }
    
    .nav-link-mobile {
        padding: 1.125rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .nav-link-mobile:hover {
        padding-left: 2rem;
    }
}

/* ==========================================
   REAL FIXES - ADD THESE AT THE VERY END OF styles.css
   These override everything else with !important
   ========================================== */

/* FORCE REMOVE ALL BORDERS */
.hero-section {
    border: none !important;
    outline: none !important;
}

.how-it-works {
    border: none !important;
    outline: none !important;
}

.cta-section {
    border: none !important;
    outline: none !important;
}

/* MAKE TEXT ACTUALLY VISIBLE */
.step p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.step h4 {
    color: rgba(255, 255, 255, 1) !important;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.98) !important;
}

/* Also check if there's a border on the title */
.cta-title {
    border: none !important;
    border-bottom: none !important;
}

.section-title {
    border: none !important;
    border-bottom: none !important;
}

/* Remove any border from titles */
.hero-section h1,
.hero-section h2 {
    border: none !important;
    border-bottom: none !important;
}
