/* Expenses Page Specific Styles */
:root {
    --exp-primary: #341577;
    --exp-primary-dark: #240a5a;
    --exp-primary-light: #4e26a4;
    --exp-primary-gradient: linear-gradient(289.82deg,
            var(--exp-primary-light) -37.16%,
            var(--exp-primary) 41.79%,
            var(--exp-primary-dark) 117.64%);

    --exp-primary-gradient-hover: linear-gradient(289.82deg,
            var(--exp-primary) -37.16%,
            var(--exp-primary-dark) 41.79%,
            #7a1401 117.64%);

    --exp-top-bar-bg: #4E26A4;
    --exp-hero-bg: #E9DDFF;

    --exp-box-bg: #b23a25;
    --exp-box-border: #8b2515;
    --exp-divider: #821303;
}

/* Top Bar Overrides */
.exp-top-bar {
    background: var(--exp-top-bar-bg) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-top-bar .contact-info span {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-right: 30px;
}

.exp-top-bar .contact-info .contact-phone {
    color: white !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.exp-top-bar .contact-info .contact-email {
    color: white !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

.exp-top-bar .social-icons a {
    color: #fff;
    font-size: 14px;
    margin-left: 15px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.exp-top-bar .social-icons a:hover {
    opacity: 1;
}

/* Expenses Header */
html body header.exp-header {
    background: #f9f4f0 !important;
    background-image: none !important;
    background-color: #f9f4f0 !important;
    box-shadow: 0px 0px 25px 0px #0000000f !important;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.exp-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.exp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.exp-icon {
    width: 40px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brand-name {
    font-family: "Rethink Sans" !important;
    font-weight: 400 !important;
    font-size: 13.07px !important;
    line-height: 10px !important;
    color: #6b7280 !important;
}

.exp-product-name {
    font-family: "Rethink Sans" !important;
    font-weight: 700 !important;
    font-size: 26.13px !important;
    color: var(--exp-primary) !important;
}

/* Navbar */
.exp-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.exp-nav ul li a {
    text-decoration: none;
    color: #000000 !important;
    font-family: "Rethink Sans" !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 15px !important;
    padding-bottom: 15px;
    position: relative;
    transition: color 0.3s;
}

.exp-nav ul li a:hover,
.exp-nav ul li a.active {
    color: var(--exp-primary) !important;
}

/* Active Indicator */
.exp-nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: 2px solid var(--exp-primary);
    background-color: transparent;
}

/* ========================================
   EXPENSES TABS SECTION
   ======================================== */
.exp-tabs-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.tabs-header-wrapper {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
    position: sticky;
    top: 65px; /* Adjust based on header height */
    z-index: 900;
}

.tabs-header-inner {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-header-inner::-webkit-scrollbar {
    display: none;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 40px;
    min-width: max-content;
    padding: 0 20px;
}

.tab-item {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    color: #6b7280;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.tab-item:hover {
    color: var(--exp-primary);
}

.tab-item.active {
    color: var(--exp-primary);
    font-weight: 700;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: var(--exp-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content {
    display: none;
    animation: tabFadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header Shared Styles within Tabs */
.ee-section-header, .ri-section-header, .for-section-header, .cm-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.ee-section-header h2, .ri-section-header h2, .for-section-header h2, .cm-section-header h2 {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 40px;
    color: #1f2937;
    margin-bottom: 15px;
}

.ee-section-header p, .ri-section-header p, .for-section-header p, .cm-section-header p {
    font-family: "DM Sans";
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
}

.ee-badge, .ri-badge, .cm-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #f3f4f6;
    border-radius: 50px;
    color: var(--exp-primary);
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}


/* Login Button */
.btn-exp-login {
    background: var(--exp-primary-gradient);
    color: white;
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    transition:
        background 0.3s,
        transform 0.2s;
    display: inline-block;
}

.btn-exp-login:hover {
    background: var(--exp-primary-gradient-hover);
    transform: translateY(-1px);
}

/* Expenses Hero Section */
.exp-hero-section {
    position: relative;
    padding: 10px 0 20px;
    background: var(--exp-hero-bg);
    overflow: hidden;
    color: #0f172a;
    text-align: center;
}

/* Background Animation Container */
.hero-bg-animation {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.hero-row {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: flex;
    background: #00000045;
}

.hero-row-1 {
    height: 120px;
}

.hero-row-2 {
    height: 250px;
}

/* Marquee Tracks */
.marquee-track-1,
.marquee-track-2 {
    display: flex;
    gap: 5px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

.marquee-track-2 {
    animation-direction: reverse;
}

.hero-row img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.3;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(11, 85, 70, 0.8) 0%,
            rgba(11, 85, 70, 0.95) 100%);
    z-index: 2;
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 50px;
    display: block !important;
}

.exp-hero-section h1 {
    font-family: "Rethink Sans";
    font-weight: 800;
    font-size: 53.1px;
    line-height: 58px;
    margin-bottom: 10px;
    letter-spacing: 0%;
    text-align: center;
    color: #0f172a;
}

.hero-subhead {
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 15px;
    color: #4b5563;
    /* dark gray for subhead */
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    background: var(--exp-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.hero-feature-item img {
    width: 20px;
    height: 20px;
    /* Make checkmark white for visibility on red gradient */
    filter: brightness(0) invert(1);
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-exp-white {
    background: var(--exp-primary-gradient);
    color: white;
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    cursor: pointer;
}

.btn-exp-white:hover {
    background: var(--exp-primary-gradient-hover);
}

.btn-exp-outline {
    position: relative;
    background-image: var(--exp-hero-bg);
    background-clip: text;
    color: var(--exp-primary-gradient);
    border: 1px solid transparent;
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.btn-exp-outline::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    /* Border thickness */
    background: var(--exp-primary-gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-exp-outline:hover {
    -webkit-text-fill-color: white;
    color: white;
}

.btn-exp-outline:hover::after {
    background: var(--exp-primary-gradient-hover);
    -webkit-mask: none;
    mask: none;
    padding: 0;
}

/* Dashboard Preview */
#hero-dashboard-image {
    /* Force to match laundry's auto height */
    margin: 0 auto !important;
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
    object-fit: cover !important;
    object-position: top center !important;
}

.dashboard-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.why-choose-exp {
    padding: 30px 20px;
    background-color: #ffffff;
}

.why-choose-exp .section-heading {
    font-family: "Rethink Sans";
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.why-choose-exp .section-subhead {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    max-width: 950px;
    margin: 0 auto 20px;
}

.comparison-container {
    max-width: 1300px;
    margin: 0 auto;
    background-color: var(--exp-box-bg);
    /* Red background */
    border: 6px solid var(--exp-box-border);
    /* Darker red border */
    border-radius: 24px;
    padding: 15px 0;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
}

.comparison-col {
    flex: 1;
    min-width: 300px;
    padding: 20px 40px;
}

.problems-col {
    border-right: 1px solid var(--exp-divider);
}

.comparison-col h3 {
    font-family: "Rethink Sans";
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* added padding to give space before the line */
    border-bottom: 1px solid var(--exp-divider);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    font-family: "DM Sans";
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.problems-list li i {
    color: #fc5c5c;
    font-size: 16px;
    margin-top: 3px;
}

.solutions-list li i {
    color: #4ade80;
    font-size: 16px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .why-choose-exp .section-heading {
        font-size: 32px;
    }

    .problems-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .comparison-col {
        padding: 30px 20px;
    }
}

/* ========================================
   WHO THIS SERVICE IS BEST SUITED FOR SECTION
   ======================================== */

.suited-for-section {
    background-color: #ffffff;
    padding: 10px 10px;
    overflow-x: hidden;
}

/* --- 1. The Proportional Scaling Engine --- */
.scale-wrapper {
    container-type: inline-size;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.semi-circle-stage {
    position: relative;
    width: 100cqi;
    height: 52cqi;
}

/* --- 2. Geometry Backgrounds (Scaled in cqi) --- */
.glow-dome {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    transform: translateX(-50%);
    width: 80cqi;
    height: 40cqi;
    background: radial-gradient(70.74% 74.61% at 50.05% 100%,
            #ffffff 0%,
            var(--exp-hero-bg) 100%);
    border-radius: 80cqi 80cqi 0 0;
    z-index: 1;
    pointer-events: none;
}

.arc-ring {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    transform: translateX(-50%);
    border: max(1px, 0.1cqi) solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    z-index: 2;
    pointer-events: none;
}

/* The 4 perfectly spaced concentric rings */
.r1 {
    width: 36.66cqi;
    height: 18.33cqi;
    border-radius: 36.66cqi 36.66cqi 0 0;
    border-color: rgba(0, 0, 0, 0.04);
}

.r2 {
    width: 58.33cqi;
    height: 29.16cqi;
    border-radius: 58.33cqi 58.33cqi 0 0;
    border-color: rgba(0, 0, 0, 0.04);
}

.r3 {
    width: 80cqi;
    height: 40cqi;
    border-radius: 80cqi 80cqi 0 0;
}

.r4 {
    width: 95cqi;
    height: 45.5cqi;
    border-radius: 95cqi 95cqi 0 0;
}

.arc-line {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    width: 1px;
    height: 46cqi;
    /* Split color exactly at the dome's edge (40cqi / 46cqi = ~86.9%) */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.04) 86.9%,
            rgba(0, 0, 0, 0.1) 86.9%,
            rgba(0, 0, 0, 0.1) 100%);
    transform-origin: bottom center;
    z-index: 2;
    pointer-events: none;
}

/* --- 3. Exact Typography (Center Text) --- */
.center-text {
    position: absolute;
    bottom: 3.33cqi;
    left: 50%;
    transform: translateX(-50%);
    width: 50cqi;
    text-align: center;
    z-index: 10;
}

.center-text h2 {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 3.5cqi;
    line-height: 4.33cqi;
    letter-spacing: 0%;
    color: #1f2937;
    margin-bottom: 1cqi;
}

.center-text p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 1.66cqi;
    line-height: 2.83cqi;
    letter-spacing: 0%;
    color: #6b7280;
    padding-bottom: 3cqi;
}

/* --- 4. Exact Typography (Floating Badges) --- */
.badge {
    position: absolute;
    transform: translate(-50%, 50%);
    background: #ffffff;
    border: max(1px, 0.12cqi) solid #d6442d;
    padding: 0.66cqi 1cqi;
    width: 20cqi;
    justify-content: flex-start;
    border-radius: 5cqi;
    display: flex;
    align-items: center;
    gap: 0.83cqi;
    box-shadow: 0 0.33cqi 1.25cqi rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 20;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: default;
    font-family: "Inter";
    font-weight: 600;
    font-size: 1.23cqi;
    line-height: 1.78cqi;
    letter-spacing: 0%;
    color: #374151;
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -0.5cqi;
    }
}

.badge:hover {
    box-shadow: 0 0.5cqi 1.66cqi rgba(214, 68, 45, 0.12);
    transform: translate(-50%, 50%) translateY(-0.25cqi);
}

.icon {
    width: 1.5cqi;
    height: 1.5cqi;
    min-width: 1.5cqi;
    flex-shrink: 0;
    background: #d6442d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.83cqi;
    font-weight: bold;
}

.icon img {
    width: 55%;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* Left Side Badges */
.b-left-1 {
    bottom: 41cqi;
    left: 28cqi;
    animation-delay: 0s;
}

.b-left-2 {
    bottom: 36cqi;
    left: 22cqi;
    animation-delay: 0.2s;
}

.b-left-3 {
    bottom: 31cqi;
    left: 18cqi;
    animation-delay: 0.4s;
}

.b-left-4 {
    bottom: 26cqi;
    left: 16cqi;
    animation-delay: 0.6s;
}

.b-left-5 {
    bottom: 21cqi;
    left: 13cqi;
    animation-delay: 0.8s;
}

.b-left-6 {
    bottom: 16cqi;
    left: 11cqi;
    animation-delay: 1s;
}

.b-left-7 {
    bottom: 11cqi;
    left: 9cqi;
    animation-delay: 1.2s;
}

.b-left-8 {
    bottom: 6cqi;
    left: 7cqi;
    animation-delay: 1.4s;
}

/* Right Side Badges */
.b-right-1 {
    bottom: 41cqi;
    left: 72cqi;
    animation-delay: 0.1s;
}

.b-right-2 {
    bottom: 36cqi;
    left: 78cqi;
    animation-delay: 0.3s;
}

.b-right-3 {
    bottom: 31cqi;
    left: 82cqi;
    animation-delay: 0.5s;
}

.b-right-4 {
    bottom: 26cqi;
    left: 84cqi;
    animation-delay: 0.7s;
}

.b-right-5 {
    bottom: 21cqi;
    left: 87cqi;
    animation-delay: 0.9s;
}

.b-right-6 {
    bottom: 16cqi;
    left: 89cqi;
    animation-delay: 1.1s;
}

.b-right-7 {
    bottom: 11cqi;
    left: 91cqi;
    animation-delay: 1.3s;
}

.b-right-8 {
    bottom: 6cqi;
    left: 93cqi;
    animation-delay: 1.5s;
}

/* ========================================
   WHY IT'S USEFUL SECTION
   ======================================== */
.exp-useful-section {
    background-color: #ffffff;
    padding-bottom: 80px;
}

.exp-useful-section .section-heading {
    font-family: "Rethink Sans";
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.exp-useful-section .section-subhead {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 40px;
}

.useful-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.useful-card {
    background-color: #EDE4FF;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.useful-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 21, 119, 0.1);
}

.useful-card .accotick-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* Keep it circular */
    object-fit: contain;
}

.useful-card span {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
}

@media (max-width: 768px) {
    .useful-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}


/* ========================================
   EXPENSE ENTRY SECTION
   ======================================== */
/* ----------------------------------
       Header Styles
       ---------------------------------- */
.ee-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ee-badge {
    display: block;
    color: #5e35b1;
    /* Purple accent */
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ee-section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    /* Dark slate */
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.ee-section-header p {
    font-size: 16px;
    color: #6b7280;
    /* Gray text */
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.5;
}

/* ----------------------------------
       Layout Grid
       ---------------------------------- */
.ee-main-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    /* Forces all columns to match height on desktop */
}

/* Side Columns (Left and Right) */
.ee-side-col {
    flex: 1;
    /* Takes 1 part of the width */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ----------------------------------
       Light Purple Feature Cards
       ---------------------------------- */
.ee-feature-card {
    background-color: #ede7f6;
    /* Light lavender background */
    padding: 32px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Stretches cards equally */
}

.ee-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #4a148c;
    /* Dark purple matching center card */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ee-icon-circle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ee-feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.ee-feature-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------
       Center Column (Dark Purple Card)
       ---------------------------------- */
.ee-center-col {
    background-color: #4a148c;
    /* Dark purple */
    flex: 1.6;
    /* Takes more width than the side columns */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    /* Keeps images cleanly inside the container */
    min-height: 520px;
}

/* Overlapping Images inside the Center Card */
.ee-center-col img {
    position: absolute;
    border-radius: 8px;
    margin-bottom: -10px;
    /* Soft shadow to separate layers */
}

.img-ee-1 {
    /* Top Left Form */
    top: 8%;
    left: 6%;
    width: 50%;
    z-index: 1;
}

.img-ee-2 {
    /* Top Right Form */
    top: 22%;
    right: 4%;
    width: 48%;
    z-index: 2;
}

.img-ee-3 {
    /* Bottom Left Document */
    bottom: 8%;
    left: 10%;
    width: 45%;
    z-index: 3;
}

.img-ee-4 {
    /* Mobile Phone */
    bottom: 0;
    /* Flush to bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    border-radius: 0;
    /* Removing radius for flush bottom */
    z-index: 4;
}

/* ----------------------------------
       Responsive Adjustments (Mobile Layout)
       ---------------------------------- */
@media (max-width: 1024px) {
    .ee-main-grid {
        flex-direction: column;
    }

    /* Push the center image showcase to the top on smaller screens */
    .ee-center-col {
        order: -1;
        min-height: 500px;
        width: 100%;
    }

    .ee-side-col {
        flex-direction: row;
        /* Make feature cards side-by-side on tablet */
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ee-section-header h2 {
        font-size: 30px;
    }

    .ee-side-col {
        flex-direction: column;
        /* Stack all feature cards vertically on mobile */
    }

    .ee-center-col {
        min-height: 450px;
    }

    /* Adjust images for mobile screens so they don't break the layout */
    .img-ee-1 {
        width: 55%;
        top: 5%;
        left: 3%;
    }

    .img-ee-2 {
        width: 55%;
        top: 15%;
        right: 3%;
    }

    .img-ee-3 {
        width: 50%;
        bottom: 5%;
        left: 5%;
    }

    .img-ee-4 {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .ee-center-col {
        min-height: 380px;
    }

    /* Tighter image grouping for very small phones */
    .img-ee-1 {
        width: 65%;
        top: 5%;
        left: -2%;
    }

    .img-ee-2 {
        width: 65%;
        top: 15%;
        right: -2%;
    }

    .img-ee-3 {
        width: 55%;
        bottom: 5%;
        left: 0%;
    }

    .img-ee-4 {
        width: 45%;
    }

    .ee-feature-card {
        padding: 24px 20px;
    }
}



/* ========================================
   REPORTS & INSIGHTS SECTION
   ======================================== */
/* ----------------------------------
       Header Styles
       ---------------------------------- */
.ri-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ri-badge {
    display: block;
    color: #4A26AB;
    /* Purple accent matching the design */
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ri-section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    /* Dark slate */
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.ri-section-header p {
    font-size: 16px;
    color: #6b7280;
    /* Gray text */
    margin: 0 auto;
    max-width: 650px;
    line-height: 1.5;
}

/* ----------------------------------
       Layout Grid
       ---------------------------------- */
.ri-main-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    /* Forces all columns to match height on desktop */
}

/* Side Columns (Left and Right) */
.ri-side-col {
    flex: 1;
    /* Takes 1 part of the width */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ----------------------------------
       Light Purple Feature Cards
       ---------------------------------- */
.ri-feature-card {
    background-color: #EFE9FF;
    /* Light lavender background */
    padding: 32px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Stretches cards equally */
}

.ri-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #3B2189;
    /* Dark purple matching center card */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ri-icon-circle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ri-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.ri-feature-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------
       Center Column (Dark Purple Card)
       ---------------------------------- */
.ri-center-col {
    background-color: #3F2B96;
    /* Vibrant dark purple */
    flex: 1.6;
    /* Takes more width than the side columns */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    /* Keeps images cleanly inside the container */
    min-height: 520px;
}

/* Overlapping Images inside the Center Card */
.ri-center-col img {
    position: absolute;
    border-radius: 8px;
    /* Soft shadow to separate layers */
    left: 50%;
    transform: translateX(-50%);
    /* Centers the images horizontally */
}

.img-ri-1 {
    /* Top Report Form */
    top: 20%;
    width: 95%;
    z-index: 1;
}

.img-ri-2 {
    /* Bottom "Daily Books" Card */
    bottom: 12%;
    width: 75%;
    z-index: 2;
}

/* ----------------------------------
       Responsive Adjustments (Mobile Layout)
       ---------------------------------- */
@media (max-width: 1024px) {
    .ri-main-grid {
        flex-direction: column;
    }

    /* Push the center image showcase to the top on smaller screens */
    .ri-center-col {
        order: -1;
        min-height: 500px;
        width: 100%;
    }

    .ri-side-col {
        flex-direction: row;
        /* Make feature cards side-by-side on tablet */
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ri-section-header h2 {
        font-size: 30px;
    }

    .ri-side-col {
        flex-direction: column;
        /* Stack all feature cards vertically on mobile */
    }

    .ri-center-col {
        min-height: 420px;
    }

    .img-ri-1 {
        width: 92%;
        top: 8%;
    }

    .img-ri-2 {
        width: 85%;
        bottom: 8%;
    }
}

@media (max-width: 480px) {
    .ri-center-col {
        min-height: 350px;
    }

    .img-ri-1 {
        width: 95%;
        top: 6%;
    }

    .img-ri-2 {
        width: 90%;
        bottom: 6%;
    }

    .ri-feature-card {
        padding: 24px 20px;
    }
}


/* ========================================
   ACCOUNTING & EXPENSES SECTION
   ======================================== */
/* Base specific overrides */
body.exp-page .unified-section {
    padding: 60px 0;
    margin: 0;
}

/* Fix mobile menu toggle overflow on tiny screens */
@media (max-width: 400px) {
    .exp-logo {
        gap: 8px;
    }

    .exp-logo .product-name {
        font-size: 18px !important;
    }

    .btn-exp-login {
        padding: 8px 15px;
        font-size: 13px;
    }

    .header-actions {
        gap: 10px;
    }
}

.exp-accounting-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.accounting-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.accounting-header h2 {
    font-family: "Rethink Sans";
    font-size: 48px;
    font-weight: 800;
    color: black;
    margin-bottom: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.accounting-header p {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.accounting-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.accounting-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    overflow: hidden;
    /* Sticky Stacking Effect */
    position: sticky;
    top: 120px;
    z-index: 10;
    box-shadow:
        0 -4px 20px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Theme: Light (Greenish Tint) */
.acc-theme-light {
    background-color: #95eedd;
}

.acc-theme-light .acc-content h3 {
    color: #111827;
}

.acc-theme-light .acc-content p {
    color: #4b5563;
}

.acc-theme-light .acc-feature-list li {
    color: #374151;
}

/* Light (Teal/Cyan) Theme Icons */
.acc-theme-light .icon-wrap {
    background: #d6442d;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    /* Reset font size/color as we use image mask/bg */
}

.acc-theme-light .icon-wrap i {
    display: block;
    width: 14px;
    height: 14px;
    background: url("../images/hero-center-logo.svg") no-repeat center/contain;
    /* Make icon white */
    filter: brightness(0) invert(1);
    content: "";
    /* Hide text/font-icon if any */
}

/* Hide ::before content of font awesome */
.acc-theme-light .icon-wrap i::before,
.acc-theme-dark-green .icon-wrap i::before,
.acc-theme-dark-black .icon-wrap i::before {
    display: none;
}

/* Theme: Dark Green */
.acc-theme-dark-green {
    background-color: #1cb394;
    /* Use brand color or similar */
}

.acc-theme-dark-green .acc-content h3,
.acc-theme-dark-green .acc-content p,
.acc-theme-dark-green .acc-feature-list li {
    color: #ffffff;
}

/* Dark Theme Icons (Green/Black) - Hero Style (White Bubble + Green Icon) */
.acc-theme-dark-green .icon-wrap,
.acc-theme-dark-black .icon-wrap {
    background: #ffffff;
    /* White Bubble */
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
}

.acc-theme-dark-green .icon-wrap i,
.acc-theme-dark-black .icon-wrap i {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #d6442d;
    -webkit-mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
    mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
    content: "";
}

/* Theme: Dark Black/Green */
.acc-theme-dark-black {
    background-color: #08352c;
    /* Dark green/black */
}

.acc-theme-dark-black .acc-content h3,
.acc-theme-dark-black .acc-content p,
.acc-theme-dark-black .acc-feature-list li {
    color: #ffffff;
}

/* Specific overwrite for First Card in Accounting Section */
.accounting-grid .accounting-card:first-child {
    background-color: #edfcf9;
}

/* Alternating Layout - REMOVED for consistent alignment */
/* .accounting-card:nth-child(even) {
    flex-direction: row-reverse;
} */

.acc-content {
    flex: 1;
    padding: 60px;
}

.acc-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acc-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Apply a slight shadow if needed? */
}

.acc-content h3 {
    font-family: "Rethink Sans";
    font-size: 31.5px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 40px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.acc-content p {
    font-family: "DM Sans";
    font-size: 15.6px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.acc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acc-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* First 2 cards points color */
.accounting-card:nth-child(1) .acc-feature-list li,
.accounting-card:nth-child(2) .acc-feature-list li {
    color: #08352c;
}

/* Last 2 cards points color */
.accounting-card:nth-child(3) .acc-feature-list li,
.accounting-card:nth-child(4) .acc-feature-list li {
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .exp-accounting-section {
        padding: 60px 0;
    }

    .accounting-card,
    .accounting-card:nth-child(even) {
        flex-direction: column-reverse;
        position: relative;
        /* Disable sticky on mobile to prevent content clipping */
        top: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        /* Simpler shadow */
        margin-bottom: 40px;
    }

    .acc-content {
        padding: 30px 20px;
        text-align: left;
    }

    .acc-image-wrapper {
        padding: 30px 20px 0;
    }

    .acc-content h3 {
        font-size: 24px;
    }
}

/* --- Quick Action Section (Item Search) --- */
.quick-action-section {
    padding: 80px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.quick-container {
    max-width: 1100px;
    width: 100%;
}

/* --- Typography --- */
.quick-label {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 12px;
    display: block;
    color: #d6442d;
}

.quick-main-header {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #333333;
    text-align: center;
    margin: 0 auto 15px auto;
}

.quick-subtext {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #888888;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* --- Grid Layout --- */
.b-qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.b-qa-left-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- Cards --- */
.b-qa-card {
    background-color: #ffece5;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b-qa-full-width {
    grid-column: 1 / -1;
    /* span both columns */
}

/* --- Icons --- */
.eway-icon-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #ff5a35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.new-wa-feat-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 2px;
}

.new-wa-feat-icon::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #d6442d;
    -webkit-mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
    mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
}

.eway-icon-circle img {
    width: 14px;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.b-qa-icon img {
    width: 14px;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* --- Card Text --- */
.b-qa-card h4 {
    font-family: "Rethink Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.b-qa-card p {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* --- Right Side Image Box --- */
.b-qa-image-box {
    background-color: #d6442d;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
}

.b-qa-image-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .b-qa-grid {
        grid-template-columns: 1fr;
    }

    .b-qa-left-cards {
        grid-template-columns: 1fr;
    }

    .b-qa-full-width {
        grid-column: auto;
    }
}

/* --- Quick Action Carousel --- */
.qa-slider-container {
    position: relative;
    width: 100%;
}

.qa-slider-track {
    width: 100%;
}

.qa-slide {
    display: none;
    width: 100%;
    animation: fadeInSlide 0.5s ease-in-out forwards;
}

.qa-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qa-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.qa-dot {
    width: 10px;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.qa-dot.active {
    background-color: #d6442d;
    transform: scale(1.2);
}

/* --- Smart Tag Printing Section (Migrated from test.html) --- */
.tag-printing-section {
    background-color: #f8fafc;
    font-family: "Rethink Sans";
    padding: 60px 20px;
    color: #0f172a;
    /* brand-dark */
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    --tag-brand-green: #006953;
    --tag-brand-dark: #0f172a;
    --tag-brand-gray: #64748b;
    --tag-bg-light: #f8fafc;
    --tag-dimmed-bg: #00000054;
    --tag-line-color: #94a3b8;
}

/* --- Typography --- */
.tag-section-label {
    color: var(--tag-brand-green);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.tag-main-header {
    font-family: "Inter";
    font-size: 39.4px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 49px;
    letter-spacing: -1.5px;
    vertical-align: middle;
    color: black;
}

.tag-subtitle {
    font-family: "Inter";
    font-weight: 400;
    font-size: 14.6px;
    color: #575757;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 29px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* --- Top Feature Pills --- */
.tag-features-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
    max-width: 900px;
}

.tag-feature-pill {
    background: var(--exp-primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: "DM Sans";
    text-align: center;
}

/* --- Interactive Section Layout --- */
.tag-diagram-container {
    position: relative;
    max-width: 1350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 100px;
    padding: 0 20px;
}

/* SVG Overlay for Lines */
.tag-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Lines sit behind the buttons */
}

/* Interactive strictly straight lines (Orthogonal) */
.tag-connection-line {
    fill: none;
    stroke: var(--tag-line-color);
    stroke-width: 1.2px;
    stroke-linejoin: miter;
    transition:
        stroke 0.3s ease,
        stroke-width 0.3s ease;
    opacity: 0.5;
}

.tag-connection-line.active {
    stroke: var(--tag-brand-green);
    stroke-width: 2.5px;
    opacity: 1;
}

/* The continuous structural semi-circles */
.tag-structural-arc {
    fill: none;
    stroke: var(--tag-brand-green);
    stroke-width: 1.5px;
    opacity: 0.6;
}

/* --- Side Buttons (The Arms) --- */
.tag-side-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    z-index: 2;
    /* Buttons sit above the SVG lines */
    width: 250px;
    padding: 10px 0;
}

.tag-left-col {
    align-items: flex-end;
}

.tag-right-col {
    align-items: flex-start;
}

/* BASE BUTTON STYLES */
.tag-arm-btn {
    background: white;
    border: 1px solid var(--tag-brand-green);
    color: var(--tag-brand-dark);
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    overflow: visible;
    box-sizing: border-box;
    width: 170px;
    margin: 0;
}

/* STAGGERING: Push the middle buttons further outward */
.tag-left-col .tag-arm-btn:nth-child(2),
.tag-left-col .tag-arm-btn:nth-child(3) {
    margin-right: 60px;
}

.tag-right-col .tag-arm-btn:nth-child(2),
.tag-right-col .tag-arm-btn:nth-child(3) {
    margin-left: 60px;
}

/* Button Ends & Triangles */
.tag-left-col .tag-arm-btn {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.tag-right-col .tag-arm-btn {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

.tag-arm-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
}

.tag-left-col .tag-arm-btn::before {
    right: -18px;
    border-left: 18px solid white;
    filter: drop-shadow(1px 0 0 var(--tag-brand-green));
}

.tag-right-col .tag-arm-btn::before {
    left: -18px;
    border-right: 18px solid white;
    filter: drop-shadow(-1px 0 0 var(--tag-brand-green));
}

/* Hover & Active States */
.tag-arm-btn:hover,
.tag-arm-btn.active {
    background-color: var(--tag-brand-green);
    color: white;
}

.tag-left-col .tag-arm-btn:hover::before,
.tag-left-col .tag-arm-btn.active::before {
    border-left-color: var(--tag-brand-green);
}

.tag-right-col .tag-arm-btn:hover::before,
.tag-right-col .tag-arm-btn.active::before {
    border-right-color: var(--tag-brand-green);
}

/* --- Center Image Wrapper --- */
.tag-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 0;
    background: white;
    border-radius: 4px;
    border: 2px solid var(--tag-brand-green);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
}

.tag-printing-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* --- Highlight Zones --- */
.tag-highlight-zone {
    position: absolute;
    background-color: transparent;
    border: 2px solid var(--tag-brand-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 4px;
    z-index: 10;
}

.tag-highlight-zone.active {
    opacity: 1;
    box-shadow: 0 0 0 9999vmax var(--tag-dimmed-bg);
}

.tag-highlight-zone.active::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 2px solid var(--tag-brand-green);
    border-radius: 6px;
    opacity: 0;
    animation: tag-pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes tag-pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* --- Zone Positioning --- */
.tag-zone-business-address {
    top: 14%;
    left: 17%;
    width: 65%;
    height: 8%;
}

.tag-zone-license-number {
    top: 20%;
    left: 35%;
    width: 30%;
    height: 7%;
}

.tag-zone-barcode-number {
    top: 57%;
    left: 35%;
    width: 30%;
    height: 8%;
}

.tag-zone-mfg-date {
    top: 69%;
    left: 35%;
    width: 29%;
    height: 16%;
}

.tag-zone-business-name {
    top: 6%;
    left: 35%;
    width: 30%;
    height: 10%;
}

.tag-zone-item-name {
    top: 26%;
    left: 35%;
    width: 30%;
    height: 8%;
}

.tag-zone-mrp-price {
    top: 63%;
    left: 30%;
    width: 40%;
    height: 8%;
}

.tag-zone-description {
    top: 85%;
    left: 20%;
    width: 60%;
    height: 8%;
}

/* Responsive */
@media (max-width: 1024px) {
    .tag-diagram-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .tag-side-column {
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
        max-width: 600px;
    }

    .tag-image-wrapper {
        order: -1;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .tag-svg-overlay {
        display: none;
    }

    .tag-left-col .tag-arm-btn:nth-child(2),
    .tag-left-col .tag-arm-btn:nth-child(3),
    .tag-right-col .tag-arm-btn:nth-child(2),
    .tag-right-col .tag-arm-btn:nth-child(3) {
        margin: 0;
    }

    .tag-arm-btn {
        width: 180px;
        border-radius: 8px !important;
    }

    .tag-arm-btn::before {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .tag-printing-section {
        padding: 30px 15px;
    }

    .tag-main-header {
        font-size: 32px;
    }

    .tag-side-column {
        flex-direction: column;
        align-items: stretch;
    }

    .tag-arm-btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* --- Customer Dashboard Section (Migrated from test.html) --- */
.exp-dashboard-section {
    background: #ff9f7b;
    /* min-height: 100vh; */
    /* Removed min-height to fit naturally in the page flow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.exp-dashboard-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.exp-dashboard-title {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0%;
    color: #f9f9f9;
    margin-bottom: 24px;
}

.exp-dashboard-description {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #e8f6ed;
    max-width: 750px;
    margin: 0 auto;
}

.exp-dashboard-image-container {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.exp-dashboard-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .exp-dashboard-title {
        font-size: 32px;
        line-height: 40px;
    }

    .exp-dashboard-section {
        padding-top: 60px;
    }
}

/* --- Auto-Scrolling Dashboard Cards (New Section) --- */
.dash-scroll-section {
    background: #ffece5;
    padding: 30px 0 50px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.dash-scroll-track {
    display: flex;
    gap: 30px;
    animation: dash-scroll 40s linear infinite;
    width: max-content;
    padding-left: 20px;
}

.dash-scroll-track:hover {
    animation-play-state: paused;
}

.dash-scroll-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    transition: transform 0.3s ease;
}

.dash-scroll-card:hover {
    transform: translateY(-5px);
}

.dash-card-icon {
    background: var(--exp-primary-gradient);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.dash-card-icon img {
    width: 20px;
    height: auto;
    display: block;
}

.dash-card-title {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.dash-card-desc {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

@keyframes dash-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the width (first set) */
    }
}

/* --- GST Filing & Compliance Section (New) --- */
.gst-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}

.gst-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 5%;
    align-items: stretch;
}

/* Left Content Styles */
.gst-content-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.gst-subtitle {
    color: #51ad68;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-family: "Inter";
}

.gst-title {
    font-size: 42px;
    color: #2d333a;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Inter";
}

.gst-highlight-wrapper {
    position: relative;
    display: inline-block;
}

.gst-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 95%;
    font-family: "Inter";
}

/* Features Grid Styles */
.gst-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 40px;
}

.gst-feature-item {
    display: flex;
    flex-direction: column;
}

.gst-icon-circle {
    width: 42px;
    height: 42px;
    background: #d6442d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gst-icon-circle img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.gst-feature-item h3 {
    font-size: 18px;
    color: #111827;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Inter";
}

.gst-feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-family: "Inter";
}

/* Right Content Styles */
.gst-content-right {
    flex: 0 0 45%;
    position: relative;
}

.gst-green-bg {
    background: var(--exp-primary-gradient);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- Mobile App Section (New) --- */
.mobile-app-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.mobile-app-subtitle {
    color: #51ad68;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-family: "Inter";
}

.mobile-app-title {
    font-size: 36px;
    color: #2d333a;
    margin: 0 0 10px 0;
    font-weight: 700;
    font-family: "Inter";
}

.mobile-app-description {
    color: #6b7280;
    font-size: 16px;
    margin: 0 auto 50px auto;
    max-width: 600px;
    line-height: 1.6;
    font-family: "Inter";
}

.mobile-app-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-app-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 30px 40px 0 30px;
    /* Bottom padding handled by image */
    text-align: left;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.mobile-app-card.driver {
    background-color: #08352c;
    color: white;
}

.mobile-app-card.collection {
    background-color: #e8f6ed;
    color: #111827;
}

.mobile-app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.mobile-app-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Inter";
}

.mobile-app-card.driver .mobile-app-name {
    color: #63b984;
}

.mobile-app-card.collection .mobile-app-name {
    color: var(--exp-primary-dark);
}

.app-arrow-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
}

.app-arrow-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.mobile-app-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Inter";
}

.mobile-feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: white;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-app-card.collection .mobile-feature-icon {
    background-color: #2ecc71;
}

.mobile-feature-icon img {
    width: 12px;
    height: 12px;
}

/* Filter for green check in driver card (white bg) */
.mobile-app-card.driver .mobile-feature-icon img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(500%) hue-rotate(130deg) brightness(95%) contrast(95%);
}

/* Filter for white check in collection card (green bg) */
.mobile-app-card.collection .mobile-feature-icon img {
    filter: brightness(0) invert(1);
}

.mobile-phone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* or flex-start, depending on how you want it vertically in the remaining space */
    position: relative;
    margin-top: auto;
    gap: 25px;
    /* Spacing between image and button */
    padding-bottom: 30px;
    /* Spacing at the bottom */
}

.mobile-phone-img {
    width: 80%;
    max-width: 300px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.google-play-btn {
    position: relative;
    /* Removed absolute positioning */
    z-index: 10;
    width: 140px;
    height: auto;
    transition: transform 0.2s;
    cursor: pointer;
    /* left/bottom/transform removals are implied by not including them */
}

.google-play-btn:hover {
    transform: scale(1.05);
    /* Removed translateX since it's no longer needed */
}

/* Responsive */
@media (max-width: 900px) {
    .mobile-app-grid {
        flex-direction: column;
        align-items: center;
    }

    .mobile-app-card {
        width: 100%;
        max-width: 600px;
        min-height: auto;
    }
}

/* --- Pricing Section (New) --- */
.pricing-section {
    padding: 40px 20px;
    background-color: #F7F7F7;
    text-align: center;
}

.pricing-title-wrapper {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.pricing-title {
    font-size: 36px;
    color: #2d333a;
    font-weight: 700;
    font-family: "Inter";
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

/* Custom underline for "Pricing Plans" */
.pricing-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.pricing-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    /* Adjust based on font baseline */
    width: 100%;
    height: 8px;
    /* Thickness of the underline */
    background-color: #c1eac5;
    /* Light green underline color */
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
    /* Slight tilt for "hand-drawn" look */
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    align-items: stretch;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Most Popular Card Styles */
.pricing-card.popular {
    background-color: #EDE7FF;
    border: 1px solid #4E26A4;
    transform: scale(1.02);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4E26A4;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    font-family: "Inter";
}

.plan-period {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 25px;
}

.pricing-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #341577;
    color: white;
    font-weight: 600;
    font-size: 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 25px;
    transition: background-color 0.2s;
    width: 100%;
}

.pricing-btn:hover {
    background-color: #4E26A4;
}

/* Feature List */
.features-header {
    font-size: 13px;
    font-weight: 700;
    color: #4E26A4;
    text-align: left;
    margin-bottom: 15px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-feature-item {
    font-size: 13px;
    color: #374151;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.pricing-feature-item::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    background-color: #EDE7FF;
    color: #4E26A4;
    font-size: 9px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pricing-disclaimer {
    font-family: "Inter";
    color: #333333;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
    margin-top: -40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Add-on Section */
.addon-section {
    background-color: #EDE7FF;
    border-radius: 16px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    gap: 30px;
}

.addon-text {
    flex: 1;
    padding-right: 30px;
    border-right: 1px solid #d7d7d7;
}

.addon-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #341577;
    margin: 0 0 5px 0;
}

.addon-text p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.addon-btn {
    background-color: #341577;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.addon-btn:hover {
    background-color: #4E26A4;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
    }

    .addon-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .addon-text {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #d7d7d7;
        padding-bottom: 20px;
    }
}

/* Overlapping Image Styles */
.img-gst-1 {
    position: absolute;
    /* Pulled down to be more centered vertically */
    top: 10%;
    left: 0px;
    /* Reduced size */
    width: 420px;
    border-radius: 8px;
    z-index: 1;
}

.img-gst-2 {
    position: absolute;
    top: 47%;
    right: 0;
    width: 420px;
    border-radius: 8px;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gst-container {
        flex-direction: column;
    }

    .gst-content-left {
        flex: 1 1 100%;
    }

    .gst-content-right {
        flex: 1 1 100%;
        margin-top: 60px;
    }

    .img-gst-1 {
        top: 5%;
        left: 10%;
        width: 45%;
    }

    .img-gst-2 {
        top: 40%;
        right: 10%;
        width: 45%;
    }

    .gst-green-bg {
        height: 500px;
    }
}

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

    .gst-title {
        font-size: 34px;
    }

    .img-gst-1,
    .img-gst-2 {
        width: 80%;
    }

    .img-gst-1 {
        left: 5%;
        top: 5%;
    }

    .img-gst-2 {
        right: 5%;
        bottom: -10%;
    }

    .gst-green-bg {
        height: 400px;
    }
}

/* --- Main Layout --- */
.quick-grid {
    display: flex;
    /* Flexbox allows heights to align naturally */
    gap: 24px;
    align-items: stretch;
    /* CRITICAL: This forces all columns to be same height */
    justify-content: center;
}

.quick-side-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    /* Takes up 1 part width */
    justify-content: space-between;
    /* Pushes cards to top and bottom */
}

/* --- Feature Card Styling --- */
.quick-card {
    background-color: #e8f6ed;
    /* Light Green BG */
    padding: 32px 24px;
    border-radius: 20px;
    /* CRITICAL: flex: 1 makes the card expand to fill the available height */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.quick-icon-box {
    background-color: #16a34a;
    /* Brand Green */
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.quick-icon-box svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.quick-card-text {
    font-family: "Rethink Sans";
    font-weight: 600;
    font-size: 18.08px;
    line-height: 23.5px;
    color: #0f172a;
    /* Main Dark */
}

/* --- Image Section --- */
.quick-image-wrapper {
    flex: 2;
    /* Takes up 2 parts width */
    display: flex;
    flex-direction: column;
    /* The Border */
    border: 12px solid #e8f6ed;
    /* Light Green BG */
    /* Optional: rounded corners on the border itself */
    border-radius: 20px;
    box-sizing: border-box;
    background: #e8f6ed;
    /* Light Green BG */
    /* Ensures no gaps */
}

.quick-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures full image is visible, no cropping */
    display: block;
    border-radius: 0;
    /* STRICT: No radius on image */
}

/* --- Responsive View --- */
@media (max-width: 1100px) {
    .quick-grid {
        flex-direction: column;
        align-items: normal;
    }

    .quick-side-col {
        flex-direction: row;
        height: auto;
    }

    .quick-card {
        min-height: 140px;
    }
}

@media (max-width: 600px) {
    .quick-side-col {
        flex-direction: column;
    }

    .quick-main-header {
        font-size: 32px;
        line-height: 40px;
    }
}

/* FAQ Section Overrides for Expenses Page */
.exp-page .faq-section {
    background: #fff;
    /* Shorthand clears image */
    background-image: none;
    /* Explicitly clear just in case */
    padding: 80px 0;
}

.exp-page .faq-container {
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.exp-page .faq-left {
    background: transparent;
    padding: 0;
    width: 100%;
}

.exp-page .faq-right {
    display: none;
}

.exp-page .faq-section .section-sub-heading {
    /* Keeping existing style or updating if needed. User didn't specify sub-heading explicitly, focusing on 'faq exp' (title?) */
    color: var(--exp-primary);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.exp-page .faq-section .section-heading {
    font-family: "Rethink Sans";
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 50px;

    background: var(--exp-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */

    /* Ensure it behaves like block for alignment */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.exp-page .faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.exp-page .faq-item.active {
    background: #fff;
    border-color: var(--exp-primary);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(28, 165, 135, 0.1);
}

.exp-page .faq-question h3 {
    font-family: "Rethink Sans";
    font-weight: 600;
    /* font-size: Display 5 -> assuming ~22px based on context or user's likely system */
    font-size: 22px;
    line-height: 135%;
    letter-spacing: 0;
    color: #170f49;
    /* Neutral-800 */
    margin: 0;
    padding-right: 20px;
}

.exp-page .toggle-icon {
    background: var(--exp-primary-gradient);
    color: #fff;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exp-page .faq-answer {
    margin-top: 0;
    padding-top: 0;
    color: #6f6c8f;
    /* Neutral-600 */
    font-family: "DM Sans";
    font-weight: 400;
    /* font-size: 18pt -> 24px? That's huge. I'll use 18px */
    font-size: 18px;
    line-height: 166%;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.exp-page .faq-item.active .faq-answer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    max-height: 200px;
    /* Adjust as needed */
    opacity: 1;
}

.exp-page .faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   BILLING TAB 1 CUSTOM GRID (Replaced with GST-ready design)
   ======================================== */
.b-tab1-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

/* Large Left Card (Spans 3 rows) */
.b-tab1-card-large {
    grid-column: 1;
    grid-row: 1 / span 3;
    background-color: #c05d47;
    /* Terracotta red */
    border-radius: 16px;
    padding: 40px 40px 0 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.b-tab1-card-large h3 {
    font-family: "Rethink Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.b-tab1-card-large .subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 20px 0;
    color: #fbe6e1;
}

.b-tab1-card-large p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0 0 40px 0;
}

.b-tab1-card-large img {
    width: 90%;
    margin: 0 auto;
    display: block;
    border-radius: 8px 8px 0 0;
    margin-bottom: -5px;
    object-fit: cover;
}

/* Small White Cards */
.b-tab1-card-small {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.b-tab1-card-small .text-content {
    flex: 1;
    padding-right: 20px;
}

.b-tab1-card-small h4 {
    font-family: "Rethink Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px 0;
}

.b-tab1-card-small p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.b-tab1-card-small .icon-img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Bottom Row Specific Placements */
.b-tab1-card-bottom-left {
    grid-column: 1;
    grid-row: 4;
}

.b-tab1-card-bottom-right {
    grid-column: 2;
    grid-row: 4;
}

.btn-phone {
    background: var(--exp-primary-gradient);
}

.btn-email i {
    color: var(--exp-primary-gradient);

}

/* Responsive Design for smaller screens */
@media (max-width: 900px) {
    .b-tab1-grid-container {
        grid-template-columns: 1fr;
    }

    .b-tab1-card-large {
        grid-column: 1;
        grid-row: auto;
    }

    .b-tab1-card-bottom-left,
    .b-tab1-card-bottom-right {
        grid-column: 1;
        grid-row: auto;
    }

    /* =========== ACCOUNTING SECTION OVERRIDES =========== */

    /* First two cards (acc-theme-light) logo background */
    #accounting .accounting-card.acc-theme-light .icon-wrap {
        background-color: #d6442d !important;
    }

    /* Second two cards logo text color */
    #accounting .accounting-card.acc-theme-dark-green .icon-wrap i,
    #accounting .accounting-card.acc-theme-dark-black .icon-wrap i {
        color: #d6442d !important;
    }

    /* All cards image border */
    #accounting .accounting-card .acc-image-wrapper img {
        border-radius: 12px;
        box-sizing: border-box;
    }
}

/* Product features banner */
.product-features-banner {
    background: var(--exp-primary) !important;
}

/* Trusted By Section Override for Expenses Page */
.exp-page .trusted-section {
    background: #d6442d;
}

/* --- Instant E-Way Bill Generation Section --- */
.eway-bill-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.eway-header {
    margin-bottom: 50px;
}

.eway-pill {
    display: inline-block;
    color: #d6442d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.eway-title {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.eway-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.eway-content-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
    margin: 0 auto;
}

.eway-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.eway-feature-card {
    background: #fff2ee;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.eway-feature-card:hover {
    transform: translateY(-5px);
}

.eway-icon-circle {
    width: 40px;
    height: 40px;
    background: #d6442d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
}

.eway-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: "Rethink Sans", sans-serif;
}

.eway-feature-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.eway-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: #d6442d;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.eway-main-img {
    width: 80%;
    height: auto;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

.eway-overlay-img {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 80%;
    z-index: 3;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .eway-content-grid {
        grid-template-columns: 1fr;
    }

    .eway-features-grid {
        order: 2;
    }

    .eway-image-frame {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .eway-title {
        font-size: 32px;
    }

    .eway-overlay-img {
        width: 90%;
        bottom: -20px;
        right: 10px;
    }
}

/* ========================================================= */
/* WhatsApp Chatbot Redesign */
/* ========================================================= */

.wa-chatbot-section {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1500px !important;
}

.new-wa-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.new-wa-subtitle {
    color: #d6442d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.new-wa-title {
    font-family: "Rethink Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.new-wa-mascot-box img {
    height: 120px;
    width: auto;
}

.new-wa-orange-card {
    background-color: #ee6246;
    background-image: url("../images/expense/bot-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.new-wa-owner-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 16px;
}

.new-wa-card-title {
    color: #ffffff;
    font-family: "Rethink Sans", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 40px;
}

.new-wa-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-wa-feat-item {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.new-wa-feat-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ee6246;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.new-wa-feat-text h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: "Rethink Sans", sans-serif;
}

.new-wa-feat-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.new-wa-right-col {
    display: flex;
    justify-content: center;
}

/* Force override phone background for right column */
.new-wa-right-col .wa-phone-mockup {
    max-width: 320px;
}

@media (max-width: 1024px) {
    .new-wa-orange-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .new-wa-header-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .new-wa-title {
        font-size: 32px;
    }

    .new-wa-card-title {
        font-size: 28px;
    }
}

/* ========================================================= */
/* Expenses App Redesign */
/* ========================================================= */

.mobile-app-section {
    padding: 80px 0;
    background-color: #F7F7F7;
}

.mobile-app-subtitle {
    color: #4E26A4;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.mobile-app-title {
    font-family: "Rethink Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.mobile-app-description {
    text-align: center;
    color: #666666;
    font-size: 16px;
    margin-bottom: 50px;
}

.ex-app-card {
    background-color: #341577;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ex-center-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ex-app-label {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ex-app-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.ex-arrow-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto;
}

.ex-content-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    width: 100%;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.ex-features-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.ex-center-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.left-features .ex-feature-box,
.right-features .ex-feature-box {
    background: rgba(0, 0, 0, 0.08);
    /* Darker subtle overlay */
    border-radius: 12px;
    padding: 24px;
    border: none;
    box-shadow: none;
}

.ex-icon-circle {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ex-icon-circle img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(72%) saturate(1200%) hue-rotate(255deg) brightness(90%) contrast(95%);
    /* Turn checkmark to purple */
}

.ex-feature-box h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "Rethink Sans", sans-serif;
}

.ex-feature-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.ex-phone-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Anchor image to bottom */
}

.ex-phone-img {
    max-width: 320px;
    display: block;
    margin-bottom: 0px;
    margin-top: auto;
}

.ex-play-store {
    margin-top: 40px;
    text-align: center;
    z-index: 3;
}

.ex-play-store img {
    height: 44px;
    /* make it a bit prominent */
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .ex-content-grid {
        grid-template-columns: 1fr;
    }

    .ex-phone-col {
        order: 1;
        /* Bring phone to top */
        margin-bottom: 40px;
    }

    .ex-phone-img {
        margin-bottom: 0;
        /* Reset */
    }

    .left-features {
        order: 2;
    }

    .right-features {
        order: 3;
    }

    .ex-app-card {
        padding: 40px;
    }

    .ex-play-store {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }
}

/* --- Fixed or Recurring Section --- */
/* Import Inter font to match Figma */







/* ----------------------------------
       Header Styles
       ---------------------------------- */
.for-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.for-section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    /* Dark slate */
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.for-section-header p {
    font-size: 16px;
    color: #6b7280;
    /* Gray text */
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.5;
}

/* ----------------------------------
       Layout Grid
       ---------------------------------- */
.for-main-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
    /* Forces left card and right grid to match height */
}

/* ----------------------------------
       Left Column (Dark Purple Card)
       ---------------------------------- */
.for-left-col {
    flex: 1;
    /* Takes slightly less width than right col */
    background-color: #3F2B96;
    /* Dark vibrant purple */
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    /* Keeps images neatly inside */
    min-height: 600px;
    /* Provides sufficient height for overlapping images */
}

/* Overlapping Images inside the Center Card */
.for-left-col img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    border-radius: 8px;
    /* Soft shadow for depth */
}

.img-for-1 {
    top: 40px;
    /* Spaced from top */
    z-index: 1;
}

.img-for-2 {
    bottom: 30px;
    /* Spaced from bottom */
    z-index: 2;
    /* Sits on top of the first image */
}

/* ----------------------------------
       Right Column (CSS Grid)
       ---------------------------------- */
.for-right-grid {
    flex: 1.25;
    /* Takes slightly more width */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 20px;
}

.for-full-width {
    grid-column: 1 / -1;
    /* Forces the first card to span both columns */
}

/* ----------------------------------
       Light Purple Feature Cards
       ---------------------------------- */
.for-feature-card {
    background-color: #EFE9FF;
    /* Light lavender background */
    padding: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.for-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #3F2B96;
    /* Matches the dark left card */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.for-icon-circle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.for-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.for-feature-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------
       Responsive Adjustments
       ---------------------------------- */
@media (max-width: 1024px) {
    .for-main-row {
        flex-direction: column;
    }

    .for-left-col {
        min-height: 500px;
    }

    .img-for-1,
    .img-for-2 {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .for-section-header h2 {
        font-size: 30px;
    }

    .for-right-grid {
        grid-template-columns: 1fr;
        /* Stack all cards to 1 column on mobile */
    }

    .for-full-width {
        grid-column: auto;
        /* Reset spanning */
    }

    .for-left-col {
        min-height: 450px;
    }

    .img-for-1 {
        top: 30px;
    }

    .img-for-2 {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .for-left-col {
        min-height: 380px;
    }

    .img-for-1,
    .img-for-2 {
        width: 92%;
    }

    .for-feature-card {
        padding: 24px;
    }
}

/* --- Cost Management Section --- */
/* Import Inter font to match Figma */







/* ----------------------------------
       Header Styles
       ---------------------------------- */
.cm-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.cm-badge {
    display: block;
    color: #4A26AB;
    /* Purple accent matching the design */
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cm-section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    /* Dark slate */
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.cm-section-header p {
    font-size: 16px;
    color: #6b7280;
    /* Gray text */
    margin: 0 auto;
    max-width: 750px;
    line-height: 1.6;
}

/* ----------------------------------
       Layout Grid
       ---------------------------------- */
.cm-main-row {
    display: flex;
    gap: 32px;
    align-items: center;
    /* Vertically centers the content in the row */
}

/* ----------------------------------
       Left Column (Dark Purple Card)
       ---------------------------------- */
.cm-left-col {
    flex: 1.4;
    /* Takes slightly more width */
    background-color: #2F1C6A;
    /* Deep indigo/purple matching the screenshot */
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-left-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Soft shadow to give depth against the dark background */
}

/* ----------------------------------
       Right Column (List & Heading)
       ---------------------------------- */
.cm-right-col {
    flex: 1;
    /* Takes remaining width */
    display: flex;
    flex-direction: column;
}

.cm-list-heading {
    font-size: 20px;
    font-weight: 600;
    color: #2F1C6A;
    /* Matches the dark left card */
    margin: 0 0 24px 0;
    line-height: 1.4;
}

/* ----------------------------------
       Light Purple List Items
       ---------------------------------- */
.cm-list-card {
    background-color: #EDE7F6;
    /* Light lavender background */
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cm-list-card:last-child {
    margin-bottom: 0;
}

.cm-icon-circle {
    width: 36px;
    height: 36px;
    background-color: #2F1C6A;
    /* Deep indigo/purple */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents icon from shrinking on small screens */
}

.cm-icon-circle svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cm-list-card p {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

/* ----------------------------------
       Responsive Adjustments
       ---------------------------------- */
@media (max-width: 1024px) {
    .cm-main-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cm-left-col {
        padding: 30px;
    }

    .cm-right-col {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .cm-section-header h2 {
        font-size: 30px;
    }

    .cm-left-col {
        padding: 20px;
        border-radius: 16px;
    }

    .cm-list-heading {
        font-size: 18px;
    }

    .cm-list-card {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .cm-section-header h2 {
        font-size: 26px;
    }

    .cm-list-card p {
        font-size: 15px;
    }
}

/* ========================================
   MULTI-USER ACCESS SECTION (Expense)
   ======================================== */
.ex-mu-section {
    padding: 80px 20px;
    background: #ffffff;
}

.ex-mu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: start;
}

.ex-mu-text-block {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.ex-mu-image-block {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ex-mu-subtitle {
    color: #4a148c;
    font-family: "DM Sans";
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.ex-mu-title {
    font-family: "Rethink Sans";
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.ex-mu-desc {
    font-family: "DM Sans";
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 95%;
}

.ex-mu-main-img {
    width: 80%;
    max-width: 550px;
    height: auto;
    display: block;
    padding-top: 50px;
}

.ex-mu-feat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ex-mu-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(90deg, #4a148c 0%, #5e35b1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ex-mu-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.ex-mu-feat-item h3 {
    font-family: "Rethink Sans";
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.ex-mu-feat-item p {
    font-family: "DM Sans";
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .ex-mu-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ex-mu-text-block {
        grid-column: span 2;
    }

    .ex-mu-image-block {
        grid-column: span 2;
        grid-row: auto;
        justify-content: center;
        margin-top: 40px;
    }
}

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

    .ex-mu-title {
        font-size: 30px;
    }
}