:root {
    --brand-lime: #C5D92E;
    --brand-navy: #0f3057;
    --brand-blue: #007bff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --border-radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --font-family: 'Outfit', 'Inter', sans-serif;
}

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

html, body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-navy);
}

.text-primary-custom {
    color: var(--brand-navy) !important;
}

.btn-outline-primary-custom {
    border: 2px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.btn-outline-primary-custom:hover {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom {
    background-color: var(--brand-lime);
    color: #111827;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 14px rgba(197, 217, 46, 0.4);
}

.btn-primary-custom:hover {
    background-color: #d4e831;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 217, 46, 0.6);
    color: #000;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at top right, #1a4a82 0%, var(--brand-navy) 100%);
    padding: 80px 0 100px;
    min-height: 600px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Simulator Widget Glassmorphism */
.simulator-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.simulator-widget h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--brand-navy);
    font-weight: 800;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-navy);
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--brand-lime);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(197, 217, 46, 0.1);
}

.input-wrapper .currency {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-navy);
    font-weight: 700;
    font-size: 18px;
}

/* Hide arrows on number input */
.input-wrapper input[type="number"]::-webkit-inner-spin-button, 
.input-wrapper input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
.input-wrapper input[type="number"] {
    -moz-appearance: textfield;
}

.project-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.project-btn {
    padding: 14px 10px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.project-btn:hover {
    background: var(--white);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.project-btn.active {
    border-color: var(--brand-lime);
    color: var(--brand-navy);
    background-color: var(--white);
    box-shadow: 0 0 0 2px rgba(197, 217, 46, 0.2);
}

.duration-selector {
    display: flex;
    gap: 12px;
}

.duration-card {
    flex: 1;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.duration-card:hover {
    background: var(--white);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.duration-card.active {
    border-color: var(--brand-lime);
    background-color: var(--white);
    box-shadow: 0 0 0 2px rgba(197, 217, 46, 0.2);
}

.duration-card .months {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-navy);
}

.duration-card .amount {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

.duration-card.active .months,
.duration-card.active .amount {
    color: var(--brand-navy);
}

.btn-submit {
    width: 100%;
    background-color: var(--brand-lime);
    color: #111827;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    box-shadow: 0 4px 14px rgba(197, 217, 46, 0.4);
}

.btn-submit:hover {
    background-color: #d4e831;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 217, 46, 0.6);
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

/* Hero Promo */
.hero-promo {
    flex: 1;
    color: var(--white);
    position: relative;
    padding-left: 40px;
}

.hero-promo h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-promo .subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.promo-badge {
    position: absolute;
    top: -30px;
    left: -20px;
    background: var(--white);
    color: var(--brand-navy);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transform: rotate(-10deg);
    z-index: 10;
}

.promo-badge span {
    font-size: 12px;
    font-weight: 600;
}

.promo-badge strong {
    font-size: 26px;
    font-weight: 800;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.text-center {
    text-align: center;
}

.pre-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- New Sections Styling --- */
.bg-light { background-color: var(--bg-light); }
.text-left { text-align: left; }
.text-center { text-align: center; }

/* Features Section */
.features-section { padding: 60px 0; background: var(--white); }
.features-section h2 { font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 50px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.feature-card { background: #f8f9fa; border-radius: 16px; padding: 40px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.feature-icon { width: 80px; height: 80px; border-radius: 50%; background: #e6f2ff; color: var(--brand-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 25px; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; min-height: 56px; }
.feature-card ul { list-style: none; text-align: center; margin-bottom: 20px; flex-grow: 1; }
.feature-card li { font-size: 14px; color: var(--text-light); margin-bottom: 10px; position: relative; padding-left: 20px; text-align: left; }
.feature-card li::before { content: "•"; color: var(--brand-navy); font-weight: bold; position: absolute; left: 0; }
.feature-footer { font-size: 13px; color: var(--text-dark); font-weight: 500; border-top: 1px solid var(--border-color); padding-top: 20px; width: 100%; }
.legal-disclaimer { font-size: 11px; color: #999; text-align: justify; line-height: 1.4; border-top: 1px solid var(--border-color); padding-top: 20px; }

/* Reviews Section */
.reviews-section { padding: 60px 0; background: var(--white); }
.reviews-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 15px; }
.reviews-subtitle { color: var(--text-light); font-size: 14px; margin-bottom: 50px; }
.reviews-subtitle a { color: var(--brand-navy); text-decoration: none; }
.reviews-container { background: #f8f9fa; border-radius: 16px; padding: 30px 40px; max-width: 900px; margin: 0 auto; }
.reviews-header { display: flex; justify-content: space-between; border-bottom: 2px solid #ffb800; padding-bottom: 15px; margin-bottom: 20px; }
.reviews-title { font-weight: 600; font-size: 14px; color: var(--text-light); letter-spacing: 1px; }
.stars { color: #ffb800; }
.score-number { font-weight: 700; font-size: 18px; margin-left: 10px; }
.review-item { padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-item-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.reviewer-name { font-weight: 600; font-size: 15px; }
.score-detail { color: var(--text-light); font-weight: normal; margin-left: 5px; }
.review-date { text-align: right; }
.review-date .date { display: block; font-weight: 600; font-size: 14px; }
.review-date .date-subtitle { font-size: 11px; color: var(--text-light); font-style: italic; }
.review-text { color: var(--text-light); font-size: 15px; }

/* Offers Section */
.offers-section { padding: 80px 0; }
.offers-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 50px; }
.superscript { font-size: 16px; vertical-align: super; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.offer-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s; display: flex; flex-direction: column; }
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.offer-image { height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blue-bg { background-color: var(--brand-navy); }
.offer-circle { background: var(--white); width: 140px; height: 140px; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: var(--shadow-sm); }
.offer-circle span { font-size: 12px; color: var(--brand-navy); font-weight: 600; }
.offer-circle strong { font-size: 20px; color: var(--text-dark); }
.offer-card-illustration { width: 120px; height: 180px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; box-shadow: var(--shadow-md); transform: rotate(5deg); margin-top: 40px; }
.blue-card { background: linear-gradient(135deg, #0056b3, #007bff); }
.gold-card { background: linear-gradient(135deg, #d4af37, #ffd700); }
.offer-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.offer-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; min-height: 56px; }
.offer-content p { color: var(--text-light); font-size: 14px; margin-bottom: 25px; flex-grow: 1; }
.offer-content a { color: var(--brand-navy); }
.offer-content .btn-primary { width: fit-content; margin-top: auto; }


/* Projects Section */
.projects-section { padding: 80px 0; background: var(--white); }
.projects-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.projects-subtitle { color: var(--text-light); font-size: 16px; margin-bottom: 50px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 20px; max-width: 900px; margin: 0 auto; }
.project-item { display: flex; flex-direction: column; align-items: center; }
.project-icon { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--brand-navy); color: var(--brand-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 15px; background: #f0f7ff; }
.project-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.project-item a { color: var(--brand-navy); font-size: 14px; font-weight: 500; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.project-item a:hover { border-color: var(--brand-navy); }

/* Products Section */
.products-section { padding: 80px 0; background: var(--white); }
.products-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 15px; }
.products-subtitle { color: var(--text-light); font-size: 16px; margin-bottom: 50px; }
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.product-card { background: #f8f9fa; border-radius: 16px; padding: 40px; display: flex; flex-direction: column; }
.product-icon { width: 60px; height: 60px; border-radius: 50%; background: #e6f2ff; color: var(--brand-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 25px; }
.product-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
.product-links { list-style: none; margin-bottom: 25px; }
.product-links li { margin-bottom: 10px; }
.product-links a { color: var(--brand-navy); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.product-links a:hover { border-color: var(--brand-navy); }
.product-desc { color: var(--text-light); font-size: 14px; line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }
.product-btn { display: inline-block; width: fit-content; margin-top: auto; }

/* Minimal Footer */
.footer-minimal { background: var(--white); border-top: 1px solid var(--border-color); padding: 40px 0 20px; }
.footer-minimal-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.footer-minimal-top .logo { font-size: 20px; color: var(--brand-navy); font-weight: 800; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.social-icons { display: flex; gap: 15px; align-items: center; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-light); color: var(--brand-navy); transition: all 0.3s ease; }
.social-icons a:hover { background: var(--brand-navy); color: var(--white); transform: translateY(-3px); }
.footer-minimal-middle { text-align: center; margin-bottom: 40px; padding: 20px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.footer-minimal-middle p { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.footer-minimal-middle p:first-child { font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.footer-minimal-bottom { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.legal-links { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.legal-links a { color: var(--text-dark); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.legal-links a:hover { color: var(--brand-navy); }
.copyright { font-size: 12px; color: var(--text-light); }

/* Modal Simulation */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); display: flex; justify-content: center; align-items: center; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--white); width: 90%; max-width: 450px; border-radius: 16px; box-shadow: var(--shadow-lg); position: relative; transform: translateY(20px); transition: all 0.3s ease; overflow: hidden; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 28px; color: var(--text-light); cursor: pointer; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--text-dark); }
.modal-header { padding: 25px 30px 15px; border-bottom: 1px solid var(--border-color); }
.modal-header h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.modal-body { padding: 25px 30px; }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border-color); font-size: 15px; }
.result-row:last-of-type { border-bottom: none; }
.result-row span { color: var(--text-light); }
.result-row strong { color: var(--text-dark); font-weight: 600; }
.highlight-row { background: #f0f7ff; padding: 15px; margin: 15px -15px; border-radius: 8px; border-bottom: none; border: 1px solid #cce5ff; }
.highlight-row span { color: var(--text-dark); font-weight: 600; }
.highlight-row strong { font-size: 20px; }
.text-primary { color: var(--brand-navy) !important; }
.modal-disclaimer { font-size: 11px; color: var(--text-light); margin-top: 20px; text-align: justify; line-height: 1.4; }
.modal-footer { padding: 20px 30px; background: #f8f9fa; border-top: 1px solid var(--border-color); }

/* Cookie Modal */
.cookie-content { background: var(--white); width: 90%; max-width: 600px; border-radius: 12px; padding: 30px; position: relative; display: flex; flex-direction: column; gap: 20px; box-shadow: var(--shadow-lg); }
.cookie-header { display: flex; justify-content: space-between; align-items: flex-start; }
.cookie-header h3 { font-size: 20px; color: var(--brand-navy); font-weight: 700; width: 70%; margin-bottom: 0; }
.cookie-header .btn-link { font-size: 12px; color: var(--brand-navy); text-decoration: underline; background: none; border: none; cursor: pointer; padding: 0; margin-top: 5px; }
.cookie-body p { font-size: 13px; color: var(--text-dark); margin-bottom: 15px; line-height: 1.5; }
.cookie-body ul { font-size: 13px; color: var(--text-dark); margin-left: 20px; margin-bottom: 15px; }
.cookie-body ul li { margin-bottom: 5px; list-style-type: disc; }
.cookie-body a { color: var(--text-dark); text-decoration: underline; font-weight: 600; }
.cookie-footer { display: flex; justify-content: space-between; gap: 15px; margin-top: 10px; }
.cookie-footer button { flex: 1; padding: 12px; font-weight: 600; border-radius: 30px; font-size: 14px; cursor: pointer; }
.cookie-footer .btn-outline { background: var(--white); border: 2px solid var(--brand-navy); color: var(--brand-navy); }
.cookie-footer .btn-outline:hover { background: #f0f7ff; }


/* Forms */
.form-container { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: var(--shadow-md); max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px; font-family: inherit; font-size: 15px; transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--brand-navy); box-shadow: 0 0 0 3px rgba(0, 82, 155, 0.1); }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text-dark); padding: 5px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }
    
    .simulator-widget {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-promo {
        padding-left: 0;
        text-align: center;
        margin-top: 40px;
    }
    
    .promo-badge {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto 0;
    }
    
    .hero-promo h1 {
        font-size: 40px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .main-header {
        position: relative;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 15px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .header-buttons {
        display: none;
    }
    
    .features-grid, .offers-grid, .projects-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .review-item-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-date {
        text-align: left;
    }
    
    .footer-minimal-top {
        flex-direction: column;
        gap: 20px;
    }
}

.hover-white:hover {
    color: var(--white) !important;
}

