:root {
    --primary: #0F4C81;
    --primary-dark: #0a365c;
    --accent: #C5A059;
    --accent-light: #d4b46a;
    --light-bg: #E8E8E8;
    --dark-bg: #121212;
    --dark-surface: #1E1E1E;
    --dark-card: #2D2D2D;
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --text-muted-dark: #6c757d;
    --text-muted-light: #adb5bd;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

[data-bs-theme="dark"] {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

[data-bs-theme="light"] {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

[data-bs-theme="dark"] .navbar {
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
}

[data-bs-theme="dark"] .theme-toggle {
    border-color: var(--accent);
    color: var(--accent);
}

[data-bs-theme="dark"] .theme-toggle:hover {
    background: var(--accent);
    color: var(--dark-bg);
}

.btn-download-nav {
    background: var(--accent);
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-download-nav:hover {
    background: var(--accent-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
}

@media (max-width: 991.98px) {
    #navbarNav.navbar-collapse {
        margin-top: 0.75rem;
        padding-top: 1.25rem;
        padding-bottom: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    [data-bs-theme="dark"] #navbarNav.navbar-collapse {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .navbar-actions {
        width: 100%;
        gap: 1.25rem !important;
        padding: 0.25rem 0 0.5rem;
    }

    .btn-download-nav {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.btn-hero-download {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
}

.btn-hero-download:hover {
    background: var(--accent-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.5);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(197, 160, 89, 0.4);
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.section {
    padding: 100px 0;
}

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

[data-bs-theme="dark"] .section-title {
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    margin-bottom: 3rem;
}

[data-bs-theme="dark"] .section-subtitle {
    color: var(--text-muted-light);
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .why-card {
    background: var(--dark-card);
    border-color: #404040;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .why-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.why-icon-image {
    width: 80px;
    height: 80px;
}

.why-icon-image path {
    fill: var(--primary);
}

[data-bs-theme="dark"] .why-icon-image path {
    fill: var(--accent);
}

[data-bs-theme="dark"] .why-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

[data-bs-theme="dark"] .why-title {
    color: var(--text-light);
}

.why-desc {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
}

[data-bs-theme="dark"] .why-desc {
    color: var(--text-muted-light);
}

.how-section {
    background: var(--light-bg);
}

[data-bs-theme="dark"] .how-section {
    background: var(--dark-surface);
}

.how-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.how-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

[data-bs-theme="dark"] .how-number {
    background: var(--accent);
    color: var(--dark-bg);
}

.how-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

[data-bs-theme="dark"] .how-title {
    color: var(--text-light);
}

.how-desc {
    color: var(--text-muted-dark);
    font-size: 0.9rem;
}

[data-bs-theme="dark"] .how-desc {
    color: var(--text-muted-light);
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -30%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.accordion-item {
    background: white;
    border: 1px solid #dee2e6;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

[data-bs-theme="dark"] .accordion-item {
    background: var(--dark-card);
    border-color: #404040;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
}

[data-bs-theme="dark"] .accordion-button {
    color: var(--text-light);
    background: var(--dark-card);
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

[data-bs-theme="dark"] .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: var(--dark-bg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    color: var(--text-muted-dark);
    padding: 1.5rem;
}

[data-bs-theme="dark"] .accordion-body {
    color: var(--text-muted-light);
    background: var(--dark-card);
}

.download-section {
    background: var(--light-bg);
}

[data-bs-theme="dark"] .download-section {
    background: var(--dark-surface);
}

.download-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .download-card {
    background: var(--dark-card);
    border-color: var(--accent);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .download-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

[data-bs-theme="dark"] .download-card-title {
    color: var(--accent);
}

.download-card-desc {
    color: var(--text-muted-dark);
    margin-bottom: 2rem;
}

[data-bs-theme="dark"] .download-card-desc {
    color: var(--text-muted-light);
}

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    background: var(--text-dark);
}

[data-bs-theme="dark"] .store-btn {
    background: #333;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.store-btn i {
    font-size: 1.75rem;
}

.store-btn-text {
    text-align: left;
}

.store-btn-text small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-btn-text span {
    font-size: 1.1rem;
}

.bottom-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
}

.bottom-cta--with-image {
    position: relative;
    background-image: linear-gradient(135deg, rgba(15, 76, 129, 0.92) 0%, rgba(10, 52, 88, 0.92) 100%),
        url('https://images.unsplash.com/photo-1515377907043-c479a9941281?w=1920&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bottom-cta-content {
    position: relative;
    z-index: 1;
}

.bottom-cta-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-cta-download {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    border: none;
}

.btn-cta-download:hover {
    background: var(--accent-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.5);
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

[data-bs-theme="dark"] footer {
    background: #0a0a0a;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-content {
    padding: 80px 0;
    background-color: #E8E8E8;
}

[data-bs-theme="dark"] .page-content {
    background-color: #121212;
}

.content-card {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
    border: 1px solid #e0e0e0;
}

[data-bs-theme="dark"] .content-card {
    background-color: #2D2D2D;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #404040;
}

.content-card h2 {
    color: #0F4C81;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #C5A059;
    display: inline-block;
}

[data-bs-theme="dark"] .content-card h2 {
    color: #C5A059;
}

.content-card h3 {
    color: #0F4C81;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

[data-bs-theme="dark"] .content-card h3 {
    color: #C5A059;
}

.content-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

[data-bs-theme="dark"] .content-card p {
    color: #adb5bd;
}

.content-card ul {
    color: #6c757d;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

[data-bs-theme="dark"] .content-card ul {
    color: #adb5bd;
}

.content-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #0F4C81, #0a365c);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
}

.highlight-box ul {
    color: rgba(255, 255, 255, 0.9);
}

.security-badge {
    background: linear-gradient(135deg, #0F4C81, #C5A059);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
}

.security-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-badge h3 {
    margin-bottom: 0.5rem;
}

.security-badge p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image-wrapper {
        margin-top: 1rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .bottom-cta--with-image {
        background-attachment: scroll;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .step-connector {
        display: none;
    }

    .bottom-cta-text {
        font-size: 1.5rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-card {
        padding: 2rem;
    }

    .content-card h2 {
        font-size: 1.5rem;
    }
}
