:root {
    --navy-deep: #0d1b2a;
    --navy-mid: #1b263b;
    --navy-light: #415a77;
    --accent-blue: #0077b6;
    --accent-soft: #e0e1dd;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-mid: #adb5bd;
    --text-main: #1b263b;
    --text-muted: #778da9;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(13, 27, 42, 0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

body {
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-small {
    max-width: 800px;
}

.section {
    padding: 6rem 0;
}

.gray-bg {
    background-color: var(--gray-light);
}

.center-head {
    text-align: center;
    margin-bottom: 4rem;
}

.center-head h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-deep);
}

.center-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Stylish Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-deep);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.loader-visual {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb {
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-blue), 0 0 60px var(--accent-blue);
    animation: orb-bounce 2s infinite ease-in-out;
}

@keyframes orb-bounce {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 119, 182, 0.3);
    border-radius: 50%;
    animation: ripple-grow 2.5s infinite linear;
}

.ripple::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(72, 202, 228, 0.2);
    border-radius: 50%;
    animation: ripple-grow 2.5s infinite linear 1.25s;
}

@keyframes ripple-grow {
    from {
        transform: scale(0.5);
        opacity: 1;
    }

    to {
        transform: scale(3);
        opacity: 0;
    }
}

.loading-status {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.5;
}

.loading-status span {
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Ad Bar */
.top-ad-bar {
    background: var(--gray-light);
    color: var(--text-muted);
    font-size: 0.7rem;
    text-align: center;
    padding: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.brand-logo .logo-mark {
    width: 28px;
    height: 32px;
    box-shadow: none;
}

.brand-logo .logo-mark::after {
    font-size: 0.9rem;
}

.brand-logo .logo-text {
    font-size: 1.5rem;
    color: var(--navy-deep);
    letter-spacing: -1px;
}

.brand-logo .logo-tag {
    color: var(--accent-blue);
    font-weight: 400;
    background: none;
    padding: 0;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--navy-mid);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.cta-button {
    background: var(--navy-deep);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.2);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--navy-deep);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 119, 182, 0.03) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 119, 182, 0.1);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    color: var(--accent-blue);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.secondary-link {
    font-weight: 600;
    color: var(--navy-deep);
    border-bottom: 2px solid var(--accent-blue);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-light);
}

.indicator .icon {
    color: #2a9d8f;
    font-weight: 900;
}

/* Hero Visual Refinements */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-main-img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(13, 27, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.visual-card-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 320px;
    z-index: 2;
}

.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--navy-deep);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(13, 27, 42, 0.3);
}

.floating-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.floating-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--navy-deep);
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-info p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.check-list li {
    padding: 0.5rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-list li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: 900;
}

.about-visual {
    position: relative;
}

.image-wrapper {
    background: var(--gray-light);
    border-radius: 30px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.corporate-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1) 25%, transparent 25%);
    background-size: 40px 40px;
}

.expert-profile {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-item p {
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.t-card {
    padding: 3rem;
    background: var(--gray-light);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.t-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: 700;
    color: var(--navy-deep);
}

/* FAQ */
.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-toggle {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-toggle::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.accordion-item.active .accordion-toggle::after {
    content: '−';
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-panel {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Return Policy */
.policy-card {
    background: var(--navy-deep);
    color: var(--white);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
}

.policy-card h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.policy-card p {
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-muted);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ad-small {
    margin-top: 0.5rem;
    font-style: italic;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

/* Modals */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-container.active {
    display: flex;
}

.modal-box {
    background: var(--white);
    width: 100%;
    max-width: 700px;
    padding: 4rem;
    border-radius: 20px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.modal-box h2 {
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.modal-box p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 2rem;
    right: 2rem;
    z-index: 5000;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.active {
    bottom: 2rem;
}

.cookie-inner {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-s {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
}

#acceptCookies {
    background: var(--navy-deep);
    color: var(--white);
}

.btn-outline {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background: var(--white);
    z-index: 3000;
    transition: right 0.4s ease;
    padding: 2rem;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.close-btn {
    font-size: 2.5rem;
    background: none;
    border: none;
}

.mobile-links li {
    margin-bottom: 2rem;
}

.mobile-links a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
}

/* Media Queries */
@media (max-width: 992px) {

    .header-cta,
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-grid,
    .grid-two {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p,
    .hero-btns,
    .trust-indicators {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .visual-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}