/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
}

*:focus,
*:focus-visible,
*:active {
    outline: none !important;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
select,
textarea {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

/* Design Tokens */
:root {
    --primary: #111827;
    --secondary: #ffffff;
    --header-height: 80px;
    --accent: #10b981;
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --brand-orange: #f97316;
    --brand-orange-dark: #ea580c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--secondary);
    padding: 0;
    height: 72px;
    /* Professional header height */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

/* Scrolled state — transparent glass */
.header.header-scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Offset body for fixed header */
body {
    padding-top: 72px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Tighter gap, padding handles spacing */
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav>ul>li>a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.nav>ul>li>a:hover {
    color: var(--accent);
    background-color: rgba(16, 185, 129, 0.05);
    /* subtle hover background */
}

/* Base Dropdown Styling */
.dropdown-menu {
    display: flex;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
    z-index: 2000;
    min-width: 240px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Multi-column layout for dropdowns */
.dropdown-menu.columns-3 {
    min-width: max-content;
}

.aif-list,
.pms-list,
.reits-list,
.invits-list,
.gift-city-list,
.curated-list,
.support-list {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.aif-list .col,
.pms-list .col,
.reits-list .col,
.invits-list .col,
.gift-city-list .col,
.curated-list .col,
.support-list .col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.dropdown-menu a {
    color: #374151;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

/* Accent bar at bottom — appears on hover */
.dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #10b981;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 6px 6px;
}

.dropdown-menu a:hover::after {
    transform: scaleX(1);
}

.dropdown-menu a .menu-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dropdown-menu a:hover {
    color: var(--accent);
}

.dropdown-menu a:hover .menu-icon {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

/* All dropdowns — unified white glassmorphism style */
.aif-dropdown .dropdown-menu,
.pms-dropdown .dropdown-menu,
.reits-dropdown .dropdown-menu,
.invits-dropdown .dropdown-menu,
.gift-city-dropdown .dropdown-menu,
.curated-dropdown .dropdown-menu,
.support-dropdown .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Keep specific long labels on one line */
.aif-dropdown .aif-list a.nowrap,
.pms-dropdown .pms-list a.nowrap,
.reits-dropdown .reits-list a.nowrap,
.invits-dropdown .invits-list a.nowrap,
.gift-city-dropdown .gift-city-list a.nowrap,
.curated-dropdown .curated-list a.nowrap,
.support-dropdown .support-list a.nowrap {
    white-space: nowrap;
}

/* Remove browser focus outlines */
.nav a:focus,
.nav a:focus-visible,
.nav button:focus,
.nav button:focus-visible {
    outline: none !important;
}

/* Sign In Styles */
.nav .signin-dropdown {
    margin-left: auto;
    /* Push sign-in to the right */
}

.sign-in-btn,
.nav>ul>li>a.sign-in-btn,
.nav>ul>li>button.sign-in-btn {
    background-color: #eff6ff;
    /* Modern Light Blue */
    color: #3b82f6;
    border: 1.5px solid #93c5fd;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none;
    text-decoration: none;
}

.sign-in-btn:hover,
.nav>ul>li>a.sign-in-btn:hover,
.nav>ul>li>button.sign-in-btn:hover {
    background-color: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.sign-in-btn:active,
.nav>ul>li>a.sign-in-btn:active,
.nav>ul>li>button.sign-in-btn:active {
    transform: translateY(0);
}

/* Prevent the Sign In dropdown from opening on hover; open only when manually triggered if JS applied */
.signin-dropdown {
    position: relative;
    z-index: 100;
}

/* Single column centered sign-in modal */
.signin-dropdown .signin-menu {
    display: none;
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 380px;
    max-width: 90vw;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 100vw rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 5000;
    margin: 0 !important;
}

/* Shown only when .open class is added by JS click event */
.signin-dropdown.open .signin-menu {
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.signin-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signin-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.signin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signin-label {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: -6px;
}

.signin-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    font-size: 14px;
    background: #f9fafb;
    transition: all 150ms ease;
}

.signin-input:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.signin-submit {
    margin-top: 4px;
    background: #059669;
    color: #fff;
    border: none;
    border-radius: 30px;
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: none;
}

.signin-submit:hover {
    transform: translateY(-2px);
    background-color: #047857;
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}

.signin-submit:active {
    transform: translateY(0);
}

.signin-google,
.signin-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 44px;
    justify-content: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px !important;
    padding: 0 24px;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.signin-google:hover,
.signin-whatsapp:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.signin-google:active,
.signin-whatsapp:active {
    transform: translateY(0);
}

.google-icon,
.whatsapp-icon {
    display: inline-flex;
}

.google-text,
.social-text {
    font-weight: 600;
    color: #111827;
}

.signin-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.signin-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: color 0.2s ease;
    border: none;
}

.signin-links a:hover {
    color: #10b981;
    text-decoration: none;
}

/* Remove the green focus outline for the small footer links inside the sign-in panel */
.signin-links a:focus,
.signin-links a:focus-visible {
    outline: none;
    box-shadow: none;
}

/* Modal close (X) button - remove green focus ring but keep accessibility for keyboard users */
.modal-close {
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.modal-close:focus,
.modal-close:focus-visible {
    outline: none;
    box-shadow: none;
}

/* Remove green focus outline for social and primary buttons inside sign-in/create flows */
.signin-google:focus,
.signin-google:focus-visible,
.signin-submit:focus,
.signin-submit:focus-visible,
.signin-google:active,
.signin-submit:active {
    outline: none;
    box-shadow: none;
}

/* ===== Hero Slider Section ===== */
.hero-slider-section {
    background-color: #f5f0e6;
    padding: 16px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.65s ease;
}

/* Per-slide section background */
.hero-slider-section[data-active-slide="0"] {
    background-color: #f5f0e6;
}

.hero-slider-section[data-active-slide="1"] {
    background-color: #fbe8d4;
}

.hero-slider-section[data-active-slide="2"] {
    background-color: #eef1f5;
}

.hero-slider-section[data-active-slide="3"] {
    background-color: #e8edf8;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    border-radius: 18px;
    padding: 0 50px;
}

/* Slide track – natural height from the active slide, no fixed px needed */
.slider-track {
    position: relative;
    width: 100%;
}

/* Inactive slides are completely hidden */
.slider-slide {
    display: none;
}

/* Active slide — display:block causes browser to re-enter render tree,
   so the animations below fire fresh automatically on every slide change */
.slider-slide.active {
    display: block;
}

/* Entrance animations — fire automatically each time .active is added */
.slider-slide.active .slide-content {
    animation: slideContentIn 0.55s ease both;
}

.slider-slide.active .slide-illustration img {
    animation: slideIllustrationIn 0.65s 0.1s ease both;
}

@keyframes slideContentIn {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideIllustrationIn {
    from { opacity: 0; transform: translateX(28px) scale(0.96); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Slide Card (base styles) */
.slide-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    padding: 24px 36px;
    height: 310px;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial overlay */
.slide-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* ===== Per-Slide Theme Colors ===== */

/* Slide 1 – Warm cream / olive green (matches house, people, green base) */
.slider-slide[data-slide="0"] .slide-card {
    background: linear-gradient(135deg, #f5efe4 0%, #eee6d0 40%, #e8dfc6 100%);
    box-shadow: 0 8px 32px rgba(200, 180, 130, 0.18);
}

.slider-slide[data-slide="0"] .slide-title {
    color: #2c3319;
}

.slider-slide[data-slide="0"] .slide-title strong {
    color: #1a2008;
}

.slider-slide[data-slide="0"] .badge-icon {
    background: rgba(107, 142, 35, 0.15);
    color: #556b2f;
}

.slider-slide[data-slide="0"] .badge-text {
    color: #4a4228;
}

.slider-slide[data-slide="0"] .badge-text strong {
    color: #2c2810;
}

/* Slide 2 – Vibrant peach / orange / teal (matches colorful laptop background) */
.slider-slide[data-slide="1"] .slide-card {
    background: linear-gradient(135deg, #fdd8a5 0%, #f7c078 30%, #f0a54e 60%, #7eccc5 100%);
    box-shadow: 0 8px 32px rgba(247, 192, 120, 0.22);
}

.slider-slide[data-slide="1"] .slide-title {
    color: #3a2200;
}

.slider-slide[data-slide="1"] .slide-title strong {
    color: #221400;
}

.slider-slide[data-slide="1"] .badge-icon {
    background: rgba(255, 255, 255, 0.35);
    color: #7a4500;
}

.slider-slide[data-slide="1"] .badge-text {
    color: #4a2e00;
}

.slider-slide[data-slide="1"] .badge-text strong {
    color: #2c1a00;
}

/* Slide 3 – Soft lavender / blue-gray (matches buildings, cool tones) */
.slider-slide[data-slide="2"] .slide-card {
    background: linear-gradient(135deg, #f0eef5 0%, #e4e1f0 40%, #dbd8ec 100%);
    box-shadow: 0 8px 32px rgba(180, 175, 210, 0.18);
}

.slider-slide[data-slide="2"] .slide-title {
    color: #1e1a3a;
}

.slider-slide[data-slide="2"] .slide-title strong {
    color: #0f0c28;
}

.slider-slide[data-slide="2"] .badge-icon {
    background: rgba(100, 120, 200, 0.15);
    color: #4a5090;
}

.slider-slide[data-slide="2"] .badge-text {
    color: #3a3660;
}

.slider-slide[data-slide="2"] .badge-text strong {
    color: #1e1a40;
}

/* Slide 4 – Sky blue / soft lavender (matches teal phone, blue shield) */
.slider-slide[data-slide="3"] .slide-card {
    background: linear-gradient(135deg, #e6ecf8 0%, #d5dff3 40%, #c8d5ef 100%);
    box-shadow: 0 8px 32px rgba(160, 180, 220, 0.18);
}

.slider-slide[data-slide="3"] .slide-title {
    color: #152040;
}

.slider-slide[data-slide="3"] .slide-title strong {
    color: #0a1228;
}

.slider-slide[data-slide="3"] .badge-icon {
    background: rgba(60, 150, 180, 0.15);
    color: #2a7090;
}

.slider-slide[data-slide="3"] .badge-text {
    color: #203050;
}

.slider-slide[data-slide="3"] .badge-text strong {
    color: #0f1a30;
}

/* Slide Content (left side) */
.slide-content {
    flex: 1;
    max-width: 380px;
    z-index: 2;
    position: relative;
}

.slide-title {
    font-size: 34px;
    font-weight: 400;
    color: #1a2332;
    line-height: 1.28;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.slide-title strong {
    font-weight: 800;
    color: #0f1c2e;
}

/* Badge (icon + text row) */
.slide-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6b3a00;
    flex-shrink: 0;
}

.badge-text {
    font-size: 13px;
    line-height: 1.5;
    color: #3d2600;
    font-weight: 400;
}

.badge-text strong {
    font-weight: 700;
    color: #1a1200;
}

/* CTA button */
.slide-cta {
    background-color: #f8fafc;
    color: #1a2740;
    border: 1.5px solid #94a3b8;
    padding: 13px 36px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: none;
}

.slide-cta:hover {
    background-color: #1a2740;
    color: #ffffff;
    border-color: #1a2740;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 39, 64, 0.3);
}

.slide-cta:active {
    transform: translateY(0);
}

.slide-actions {
    display: flex;
    gap: 12px;
}

/* Slide Illustration (right side) */
.slide-illustration {
    flex: 0 0 auto;
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.slide-illustration img {
    width: 100%;
    height: auto;
    max-height: 270px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.10));
    border-radius: 0;
}

/* Navigation Arrows — positioned in padding area */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.slider-arrow:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.slider-prev {
    left: -54px;
}

.slider-next {
    right: -54px;
}

/* ===== Responsive Hero Slider ===== */
@media (max-width: 1024px) {
    .slide-card {
        padding: 24px 28px;
        min-height: 200px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-illustration {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        padding: 16px 12px 12px;
    }

    .slide-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        min-height: auto;
        gap: 24px;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-badge {
        justify-content: center;
    }

    .slide-actions {
        justify-content: center;
    }

    .slide-illustration {
        width: 100%;
        max-width: 260px;
    }

    .slider-arrow {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .slider-prev {
        left: 6px;
    }

    .slider-next {
        right: 6px;
    }
}

/* Categories Section — overlaps hero so top icons peek on load */
/* Categories Section — overlaps hero so top icons peek on load */
/* Categories Section — overlaps hero so top icons peek on load */
.categories-section {
    padding: 20px 0 70px;
    margin-top: 0;
    position: relative;
    z-index: 5;
    background-color: #ffffff;
    border-radius: 24px 24px 0 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.category-card {
    background: #ffffff;
    border: 1.5px solid #d0d7de;
    border-radius: 14px;
    padding: 18px 10px 14px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Accent bar at bottom — appears on hover */
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 14px 14px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.10);
    border-color: #a0aec0;
}

.category-card:hover::after {
    transform: scaleX(1);
}

/* Icon container — no background box, icon only */
.category-icon-wrap {
    width: 100px;
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.category-card:hover .category-icon-wrap {
    background: transparent;
}

.category-img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.45;
    margin: 0;
}

.view-all-container {
    text-align: center;
}



/* ===== Also Invest In – Shortcut Tiles ===== */
.also-invest-section {
    padding: 40px 0 40px;
    background: #ffffff;
}

.also-invest-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
}

.shortcut-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.shortcut-tile {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #d1d5db;
    transition: all 0.3s ease;
    flex: 0 1 auto;
}

.shortcut-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* Color variants */
.tile-default {
    color: #4b5563;
    border-color: #d1d5db;
    background-color: #ffffff;
}

.tile-default:hover {
    background-color: #4b5563;
    color: #ffffff;
    border-color: #4b5563;
}

.tile-green {
    color: #0d9488;
    border-color: #99f6e4;
    background-color: #f0fdfa;
}

.tile-green:hover {
    background-color: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
}

.tile-orange {
    color: #ea580c;
    border-color: #fed7aa;
    background-color: #fff7ed;
}

.tile-orange:hover {
    background-color: #ea580c;
    color: #ffffff;
    border-color: #ea580c;
}

/* ===== Promotional Banners ===== */
.promo-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card base – horizontal layout: text left, image right */
.promo-card {
    border-radius: 14px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 200px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Text block */
.promo-text {
    flex: 1;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.promo-text h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 18px;
    color: inherit;
}

.promo-text h3 em {
    font-style: italic;
    font-weight: 700;
}

/* CTA button */
.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    line-height: 20px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.promo-btn:hover {
    background-color: #ffffff;
    color: #059669;
    border-color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Image block */
.promo-img-wrap {
    flex: 0 0 45%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.promo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ---- Per-card color themes ---- */

/* Green card */
.promo-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
}

/* Orange / warm card */
.promo-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

/* Gray / neutral card */
.promo-gray {
    background: linear-gradient(135deg, #d1d5db 0%, #c0c5cc 100%);
    color: #1f2937;
}

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

    .promo-card {
        min-height: 180px;
    }

    .shortcut-tiles {
        gap: 8px;
    }

    .shortcut-tile {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ===== Why Choose AltWealth Section ===== */
.why-choose-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* --- Left side: heading only --- */
.why-choose-left {
    flex: 0 0 260px;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 400;
    color: #374151;
    line-height: 1.3;
}

.why-choose-title strong {
    font-weight: 800;
    color: #111827;
}

/* --- Right side: cards grid --- */
.why-choose-right {
    flex: 1;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.why-choose-right {
    flex: 1;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 190px);
    gap: 32px;
    justify-content: end;
    align-items: start;
    padding-right: 40px;
}

.why-cards-row {
    /* make the row containers transparent to the grid so each .why-card becomes a grid item */
    display: contents;
}

.why-cards-row:last-child {
    margin-bottom: 0;
}

.why-cards-row-offset {
    /* no offset required with grid layout */
    padding-right: 0;
}

/* Individual card — ultra modern shape with float */
.why-card {
    width: 190px;
    height: 165px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    border: 2.5px solid rgba(53, 53, 53, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 190px;
    top: 0;
}

.why-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

/* Animated Modern Bottom Outline */
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(1);
    transition: none;
    border-radius: 0 0 18px 18px;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card-green::after {
    background: #16a34a;
}

.why-card-navy::after {
    background: #3b82f6;
}

.why-card-orange::after {
    background: #ea580c;
}

.why-card-teal::after {
    background: #0d9488;
}

.why-card-red::after {
    background: #dc2626;
}

.why-card-blue::after {
    background: #e4d500d8;
}

/* Floating animation keyframes */
@keyframes float-anim {
    0% {
        top: 0px;
    }

    50% {
        top: 0px;
    }

    100% {
        top: 0px;
    }
}

/* Staggered positioning and varied float timings */
.why-card-green,
.why-card-navy,
.why-card-orange,
.why-card-teal,
.why-card-red,
.why-card-blue {
    margin-top: 0;
}

/* Icon area */
.why-card-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1);
}

.why-card-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.why-card p {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.45;
    margin: 0;
    transition: color 0.3s ease;
}

.why-card:hover p {
    color: #111827;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-layout {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-left {
        flex: none;
    }

    .why-cards-row {
        justify-content: center;
    }

    .why-cards-row-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .why-cards-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-card {
        width: 150px;
        height: 150px;
        flex: 0 0 150px;
    }

    .why-choose-title {
        font-size: 28px;
    }
}

/* ===== Global Section Title ===== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
    margin-bottom: 48px;
}

/* ===== Featured Videos Section ===== */
.videos-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.videos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.videos-header .section-title {
    margin-bottom: 0;
}

.videos-view-all {
    font-size: 14px;
    font-weight: 600;
    color: #15803d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.videos-view-all:hover {
    color: #166534;
}

/* 3-column grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

/* Responsive 16:9 thumbnail container */
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* Static thumbnail image (new approach — no JS needed) */
.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

/* Anchor wrapper — removes underline/border */
.video-thumb-link {
    display: block;
    text-decoration: none;
    border: none;
    outline: none;
}

.video-thumb-link:hover .video-thumb-img {
    transform: scale(1.04);
}

/* Legacy iframe fallback (kept for other pages) */
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom Play Button Overlay */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: opacity 0.3s;
}

.video-placeholder:hover img {
    opacity: 1;
}

/* Shown when thumbnail fails to load */
.video-thumb-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    pointer-events: none;
}

.play-btn {
    position: absolute;
    width: 68px;
    height: 48px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.video-placeholder:hover .play-btn {
    background-color: #ff0000;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Footer: title + YouTube icon */
.video-card-footer {
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.video-card-footer h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.45;
    flex: 1;
}

.yt-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.15s ease, transform 0.15s ease;
    margin-top: 2px;
}

.yt-link:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 900px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .videos-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Calculators Section */
.calculators-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-description {
    text-align: left;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
}

.calculators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.calculator-category {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 32px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calculator-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.calc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bg-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.bg-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.bg-purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.calculator-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.calculator-category ul {
    list-style: none;
}

.calculator-category li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.calculator-category li:last-child {
    border-bottom: none;
}

.calculator-category li a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator-category li a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    color: #10b981;
}

.calculator-category li a:hover {
    color: #10b981;
    padding-left: 4px;
}

.calculator-category li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile App Section */
.mobile-app-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.app-content.modern-app-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.app-info {
    flex: 1;
    max-width: 450px;
}

.app-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #ecfdf5;
    color: #10b981;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 1px solid #a7f3d0;
}

.app-info h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.app-info p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.app-downloads {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    background-color: #111827;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: #1f2937;
    color: white;
}

.store-btn i {
    font-size: 32px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-small {
    font-size: 11px;
    line-height: 1;
    margin-bottom: 3px;
    opacity: 0.8;
}

.store-large {
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.5px;
}

.app-screens {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.testimonial-card {
    text-align: left;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 24px;
    position: relative;
}

.quote-watermark {
    font-size: 32px;
    color: #f3f4f6;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 1;
}

.author-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    white-space: nowrap;
}

.author-info span {
    font-size: 13px;
    color: #9ca3af;
    white-space: nowrap;
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 14px;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 10px;
    animation: marquee 35s linear infinite;
}

.marquee-content.speed-fast {
    animation-duration: 28s;
}

.marquee-content.speed-medium {
    animation-duration: 35s;
}

.marquee-content.speed-slow {
    animation-duration: 48s;
}

.marquee-content.reverse {
    animation-direction: reverse;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 5px)); }
}

/* Card wrapper for each real logo */
.partner-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1.5px solid #e8ecf0;
    border-radius: 12px;
    padding: 8px 16px;
    width: 150px;
    height: 60px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.partner-logo-card:hover {
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.partner-logo-img {
    height: 34px;
    width: 100%;
    max-width: 118px;
    object-fit: contain;
    object-position: center;
    filter: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.partner-logo-card:hover .partner-logo-img {
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-content.modern-faq-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.faq-header-inline {
    margin-bottom: 40px;
}

.faq-header-inline h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.faq-header-inline .text-highlight {
    color: #10b981;
}

.faq-header-inline p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-side-banner {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.faq-side-banner .banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.faq-side-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-side-banner p {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 32px;
    line-height: 1.6;
}

.faq-side-banner .cta-button {
    width: 100%;
}

.modern-faq .faq-item {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle hover — just lift the border, no background change */
.modern-faq .faq-item:hover {
    border-color: #10b981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

/* Active: full green background */
.modern-faq .faq-item.active {
    background-color: #059669;
    border-color: #059669;
    border-left: 4px solid #047857;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}

.modern-faq .faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.modern-faq .faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    padding-right: 20px;
    margin: 0;
    transition: color 0.25s ease;
}

/* Question text turns white when item is active */
.modern-faq .faq-item.active .faq-question h3 {
    color: #ffffff;
}

.plus-minus-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.plus-minus-icon::before,
.plus-minus-icon::after {
    content: '';
    position: absolute;
    background-color: #9ca3af;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Horizontal bar */
.plus-minus-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

/* Vertical bar */
.plus-minus-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

/* Rotate vertical bar to form minus when active */
.faq-item.active .plus-minus-icon::after {
    transform: rotate(90deg);
}

.faq-item.active .plus-minus-icon::before,
.faq-item.active .plus-minus-icon::after {
    background-color: #ffffff;
}

.modern-faq .faq-answer {
    padding: 0 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.modern-faq .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 20px 18px;
}

.modern-faq .faq-answer p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* White text when answer is inside active green card */
.modern-faq .faq-item.active .faq-answer p {
    color: #ffffff;
}

.modern-faq .faq-item:hover .faq-answer p {
    color: #f0fdf4;
}

/* Modern Footer */
.modern-footer {
    background-color: #111827;
    color: #f3f4f6;
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    transform: translateX(-4px);
    /* Minor adjustment to align visual weight of logo text with contact icons below */
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
    font-size: 15px;
}

a.contact-item:hover {
    color: #10b981;
}

.contact-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials .social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #1f2937;
    color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-socials .social-link:hover {
    background-color: #10b981;
    color: white;
    transform: translateY(-2px);
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-column a:hover {
    color: #10b981;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid #374151;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-legal {
    text-align: justify;
    width: 100%;
}

.footer-legal p {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header .container {
        gap: 0.5rem;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--secondary);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        padding: 0.75rem;
        gap: 0;
    }

    .nav li {
        width: 100%;
    }

    .nav a {
        display: block;
        width: 100%;
        padding: 0.75rem 0.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0.25rem 0.5rem 0.75rem;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .navigation {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .calculators-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .footer-legal {
        text-align: justify;
    }
}

/* Utility Classes */
.cta-button {
    background-color: #ecfdf5;
    color: #059669;
    border: 1.5px solid #6ee7b7;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 20px;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-button:hover {
    background-color: #059669;
    color: #ffffff;
    border-color: #059669;
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25);
    transform: translateY(-2px);
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 6000;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.modal-form {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
}

.modal-close:hover {
    color: #111827;
}

/* Animation for FAQ toggle */
.faq-toggle {
    transition: transform 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Modern Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #059669;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Focus states for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* Screen reader only utility class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .faq-content.modern-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-side-banner {
        position: static;
        top: 0;
    }
}

/* ========== AW Modal Styles for Center Overlay ========== */
.aw-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.aw-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.aw-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.aw-modal-card {
    position: relative;
    z-index: 10000;
    display: flex;
    width: 860px;
    max-width: 92%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-modal.is-open .aw-modal-card {
    transform: scale(1) translateY(0);
}

.aw-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    color: #6b7280;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
    border-radius: 50%;
}

.aw-modal-close:hover {
    color: #111827;
    background: #f3f4f6;
}

.aw-modal-brand {
    width: 44%;
    background: #0D1B2A;
    padding: 48px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.aw-modal-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201, 168, 76, .18) 0%, transparent 70%);
    pointer-events: none;
}

.aw-modal-logo {
    height: 36px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

.aw-modal-brand-line {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 32px;
    color: #fff;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.aw-modal-brand-line em {
    color: #C9A84C;
    font-style: normal;
}

.aw-modal-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.aw-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aw-stat-n {
    font-size: 1.3rem;
    font-weight: 700;
    color: #C9A84C;
}

.aw-stat-l {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aw-modal-form-side {
    flex: 1;
    padding: 48px 48px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.aw-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.aw-modal-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 24px;
}

.aw-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.aw-alert.success {
    display: block;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.aw-alert.error {
    display: block;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.aw-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aw-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.aw-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4A6080;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.aw-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.aw-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
}

.aw-input {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 1.5px solid #d8e4ef;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.92rem;
    color: #111827;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    box-shadow: 0 2px 8px rgba(13, 27, 42, 0.06);
}

.aw-input:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.aw-has-toggle {
    padding-right: 42px;
}

.aw-eye-toggle {
    position: absolute;
    right: 12px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 24px;
    font-size: 1rem;
}

.aw-eye-toggle:hover {
    color: #4b5563;
}

.aw-field.has-error .aw-input {
    border-color: #ef4444;
}

.aw-field-error {
    color: #ef4444;
    font-size: 0.8rem;
}

.aw-form-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-top: 4px;
}

.aw-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #4b5563;
}

.aw-remember input {
    width: 16px;
    height: 16px;
    accent-color: #0D1B2A;
    cursor: pointer;
}

.aw-link {
    color: #0D1B2A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.aw-link:hover {
    color: #A07830;
    text-decoration: none;
}

.aw-link-bold {
    font-weight: 600;
}

.aw-btn-primary {
    margin-top: 12px;
    background: linear-gradient(135deg, #c9a84c 0%, #e2c47a 100%);
    color: #0D1B2A;
    border: none;
    width: 100%;
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: .01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: box-shadow 0.22s, transform 0.22s, opacity 0.22s;
    box-shadow: 0 4px 16px rgba(201, 168, 76, .35);
}

.aw-btn-primary:hover {
    opacity: 0.92;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
    transform: translateY(-1px);
}

.aw-btn-primary:active {
    transform: translateY(0);
}

.aw-btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(13, 27, 42, 0.2);
    border-top-color: #0D1B2A;
    border-radius: 50%;
    animation: awSpin 0.8s linear infinite;
}

.aw-btn-primary.loading .aw-btn-spinner {
    display: inline-block;
}

.aw-btn-primary.loading .aw-btn-label {
    display: none;
}

@keyframes awSpin {
    to {
        transform: rotate(360deg);
    }
}

.aw-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    color: #9ca3af;
    font-size: 0.85rem;
}

.aw-divider::before,
.aw-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #e5e7eb;
}

.aw-social-row {
    display: flex;
    gap: 16px;
}

.aw-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.aw-social-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.aw-social-wa {
    color: #128C7E;
}

.aw-modal-footer-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: #6b7280;
}

.aw-full-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.85rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.aw-full-page-link:hover {
    color: #111827;
}

@media (max-width: 768px) {
    .aw-modal-card {
        flex-direction: column;
        width: 440px;
    }

    .aw-modal-brand {
        display: none;
    }

    .aw-modal-form-side {
        padding: 40px 32px;
    }
}

@media (max-width: 480px) {
    .aw-modal-form-side {
        padding: 32px 24px;
    }

    .aw-social-row {
        flex-direction: column;
    }
}

/* End of styles.css */