/* Feasibility Ideas - Modern Premium Design System 2026 */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap');

:root {
    --primary-color: #0d1b2a;
    --primary-light: #1b3a5a;
    --secondary-color: #cfa346;
    --secondary-light: #e8c87a;
    --accent-color: #e0e1dd;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --success: #27ae60;
    --danger: #e74c3c;
    --whatsapp: #25D366;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

/* ==================== HEADER - Glassmorphism ==================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

nav {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 70px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.logo-title {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 0.7rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover {
    background: rgba(207, 163, 70, 0.1);
    color: var(--secondary-color);
}

/* Nav Buttons */
.nav-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-call {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(207, 163, 70, 0.3);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 163, 70, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Toggle - Animated Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--bg-color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    gap: 5px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

.menu-toggle:hover {
    background: rgba(207, 163, 70, 0.15);
}

/* Mobile Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: var(--transition);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ==================== HERO SECTION ==================== */
.hero {
    margin-top: 80px;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.92), rgba(27, 58, 90, 0.88)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.35;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(207, 163, 70, 0.35);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(207, 163, 70, 0.45);
}

/* ==================== SECTIONS ==================== */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title .line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    margin: 0 auto;
    border-radius: 2px;
}

.section-title p {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features / Methodology Section */
.features {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-color);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(207, 163, 70, 0.2);
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(207, 163, 70, 0.15), rgba(207, 163, 70, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(207, 163, 70, 0.25), rgba(207, 163, 70, 0.1));
}

.feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Comparison Section */
.comparison {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-color), var(--white));
}

.comparison-table-container {
    overflow-x: auto;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.3rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    font-size: 1.15rem;
    font-weight: 800;
}

.col-bad {
    color: var(--danger);
    background: linear-gradient(135deg, #fdf2f2, #fff5f5);
}

.col-good {
    color: var(--success);
    background: linear-gradient(135deg, #f0faf4, #e8f8ef);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius);
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(207, 163, 70, 0.3);
}

.faq-question {
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(207, 163, 70, 0.05);
}

.faq-question .toggle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    transition: var(--transition);
    font-weight: 300;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    display: none;
    line-height: 1.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(207, 163, 70, 0.08) 0%, transparent 50%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* ==================== MODERN FOOTER ==================== */
.new-footer {
    background: linear-gradient(180deg, var(--primary-color), #0a141f);
    color: var(--white);
    margin-top: 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    padding-left: 2rem;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item span {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Old Footer Support */
footer:not(.new-footer) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ==================== PROJECTS SECTION ==================== */
.projects {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-left: 0;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    nav {
        padding: 0.7rem 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text {
        display: flex;
        align-items: center;
    }
    
    .logo-title {
        font-size: 0.95rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        z-index: 1001;
        gap: 0.5rem;
        align-items: stretch;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        right: 0;
    }
    
    .nav-links li a {
        padding: 1rem 1.2rem;
        border-radius: var(--radius);
        text-align: center;
        font-size: 1.05rem;
        border: 1px solid #eee;
    }
    
    .nav-links .nav-btn {
        justify-content: center;
        margin-top: 0.5rem;
        border: none !important;
    }
    
    /* Hero Mobile */
    .hero {
        margin-top: 70px;
        min-height: 70vh;
        padding: 2.5rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.4;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Sections Mobile */
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
    
    .features {
        padding: 4rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .comparison {
        padding: 4rem 1rem;
    }
    
    .comparison-table-container {
        padding: 1rem;
        border-radius: var(--radius);
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.82rem;
    }
    
    .faq {
        padding: 4rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.3rem;
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.7rem;
    }
    
    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Floating Button Mobile */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .projects {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 42px;
    }
    
    .logo-title {
        font-size: 0.8rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .logo-subtitle {
        display: none;
    }
    
    .hero h1 {
        font-size: 1.55rem;
    }
    
    .hero p {
        font-size: 0.92rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.45rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon img {
        width: 38px;
        height: 38px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.3rem;
        font-size: 0.72rem;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .footer-main {
        padding: 2.5rem 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ==================== LITE LANDING PAGE STYLES ==================== */
.hero-sm { height: 45vh !important; min-height: 300px; }
.hero-sm h1 { font-size: 1.8rem !important; }
.hero-sm p { font-size: 1rem !important; }

.breadcrumb { max-width: 900px; margin: 1rem auto; padding: 0 1.5rem; font-size: 0.85rem; color: #666; }
.breadcrumb a { color: var(--secondary-color); text-decoration: none; }

.content-box { max-width: 900px; margin: 0 auto 2rem; background: var(--white); padding: 2.5rem 2rem; border-radius: 15px; box-shadow: var(--shadow); }
.content-box h2 { color: var(--primary-color); margin: 2rem 0 1rem; font-size: 1.4rem; }
.content-box h2:first-child { margin-top: 0; }
.content-box p { color: #555; line-height: 1.8; margin-bottom: 1rem; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.stat-card { background: var(--bg-color); padding: 1.2rem; border-radius: 10px; text-align: center; border-right: 3px solid var(--secondary-color); }
.stat-value { font-size: 1.3rem; font-weight: 700; color: var(--primary-color); }
.stat-label { color: #666; font-size: 0.8rem; }

.req-list { padding-right: 1rem; color: #555; line-height: 2; margin-bottom: 1.5rem; }
.req-list li { margin-bottom: 0.3rem; }

.success-box { background: #f0faf4; border-right: 3px solid #27ae60; padding: 1rem 1.5rem; border-radius: 0 10px 10px 0; margin-bottom: 1.5rem; }
.success-box ul { list-style: none; padding: 0; margin: 0; color: #155724; }
.success-box li { margin-bottom: 0.5rem; }

.risk-box { background: #fdf2f2; border-right: 3px solid #c0392b; padding: 1rem 1.5rem; border-radius: 0 10px 10px 0; margin-bottom: 1.5rem; }
.risk-box ul { list-style: none; padding: 0; margin: 0; color: #721c24; }
.risk-box li { margin-bottom: 0.5rem; }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.tag { background: var(--secondary-color); color: white; padding: 0.4rem 0.8rem; border-radius: 15px; font-size: 0.85rem; }

.cta-box { text-align: center; background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); padding: 2rem; border-radius: 12px; color: white; margin-top: 2rem; }
.cta-box h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.cta-box p { opacity: 0.9; margin-bottom: 1rem; font-size: 0.95rem; }
.cta-phone { margin-top: 1rem; font-size: 0.85rem; opacity: 0.8; }
.cta-phone a { color: var(--secondary-color); }

.related { max-width: 900px; margin: 0 auto 2rem; padding: 0 1.5rem; }
.related h3 { color: var(--primary-color); margin-bottom: 1rem; font-size: 1.1rem; }
.related-links { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.related-links a { background: white; padding: 0.7rem 1rem; border-radius: 8px; text-decoration: none; color: var(--primary-color); box-shadow: 0 2px 8px rgba(0,0,0,0.05); font-size: 0.9rem; transition: var(--transition); }
.related-links a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.footer-simple { background: var(--primary-color); color: white; padding: 1.5rem; text-align: center; }
.footer-simple a { color: var(--secondary-color); text-decoration: none; }
.footer-simple p { margin: 0.3rem 0; font-size: 0.9rem; opacity: 0.9; }

@media (max-width: 768px) {
    .hero-sm { height: 35vh !important; }
    .hero-sm h1 { font-size: 1.4rem !important; }
    .content-box { padding: 1.5rem 1rem; margin: 0 1rem 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 1.5rem 1rem; }
    .related { padding: 0 1rem; }
    .related-links a { width: 100%; text-align: center; }
}
