:root {
    --primary-color: #052F5F;
    /* Refined Ethos Navy */
    --primary-hover: #083d7a;
    --ethos-mint: #26D07C;
    /* Signature Ethos Mint */
    --ethos-mint-hover: #1eb86a;
    --secondary-color: #f0fdf4;
    /* Very light mint accent */
    --accent-color: #26D07C;
    --text-color: #0f172a;
    --text-muted: #475569;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1100px;
}

/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.hero-title,
.section-title,
.process-title,
.feature-title,
.testimonial-author,
.footer-title,
.modal-title,
.modal-subtitle,
.logo-text {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

.link-reset {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.list-reset {
    list-style: none;
    padding: 0;
    margin: 0;
}

.img-responsive,
.hero-img,
.section-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.centered {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    /* Verified premium radius */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-align: center;
    text-decoration: none !important;
    /* Critical UI requirement */
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #083d7a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(5, 47, 95, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 47, 95, 0.3);
}

.btn-mint {
    background: linear-gradient(135deg, var(--ethos-mint) 0%, #1eb86a 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(38, 208, 124, 0.2);
}

.btn-mint:hover {
    background: linear-gradient(135deg, #2cf592 0%, var(--ethos-mint-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(38, 208, 124, 0.4);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.rounded-img {
    border-radius: 24px;
}

.shadow {
    box-shadow: var(--shadow-lg);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Page Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-content {
    text-align: center;
    width: 240px;
}

.loader-logo {
    margin-bottom: 25px;
    animation: pulse 2s infinite ease-in-out;
}

.loader .logo-box {
    width: 60px;
    height: 60px;
    background: var(--ethos-mint);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(38, 208, 124, 0.4);
}

.loader-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 2px;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--ethos-mint);
    animation: loadingLine 2s infinite ease-in-out;
}

.loader-text {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
}

@keyframes loadingLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Top Ad Bar */
.ad-top-bar {
    background-color: #f1f5f9;
    color: #64748b;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon .icon-shape {
    width: 18px;
    height: 18px;
    background: var(--ethos-mint);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-text {
    font-size: 1.6rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: lowercase;
}

.logo-text::after {
    content: '.';
    color: var(--ethos-mint);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a4d8c 100%);
    color: var(--white);
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin: 0 auto 25px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-img {
    border: 8px solid rgba(255, 255, 255, 0.1);
}


/* Section Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse .section-text {
    direction: ltr;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.section-desc {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--ethos-mint);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(38, 208, 124, 0.3);
}

.process-title {
    margin-bottom: 15px;
}

.process-desc {
    color: var(--text-muted);
    padding: 0 20px;
}

/* Why Us / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.testimonial-user {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-question span {
    transition: var(--transition);
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #f1f5f9;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}


/* Footer Redesign */
.footer {
    background: #031b36;
    /* Even deeper navy */
    color: var(--white);
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col-brand .footer-desc {
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-trust {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ethos-mint);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--ethos-mint);
    padding-left: 5px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.contact-value {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-disclaimer {
    max-width: 900px;
    margin-bottom: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.text-white {
    color: var(--white) !important;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-subtitle {
    margin: 25px 0 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-text {
    margin-bottom: 15px;
    line-height: 1.6;
}

.text-bold {
    font-weight: 700;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: space-between;
    border-left: 6px solid var(--primary-color);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-grid.reverse {
        display: flex;
        flex-direction: column-reverse;
        direction: ltr;
        /* Reset direction for mobile */
    }

    .features-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer {
        padding-top: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        /* Slightly smaller for better fit */
        margin: 0 auto 20px;
    }

    .hero-desc {
        font-size: 1.1rem;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .partners-inner {
        flex-direction: column;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-popup {
        padding: 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}