:root {
    --bg: #0b1220;
    --card: rgba(255, 255, 255, 0.08);
    --text: #e6eef8;
    --muted: rgba(230, 238, 248, 0.65);
    --accent: #6d28d9;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: radial-gradient(circle at center top, #122040 0%, #0b1220 60%);
    color: var(--text);
}

/* ============================= */
/* GLOBAL PAGE LAYOUT */
/* ============================= */

.container {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 46px 42px;
}

.page-wrapper {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 20px;
}


.page-container {
    max-width: 980px;
    margin: 0 auto;
}

/* ============================= */
/* LANDING LAYOUT */
/* ============================= */

body.landing-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 20px 40px;
}



.landing-card {
    max-width: 920px;
    width: 100%;
    background: var(--card);
    border-radius: 22px;
    padding: 32px 28px;
    text-align: center;
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* ============================= */
/* HEADER */
/* ============================= */

.site-header {
    width: 100%;
    padding: 18px 0;
}

.nav-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header nav {
    display: flex;
    gap: 20px;
}

/*  
 .site-header nav {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
} */

.site-header a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
}

.brand {
    font-weight: 600;
    font-size: 16px;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.subtitle {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ============================= */
/* CARDS & FEATURES */
/* ============================= */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 42px;
}

.card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(109, 40, 217, 0.4);
}

.card h3 {
    margin-top: 0;
}

/* ============================= */
/* BLOG */
/* ============================= */

.blog-content {
    text-align: left;
}

.blog-content h1 {
    text-align: center;
}

.blog-content h2,
.blog-content h3 {
    text-align: left;
}


/* ============================= */
/* FAQ */
/* ============================= */

.faq {
    margin-top: 48px;
    text-align: left;
}

.faq h2 {
    text-align: center;
    margin-bottom: 24px;
}

.faq-item {
    margin-bottom: 18px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.faq-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* ============================= */
/* LOGO */
/* ============================= */

.logo {
    width: 96px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.35));
}

.logo-wrap {
    margin-bottom: 8px;
}

/* ============================= */
/* IMPROVED FOOTER */
/* ============================= */

/* ============================= */
/* FINAL PREMIUM FOOTER */
/* ============================= */

.landing-footer {
    margin-top: 80px;
    padding: 40px 20px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

footer p {
    font-size: 13px;
    color: rgba(230, 238, 248, 0.55);
    margin: 6px 0;
}

.footer-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Links container */
.landing-footer .footer-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

/* Desktop links */
.landing-footer .footer-links a {
    color: rgba(230, 238, 248, 0.85);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 10px;
    transition: 0.3s ease;
}

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


/* ============================= */
/* STICKY HEADER */
/* ============================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(11, 18, 32, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* .site-header nav {
    display: flex;
    gap: 24px;
} */

.site-header nav a {
    position: relative;
    padding: 6px 0;
    transition: 0.3s ease;
}

.site-header nav a:hover {
    color: #ffffff;
}

.site-header nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s ease;
}

.site-header nav a:hover::after {
    width: 100%;
}


/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero {
    padding: 30px 20px 40px;
    text-align: center;
}

.hero-container {
    max-width: 760px;
    margin: 0 auto;
}

.launch-badge {
    display: inline-block;
    background: rgba(109, 40, 217, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Email Form */

.hero-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-form input {
    padding: 12px 16px;
    width: 260px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.hero-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.hero-form button {
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

.hero-form button:hover {
    opacity: 0.9;
}

.success-message {
    margin-top: 14px;
    font-size: 14px;
    color: #22c55e;
    display: none;
}


/* ============================= */
/* HAMBURGER */
/* ============================= */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

.hero-highlights {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-size: 13px;
    color: var(--muted);
}

.hero-trust {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
}

.section-title {
    margin-top: 60px;
    margin-bottom: 18px;
    font-size: 24px;

}

.breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--muted);

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    margin: 0 6px;
}

.blog-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.blog-category {
    color: var(--accent);
    font-weight: 500;
}


main {
    padding-top: 20px;
}

.related-card {
    transition: 0.3s ease;
}

.related-card p {
    font-size: 14px;
    line-height: 1.6;
}



.blog-cta {
    margin: 40px 0;
    padding: 28px;
    border-radius: 16px;
    background: rgba(109, 40, 217, 0.08);
    border: 1px solid rgba(109, 40, 217, 0.25);
    text-align: center;
}

.blog-cta h3 {
    margin-bottom: 10px;
}

.blog-cta p {
    color: var(--muted);
    margin-bottom: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 18px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary:hover {
    opacity: 0.9;
}



.related-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.product-hero {
    padding-top: 60px;
    padding-bottom: 60px;
}

.btn-primary,
.btn-secondary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ===== Footer ===== */

.site-footer {
    margin-top: 80px;
    padding: 60px 20px 30px;
    background: #0a1324;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
}


.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 10px;
    padding-right: 40px;
}

.footer-brand p {
    color: #9aa4b2;
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
}



.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-column a {
    display: block;
    color: #9aa4b2;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #7c3aed;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #6b7280;
}

/* ===== Contact Page ===== */

.contact-section {
    padding: 80px       0px;
}

.contact-container {
    /* max-width: 700px;
    margin: 0 auto; */
}

table{
    width: 100%;
}

table td {
    padding: 10px;
}

td:nth-child(2) {
    color: #22c55e; /* green */
    font-weight: 500;
}

td:nth-child(3) {
    color: #ef4444; /* red */
}

.contact-header h1 {
    color: #fff;
    margin-bottom: 15px;
}

.contact-header p {
    color: #9aa4b2;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 6px;
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.contact-btn {
    background: #7c3aed;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #6d28d9;
}

.success-box {
    background: #052e16;
    color: #4ade80;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.contact-info {
    margin-top: 50px;
    color: #9aa4b2;
}

/* ===== About Page ===== */

.about-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    color: #ffffff;
    margin-bottom: 15px;
}

.about-hero p {
    color: #9aa4b2;
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.about-block {
    margin-bottom: 50px;
}

.about-block h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.about-block p {
    color: #9aa4b2;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-block ul {
    list-style: disc;
    padding-left: 20px;
    color: #9aa4b2;
    line-height: 1.8;
}

.about-cta {
    text-align: center;
    margin-top: 60px;
}

.about-cta h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.about-btn {
    display: inline-block;
    background: #7c3aed;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #6d28d9;
}

/* ===== FAQ Page ===== */

.faq-section {
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h1 {
    color: #ffffff;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-item p {
    color: #9aa4b2;
    line-height: 1.7;
}


.footer-column h4 {
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.9;
}

.footer-column a {
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-column a:hover {
    transform: translateX(4px);
}

.category-links {
    margin: 30px auto;
    text-align: center;
}

.category-links a {
    display: inline-block;
    margin: 8px 12px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.category-links a:hover {
    background: var(--accent);
    color: #fff;
}

.success-box {
    background: #e6fffa;
    color: #065f46;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
}

.error-box {
    background: #ffe6e6;
    color: #991b1b;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
}


/* ===== CONTACT PAGE UPGRADE ===== */

.contact-benefits {
    margin-bottom: 30px;
}

.contact-benefits ul {
    margin-top: 10px;
    padding-left: 18px;
    color: #9aa4b2;
    line-height: 1.8;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form.card {
    padding: 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-trust {
    margin-top: 40px;
    text-align: center;
}

.contact-links {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #9aa4b2;
}

.contact-links a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
}

.contact-links a:hover {
    text-decoration: underline;
}

/* Hover effects */
.contact-form:hover,
.contact-benefits:hover,
.contact-trust:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}

.contact-faq {
    margin-top: 50px;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-faq .faq-item {
    margin-bottom: 20px;
}



/* Add dropdown arrow */
.contact-form .form-group {
    position: relative;
}

.contact-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.required {
    color: #ef4444;
    font-weight: 600;
}

.optional {
    color: #9aa4b2;
    font-size: 12px;
}

.form-note {
    font-size: 12px;
    color: #9aa4b2;
    margin-bottom: 10px;
    text-align: center;
}


.error-text {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Fix dropdown */
.contact-form select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    appearance: none;

    height: 44px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.form-group label {
    color: #cbd5f5;
    font-weight: 500;
}

.contact-form {
    margin-top: 25px;
}

textarea {
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border: 1px solid #7c3aed;
    box-shadow: 0 0 0 2px rgba(124,58,237,0.2);
}

.contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

.input-error {
    border: 1px solid #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239,68,68,0.2);
}

.input-error {
    animation: shake 0.3s;
}



@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

    .nav-inner {
        height: 60px;
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .site-header nav {
        position: absolute;
        top: 60px;
        right: 20px;
        width: 220px;
        background: rgba(11, 18, 32, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        display: none;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .site-header nav.active {
        display: flex;
    }
}


@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 26px;
    }

    .logo {
        width: 70px;
    }

    .hero {
        padding: 30px 16px 40px;
    }

}

@media (max-width: 600px) {

    .blog-container {
        padding: 30px 16px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }
}

/* ============================= */
/* MOBILE FOOTER (Improved UX) */
/* ============================= */

@media (max-width: 600px) {

    .landing-footer {
        padding: 50px 20px 60px;
    }

    .landing-footer .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-footer .footer-links a {
        width: 100%;
        display: block;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        padding: 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
    }

    .landing-footer .footer-links a:hover {
        background: rgba(109, 40, 217, 0.15);
        color: #ffffff;
    }
}


@media (max-width: 768px) {

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    /* .footer-column { 
        max-width: 320px;
        margin: 0 auto;
    } */

    .footer-column a {
        background: rgba(255, 255, 255, 0.05);
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
}