

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary: #1e40af;       /* Deep Navy Blue */
    --secondary: #0ea5e9;     /* Azure Sky */
    --accent: #f59e0b;        /* Premium Amber/Gold */
    --accent-dark: #b45309;
    --dark: #0f172a;          /* Slate Dark */
    --gray: #64748b;          /* Cool Gray */
    --light: #f8fafc;         /* Ghost White */
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --grad: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 1. Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); color: var(--white); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-danger { color: var(--danger); }

/* 2. Top Announcement Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.top-bar i {
    color: var(--accent);
    margin-right: 5px;
}

.top-links span, .top-links a {
    margin-left: 15px;
    color: #94a3b8;
    text-decoration: none;
}

.divider { color: #334155; }

/* 3. Navigation - MOBILE FIRST RIGHT ALIGNMENT */
.main-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

/* Updated for logo left / menu right */
.main-nav .container.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-toggle { display: none; }

.nav-toggle-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 0;
    z-index: 1010;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    position: relative;
    transition: 0.3s ease;
}

.nav-toggle-label span::before { content: ''; position: absolute; top: -7px; }
.nav-toggle-label span::after { content: ''; position: absolute; top: 7px; }

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Changed to slide from right */
    width: 85%;
    height: 100vh;
    background: var(--white);
    padding: 100px 5%;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    visibility: hidden;
}

.nav-links { list-style: none; }

.nav-links li { margin-bottom: 30px; }

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-block;
}

#nav-toggle:checked ~ .nav-menu { right: 0; visibility: visible;}
#nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
#nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); top: 0; }
#nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }

/* 4. Hero Section */
.hero-calc {
    padding: 40px 0;
    background: radial-gradient(circle at top left, #eff6ff 0%, #ffffff 100%);
}

.badge-row { margin-bottom: 20px; }

.pill-label {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pill-label.blue { background: #dbeafe; color: var(--primary); }
.pill-label.gold { background: #fef3c7; color: var(--accent-dark); }

h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.benefit-tag {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.benefit-tag i { color: var(--success); }

.trust-stats {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.stat-item strong {
    font-size: 1.25rem;
    color: var(--primary);
    display: block;
}

.stat-item small {
    color: var(--gray);
    font-weight: 500;
}

.stars i {
    color: #fbbf24;
    font-size: 0.7rem;
}

.stat-divider {
    width: 1px;
    background: #e2e8f0;
}

/* 5. Calculator Styling */
.calc-card {
    background: var(--white);
    padding: 30px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
}

.calc-header h3 { font-size: 1.4rem; font-weight: 800; }
.calc-header p { font-size: 0.9rem; color: var(--gray); margin-bottom: 25px; }

.calc-input { margin-bottom: 25px; }

.label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 700;
}

.label-row b { color: var(--primary); font-size: 1.1rem; }

input[type=range] {
    width: 100%;
    height: 7px;
    background: #e2e8f0;
    border-radius: 10px;
    outline: none;
    accent-color: var(--primary);
    cursor: pointer;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    margin-top: 8px;
}

.calc-summary-box {
    background: var(--light);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 10px;
}

.summary-hr {
    border: 0;
    border-top: 1px dashed #cbd5e1;
    margin: 15px 0;
}

.summary-total small {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray);
    display: block;
}

.summary-total h2 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
}

.calc-disclaimer {
    font-size: 0.7rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 15px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
}

.w-100 { width: 100%; display: block; }

/* 6. Partner Bar */
.partners-bar {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.partner-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.partners-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #cbd5e1;
    font-size: 0.9rem;
    filter: grayscale(1);
    transition: 0.3s;
}

.partner-logo:hover { filter: grayscale(0); color: var(--primary); }

/* 7. Feature Cards */
.grid-3 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.feature-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* 8. Use Cases & Custom List */
.items-center { align-items: center; }

.rounded-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.content-img { position: relative; }

.img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-weight: 800;
    font-size: 0.85rem;
}

.img-badge i { color: var(--success); font-size: 1.2rem; }

.custom-list { list-style: none; margin: 30px 0; }

.custom-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.list-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #e0f2fe;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-text b { display: block; color: var(--dark); font-size: 1rem; }
.list-text { font-size: 0.9rem; color: var(--gray); }

/* 9. Journey Steps */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.journey-card {
    background: var(--white);
    padding: 40px;
    border-radius: 28px;
    position: relative;
    border: 1px solid #f1f5f9;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--grad);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.journey-card h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.journey-card p { font-size: 0.95rem; color: var(--gray); }

.step-details {
    margin-top: 20px;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 20px;
}

/* 10. Security Section */
.security-section { padding: 100px 0; }

.icon-box-large {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.max-600 { max-width: 600px; margin: 20px auto; color: #94a3b8; }

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.badge-item {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #334155;
    border-radius: 50px;
}

/* 11. FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; padding: 5px; }

.faq-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active { border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); padding-bottom: 10px; }

.faq-head {
    padding: 20px 25px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-body {
    padding: 0px 25px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0, 1, 0, 1);
    color: var(--gray);
    font-size: 0.95rem;
}

.faq-body ul { padding: 15px 20px; }

/* 12. Contact Form */
.contact-info-list { margin-top: 35px; }

.c-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.c-item i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 5px;
}

.c-item strong { display: block; color: var(--white); font-size: 1.1rem; }
.c-item p { color: #94a3b8; font-size: 0.95rem; }

.form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 30px;
}

.form-header { margin-bottom: 25px; }
.form-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.form-header p { font-size: 0.85rem; color: var(--success); font-weight: 700; }

.input-box { margin-bottom: 18px; }
.input-box label { display: block; font-size: 0.8rem; font-weight: 800; color: var(--gray); margin-bottom: 6px; }

.input-box input, .input-box textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.input-box input:focus { border-color: var(--primary); background: #f0f9ff; }

.consent-box { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 25px; }
.consent-box input { margin-top: 4px; }
.consent-box label { font-size: 0.75rem; color: var(--gray); font-weight: 600; cursor: pointer; }

/* 13. Footer */
.footer {
    padding: 80px 0 30px;
    background: #0b0f1a;
    color: #94a3b8;
}

.footer-grid { margin-bottom: 50px; }

.footer-about { margin: 20px 0; font-size: 0.9rem; line-height: 1.8; }

.social-icons { display: flex; gap: 12px; }

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.social-icons a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-col ul a:hover { color: var(--white); padding-left: 5px; }

.n-form {
    display: flex;
    background: #1e293b;
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.n-form input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px 12px;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.n-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
}

.app-links img { cursor: pointer; transition: 0.3s; filter: brightness(0.9); }
.app-links img:hover { filter: brightness(1.2); }

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    font-size: 0.75rem;
    line-height: 1.8;
    color: #64748b;
}

.footer-bottom { padding-top: 30px; font-size: 0.8rem; font-weight: 600; }

/* 14. Responsive Breakpoints */
@media (min-width: 768px) {
    h1 { font-size: 3.2rem; }
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .input-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
}

@media (min-width: 992px) {
    h1 { font-size: 4rem; }
    .hero-calc { padding: 80px 0; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
    .journey-grid { grid-template-columns: repeat(3, 1fr); }
    
    .nav-toggle-label { display: none; }
    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        display: block;
        visibility: visible;
    }
    
    .nav-links { display: flex; align-items: center; gap: 30px; }
    .nav-links li { margin-bottom: 0; }
    .nav-links a { font-size: 0.95rem; }
}

/* 15. Animations */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}