/* --- CSS VARIABLES --- */
:root {
    --bg-color: #050505;
    --brand-mint: #10B981;
    --brand-blue: #3B82F6;
    --brand-amber: #F59E0B;
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
}

/* --- BASE STYLES --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* --- AMBIENT GLOWS --- */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.35;
    animation: pulse 8s infinite alternate;
}
.glow-mint { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(16, 185, 129, 0.25); }
.glow-amber { top: 40%; right: -10%; width: 40vw; height: 40vw; background: rgba(245, 158, 11, 0.15); }

@keyframes pulse { 
    0% { transform: scale(1); opacity: 0.2; } 
    100% { transform: scale(1.1); opacity: 0.4; } 
}

/* --- NAVBAR --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 30px 0; 
}

.logo { 
    display: flex; 
    align-items: center; /* This perfectly centers the image and text vertically */
    gap: 12px;           /* Puts a nice, breathable space between the icon and the word */
    font-size: 24px; 
    font-weight: 900; 
    color: var(--text-main); 
    text-decoration: none; 
    letter-spacing: -1px; 
}

.logo-img {
    width: 32px;  /* Standard size for navbar logos */
    height: 32px;
    border-radius: 8px; /* Gives the icon smooth, app-like corners */
    object-fit: contain;
}

.logo span { 
    color: var(--brand-mint); 
}

.nav-cta { 
    background: rgba(255,255,255,0.05); 
    color: white; 
    padding: 12px 24px; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 15px; 
    transition: 0.3s; 
    border: 1px solid rgba(255,255,255,0.1); 
}

.nav-cta:hover { 
    background: var(--text-main); 
    color: var(--bg-color); 
}

/* --- HERO SECTION (SIDE-BY-SIDE) --- */
.hero {
    display: flex; align-items: center; justify-content: space-between; min-height: 85vh; gap: 40px; padding-bottom: 60px;
}
.hero-text { flex: 1.1; }
.badge { display: inline-flex; background: rgba(16, 185, 129, 0.1); color: var(--brand-mint); padding: 8px 18px; border-radius: 30px; font-size: 14px; font-weight: 800; margin-bottom: 24px; border: 1px solid rgba(16, 185, 129, 0.3); }
.hero h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
.hero h1 span { background: -webkit-linear-gradient(45deg, var(--brand-mint), var(--brand-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 45px; max-width: 520px; line-height: 1.6; }
.version-text { font-size: 14px; color: var(--text-muted); font-weight: 500; display: block; margin-top: 18px; }

/* Waitlist Capture Form */
.waitlist-form {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 8px; border-radius: 20px; display: flex; gap: 10px; max-width: 500px; backdrop-filter: blur(10px);
}
.waitlist-form input {
    flex: 1; background: transparent; border: none; color: white; padding: 18px 24px; font-size: 16px; outline: none; width: 100%;
}
.waitlist-form input::placeholder { color: rgba(255,255,255,0.3); }
.waitlist-form button {
    background: var(--brand-mint); color: var(--bg-color); border: none; padding: 18px 32px; border-radius: 14px; font-weight: 800; font-size: 16px; cursor: pointer; transition: 0.2s; white-space: nowrap; width: 100%;
}
.waitlist-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3); }

/* Desktop button override */
@media (min-width: 769px) {
    .waitlist-form button { width: auto; }
}

/* --- 3D HERO IMAGE --- */
.hero-visual { flex: 1.3; display: flex; justify-content: flex-end; perspective: 1200px; }
.hero-phone { 
    width: 100%; 
    max-width: 420px; 
    transform: rotateY(-18deg) rotateX(8deg); 
}
.hero-phone:hover { transform: rotateY(0deg) rotateX(0deg); }

/* --- SHOWCASE SECTION (Z-PATTERN) --- */
.showcase-section { padding: 100px 0; }
.showcase-row { display: flex; align-items: center; justify-content: space-between; gap: 80px; margin-bottom: 180px; }
.showcase-row.reverse { flex-direction: row-reverse; }

.showcase-text { flex: 1; }
.showcase-image { flex: 1; display: flex; justify-content: center; perspective: 1000px; }

/* Step Numbers */
.step-number { width: 55px; height: 55px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; margin-bottom: 30px; }
.mint-box { color: var(--brand-mint); background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); }
.blue-box { color: var(--brand-blue); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.amber-box { color: var(--brand-amber); background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); }

/* Text & Lists */
.showcase-text h2 { font-size: 3.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1.5px; }
.showcase-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 35px; line-height: 1.6; }

.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; margin-bottom: 18px; font-size: 1.15rem; font-weight: 600; color: #E5E7EB; line-height: 1.4; }
.feature-list li span { margin-right: 18px; font-weight: 900; padding: 5px 10px; border-radius: 8px; background: rgba(255,255,255,0.05); flex-shrink: 0; }
.check-mint { color: var(--brand-mint); }
.check-blue { color: var(--brand-blue); }
.check-amber { color: var(--brand-amber); }

/* Showcase Phone Images */
.phone-mockup { 
    width: 100%; 
    max-width: 340px; 
    border-radius: 40px; 
    box-shadow: 0 40px 80px rgba(0,0,0,0.8); 
    border: 8px solid #1A1A1A; 
    transition: 0.5s ease-out; 
}

/* Floating animations */
.float-up { animation: floatUp 7s ease-in-out infinite; }
.float-down { animation: floatDown 7s ease-in-out infinite; }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes floatDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(20px); } }

/* --- BOTTOM CTA --- */
.bottom-cta { text-align: center; padding: 140px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.bottom-cta h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -1.5px; }
.bottom-cta p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.center-form { margin: 0 auto; }

/* --- FOOTER --- */
footer { display: flex; justify-content: space-between; align-items: center; padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 15px; font-weight: 500; }
.footer-links a { color: var(--text-muted); text-decoration: none; margin-left: 24px; transition: 0.3s; }
.footer-links a:hover { color: var(--text-main); }


/* =========================================
   MOBILE RESPONSIVENESS (PERFECT ALIGNMENT)
   ========================================= */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    
    .hero-visual { display: flex; justify-content: center; width: 100%; margin-top: 50px; }
    .hero-phone { transform: none; max-width: 360px; }
    .hero-phone:hover { transform: none; }
    
    .showcase-row, .showcase-row.reverse { flex-direction: column; text-align: center; gap: 50px; margin-bottom: 120px; }
    .showcase-text { display: flex; flex-direction: column; align-items: center; }
    .float-up, .float-down { animation: none; } 
}

/* Mobile Phones (Strict Alignment Fixes) */
@media (max-width: 768px) {
    /* Navbar */
    .logo { font-size: 20px; }
    .nav-cta { padding: 10px 16px; font-size: 13px; }

    /* Hero Text */
    .hero h1 { font-size: 2.8rem; letter-spacing: -1px; margin-bottom: 16px; }
    .hero p { font-size: 1.1rem; margin-bottom: 30px; padding: 0 10px; }
    .badge { margin-bottom: 20px; }

    /* Mobile Form Constraints */
    .waitlist-form { 
        flex-direction: column; 
        width: 100%; 
        background: transparent; 
        border: none; 
        padding: 0; 
        backdrop-filter: none;
    }
    .waitlist-form input { 
        background: rgba(255,255,255,0.05); 
        border-radius: 12px; 
        margin-bottom: 12px; 
        border: 1px solid rgba(255,255,255,0.1); 
        padding: 16px 20px;
    }
    .waitlist-form button { padding: 16px; border-radius: 12px; }

    /* Showcase Sections */
    .showcase-section { padding: 60px 0; }
    .showcase-row, .showcase-row.reverse { margin-bottom: 80px; gap: 40px; }
    
    /* Center the step number blocks perfectly */
    .step-number { margin: 0 auto 20px auto; }
    
    .showcase-text h2 { font-size: 2.2rem; letter-spacing: -1px; margin-bottom: 16px; }
    .showcase-text p { font-size: 1.05rem; margin-bottom: 25px; padding: 0 10px; }

    /* FIX: The Bullet Lists! 
       Keep the block centered, but align the text inside to the left 
       so the checkmarks don't look jagged. */
    .feature-list { 
        display: inline-block; 
        text-align: left; 
    }
    .feature-list li { 
        font-size: 1rem; 
        margin-bottom: 12px; 
    }

    /* Bottom CTA */
    .bottom-cta { padding: 80px 0; }
    .bottom-cta h2 { font-size: 2.5rem; }
    .bottom-cta p { font-size: 1.1rem; padding: 0 10px; margin-bottom: 30px; }

    /* Footer */
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { display: flex; justify-content: center; gap: 20px; }
    .footer-links a { margin: 0; }
}


/* --- NEW HERO BUTTONS --- */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* ✨ Fix: Centers the text & icon */
    gap: 10px;
    background: var(--brand-mint);
    color: var(--bg-color);
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease; /* Smoother transition */
}
.primary-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4); 
}

.secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* ✨ Fix: Centers the text */
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-mint);
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}
.secondary-btn:hover { 
    background: rgba(16, 185, 129, 0.2); 
    transform: translateY(-2px); /* ✨ Fix: Gives the secondary button a subtle lift too */
}

/* --- MOBILE FIXES FOR HERO BUTTONS --- */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column; /* ✨ Fix: Stacks them vertically on small screens */
        width: 100%;
        gap: 12px; /* Slightly tighter gap on mobile */
    }
    .primary-btn, .secondary-btn {
        width: 100%; /* ✨ Fix: Makes them stretch nicely edge-to-edge */
    }
}
/* --- PROMO BANNER --- */
.promo-banner {
    background: rgba(245, 158, 11, 0.1);
    color: var(--brand-amber);
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.5;
}

.pulse-dot {
    width: 10px; 
    height: 10px; 
    background: var(--brand-amber); 
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0; /* ✨ THE FIX: Stops the dot from turning into an oval when text wraps */
}

.promo-somali {
    opacity: 0.8;
    font-weight: 600;
    margin-left: 8px;
}

/* MOBILE FIXES FOR PROMO BANNER */
@media (max-width: 768px) {
    .promo-banner {
        font-size: 13px;
        padding: 12px 20px;
        align-items: flex-start; /* Aligns the dot with the top line of text */
        text-align: left; /* Makes wrapped text much easier to read */
    }
    .pulse-dot {
        margin-top: 5px; /* Pushes the dot down slightly to align with the text height */
    }
    .promo-somali {
        display: block; /* ✨ Drops the Somali translation to its own line on small screens */
        margin-left: 0;
        margin-top: 4px;
        font-size: 12px;
    }
}

/* --- PRICING SECTION --- */
.pricing-section { padding: 80px 0; text-align: center; }
.pricing-header h2 { font-size: 3rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.pricing-header p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 60px; }

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px; /* Reduced gap to fit 3 cards perfectly */
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    flex: 1;
    background: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 35px 25px; /* Adjusted padding */
    text-align: left;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.pro-card {
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.vip-card {
    border: 2px solid var(--brand-amber);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
    transform: scale(1.02); /* Makes the VIP card slightly larger to draw the eye */
}
.pro-badge {
    position: absolute; top: -14px; right: 20px; background: var(--brand-mint); color: var(--bg-color); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px;
}
.amber-badge { background: var(--brand-amber); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }

.pricing-card h3 { font-size: 1.4rem; margin-bottom: 5px; }

/* Pricing Logic */
.price-container { display: flex; flex-direction: column; margin-bottom: 25px; }
.strike-price { color: var(--text-muted); font-size: 1.1rem; font-weight: 600; text-decoration: line-through; opacity: 0.5; margin-bottom: -5px; }
.price { font-size: 3rem; font-weight: 900; margin-bottom: 25px; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.amber-text { color: var(--brand-amber); }

.plan-features { margin-bottom: 30px; flex-grow: 1; /* Pushes the button to the bottom */ }
.plan-features li { font-size: 1rem; margin-bottom: 12px; } /* Slightly smaller text to fit 3 columns */
.check-muted { color: var(--text-muted); }
.check-amber { color: var(--brand-amber); }

.plan-btn {
    display: block; text-align: center; padding: 16px; border-radius: 12px; font-weight: 800; font-size: 15px; text-decoration: none; transition: 0.2s; width: 100%;
}
.muted-btn { background: #1A1A1A; color: white; border: 1px solid rgba(255,255,255,0.1); }
.muted-btn:hover { background: #222; }
.mint-btn { background: var(--brand-mint); color: var(--bg-color); }
.mint-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
.amber-btn { background: var(--brand-amber); color: var(--bg-color); }
.amber-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); }
/* --- ACTIVATION FLOW --- */
.activation-section { padding: 40px 0 100px 0; text-align: center; }
.activation-container {
    background: #0A0A0A;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.activation-container h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.activation-container > p { color: var(--text-muted); margin-bottom: 50px; font-size: 1.15rem; }

.activation-steps {
    display: flex; gap: 20px; text-align: left;
}
.step-card {
    flex: 1; 
    background: #121212; 
    padding: 30px 25px; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.05); 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}
.step-circle {
    width: 40px; height: 40px; background: rgba(16, 185, 129, 0.1); color: var(--brand-mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; margin-bottom: 20px;
}
.step-card h4 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 800; line-height: 1.4; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 15px;}

/* Fix for wrapped bullet points on mobile */
.feature-list li {
    display: flex;
    align-items: flex-start; /* Keeps multi-line text aligned properly */
}
.feature-list li span.check-mint {
    flex-shrink: 0; /* Prevents the bullet from shrinking if the text wraps */
}

.ussd-code {
    background: #1A1A1A; color: var(--text-main); font-family: monospace; font-size: 1.3rem; font-weight: 900; padding: 12px 16px; border-radius: 12px; display: inline-block; border: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 10px; text-align: center; letter-spacing: 1px; width: 100%;
}

.whatsapp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: white; padding: 14px 20px; border-radius: 12px; font-weight: bold; text-decoration: none; margin-top: 15px; transition: 0.2s;
}
.whatsapp-btn:hover { background: #20BD5A; transform: translateY(-2px); }

/* --- MOBILE FIXES FOR 3 CARDS --- */
@media (max-width: 900px) {
    .pricing-grid { flex-direction: column; gap: 30px; }
    .vip-card { transform: scale(1); }
    .activation-steps { flex-direction: column; gap: 30px; }
    .activation-container { padding: 40px 20px; }
    .ussd-code {font-size: 1.1rem;}
    /* Ensure the button fills the card on small screens */
    .whatsapp-btn { width: 100%; }
}

.testimonial-section {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}
.testimonial-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonial-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(16, 185, 129, 0.05); /* Very subtle mint quote mark */
    font-family: serif;
    line-height: 1;
    z-index: 0;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.4);
    background-color: #273343;
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
}
.testimonial-author {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
}
.stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-top: 3px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .testimonial-section {
        padding: 3rem 1.5rem; 
    }
    .testimonial-section h2 {
        font-size: 2rem; 
    }
    .testimonial-subtitle {
        margin-bottom: 2rem;
    }
    .testimonial-grid {
        gap: 1.5rem; 
    }
    .testimonial-card {
        padding: 1.5rem; 
    }
    .testimonial-card::before {
        font-size: 6rem;
        right: 10px;
    }
    .testimonial-header {
        flex-direction: row;
    }
}





















/* =========================================
   PRIVACY POLICY PAGE STYLES
   ========================================= */

.privacy-container {
    max-width: 800px;
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--bg-color);
    background: var(--text-main);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 10px 0;
    color: var(--text-main);
}

.legal-header h1 span {
    color: var(--brand-mint);
}

.legal-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* The Floating Content Card */
.content-card {
    background: #121212;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin-bottom: 60px;
}

/* The Highlight Box (SMS Permissions) */
.highlight-box {
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--brand-mint);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.highlight-text h3 {
    color: var(--brand-mint);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.highlight-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Legal Text Sections */
.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.legal-section strong {
    color: var(--text-main);
}

/* Contact Box */
.contact-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 15px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .content-card { padding: 30px 20px; }
    .legal-header h1 { font-size: 2.5rem; }
    .highlight-box { flex-direction: column; gap: 10px; }
}
