    .top-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0 32px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #0f172a;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        color: #fff;
        display: grid;
        place-items: center;
        font-weight: 700;
    }

    .top-nav nav {
        display: flex;
        align-items: center;
        gap: 24px;
        font-size: 14px;
    }

    .top-nav nav a {
        color: #0f172a;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .top-nav nav a:hover {
        color: #2563eb;
    }

    .login-link {
        padding: 6px 0;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        padding: 10px 22px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background 0.2s ease;
    }

    .btn.primary {
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        color: #fff;
        box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    }

    .btn.secondary {
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
    }

    .btn.ghost {
        border: 1px solid rgba(15, 23, 42, 0.15);
        color: #0f172a;
        padding: 10px 20px;
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 900px) {
        .top-nav {
            flex-direction: column;
            align-items: stretch;
            padding: 12px 0 18px;
            gap: 8px;
        }

        .brand {
            margin-bottom: 8px;
            align-self: flex-start;
        }

        .top-nav nav {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            font-size: 15px;
            width: 100%;
            padding-bottom: 4px;
            overflow-x: unset;
        }

        .top-nav nav a {
            padding: 8px 10px;
            white-space: nowrap;
            font-size: 15px;
            border-radius: 8px;
            width: auto;
            text-align: left;
        }

        .btn {
            padding: 8px 16px;
            font-size: 15px;
            width: auto;
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .top-nav {
            flex-direction: column;
            align-items: stretch;
            padding: 8px 0 12px;
            gap: 6px;
        }

        .brand {
            margin-bottom: 6px;
            align-self: flex-start;
        }

        .top-nav nav {
            gap: 8px;
            font-size: 14px;
            padding-bottom: 2px;
        }

        .top-nav nav a {
            padding: 7px 8px;
            font-size: 14px;
            border-radius: 8px;
            width: auto;
            text-align: left;
        }

        .btn {
            padding: 7px 12px;
            font-size: 14px;
            width: auto;
            justify-content: center;
        }
    }

    .custom-footer {
        width: 100%;
        background: linear-gradient(90deg, #f8fafc 0%, #e0e7ef 100%);
        border-top: 1px solid #e6eef8;
        margin-top: 48px;
        padding: 0;
        box-shadow: 0 -2px 8px rgba(60, 80, 120, 0.04);
    }

    .footer-main {
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 24px;
        flex-wrap: wrap;
    }

    .footer-brand-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-brand {
        font-size: 14px;
        color: #334155;
        font-weight: 600;
        margin-bottom: 12px;
        letter-spacing: 0.2px;
    }

    .footer-links {
        width: 100%;
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-top: 12px;
    }

    .footer-links a {
        color: #3b82f6;
        font-size: 13px;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }

    .footer-extra {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        font-size: 14px;
        color: #6b7280;
        min-width: 220px;
        margin-top: 0;
    }

    .footer-extra a {
        color: #3b82f6;
        text-decoration: none;
        font-weight: 500;
    }

    .footer-extra a:hover {
        text-decoration: underline;
        color: #1d4ed8;
    }

    @media (max-width: 900px) {
        .footer-main {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-extra {
            align-items: flex-start;
            min-width: 0;
            margin-top: 8px;
        }

        .lSBtn {
            max-width: 250px;
        }
    }

    @media (max-width: 600px) {
        .footer-main {
            padding: 18px 2px 12px 2px;
        }

        .footer-links {
            gap: 12px;
            font-size: 14px;
        }

        .footer-brand {
            font-size: 15px;
        }

        .footer-extra {
            align-items: flex-start;
            min-width: 0;
            margin-top: 8px;
        }
    }


    .page-wrapper {
        position: relative;
        width: 100%;
        min-height: 100vh;
        padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 6vw, 6rem);
        overflow: hidden;
    }

    .page-backdrop {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 20% 20%, rgba(79, 110, 247, 0.18), transparent 45%),
            radial-gradient(circle at 85% 0, rgba(124, 58, 237, 0.16), transparent 55%);
        filter: blur(50px);
        opacity: 0.8;
    }

    .page-content {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 clamp(1.5rem, 3vw, 3rem);
        display: flex;
        flex-direction: column;
    }

    .top-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 600;
        color: #0f172a;
    }

    .brand-copy {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }

    .brand-copy span {
        font-size: 1rem;
    }

    .brand-copy p {
        margin: 0;
        font-size: 0.82rem;
        color: #64748b;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-weight: 700;
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        color: #fff;
    }

    .top-nav nav {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .top-nav nav a {
        text-decoration: none;
        font-weight: 500;
        color: #0f172a;
        transition: color 0.2s ease;
    }

    .top-nav nav a:hover {
        color: #2563eb;
    }

    .login-link {
        padding: 0.35rem 0;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.6rem;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    .hero-actions,
    .cta-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }


    @media (max-width: 768px) {
        .top-nav {
            flex-direction: column;
            align-items: flex-start;
        }

        .top-nav nav {
            gap: 0.75rem;
        }
    }

    @media (max-width: 640px) {

        .hero-actions,
        .cta-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .btn {
            width: 100%;
        }
    }

    </style><style>.why-happiebill {
        margin-top: 64px;
        padding: 48px 0;
        background: #fff;
        border-radius: 32px;
        box-shadow: 0 16px 48px rgba(37, 99, 235, 0.07);
        border: 1px solid #e0e7ff;
    }

    .why-happiebill header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 32px;
    }

    .why-happiebill h2 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        color: #2563eb;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .why-happiebill p {
        color: #334155;
        font-size: 1rem;
        margin-bottom: 1.1rem;
        line-height: 1.7;
    }

    .why-happiebill .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
        margin: 0 auto 32px auto;
        max-width: 1100px;
    }

    .why-happiebill article {
        background: #f8fafc;
        border-radius: 20px;
        padding: 28px 22px;
        border: 1px solid #e0e7ff;
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.04);
        transition: transform 0.18s;
    }

    .why-happiebill article:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 32px rgba(37, 99, 235, 0.10);
    }

    .why-happiebill h3 {
        color: #1e293b;
        font-size: 1.13rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .why-happiebill ul {
        margin: 0 0 0 1.1rem;
        padding-left: 0.7rem;
        color: #2563eb;
        font-size: 1.05rem;
        list-style: disc inside;
    }

    .why-happiebill li {
        margin-bottom: 0.6rem;
        font-weight: 500;
    }

    .why-happiebill footer {
        text-align: center;
        margin-top: 24px;
    }

    .why-happiebill footer a {
        color: #2563eb;
        font-weight: 700;
        text-decoration: underline;
        margin: 0 8px;
        transition: color 0.18s;
    }

    .why-happiebill footer a:hover {
        color: #1e40af;
    }

    [_nghost-ng-c91071548] {
        display: block;
        color: #0f172a;
        background: #f4f7fb;
    }

    .home-wrapper {
        position: relative;
        overflow: hidden;
        padding: 48px 0 0px;
    }

    .backdrop {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.25), transparent 45%),
            radial-gradient(circle at 80% 0, rgba(14, 165, 233, 0.3), transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(252, 211, 77, 0.25), transparent 45%);
        filter: blur(60px);
        opacity: 0.9;
    }

    .content {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        padding: 10px 22px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn.primary {
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        color: #fff;
        box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    }

    .btn.secondary {
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
    }

    .btn.ghost {
        border: 1px solid rgba(15, 23, 42, 0.15);
        color: #0f172a;
        padding: 10px 20px;
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    .hero {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        padding: 48px;
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.85);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    }

    .eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 12px;
        color: #64748b;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 4vw, 3.8rem);
        line-height: 1.1;
        margin: 16px 0;
    }

    .hero-copy .lead {
        color: #475569;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin: 32px 0 24px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 16px;
    }

    .hero-stats article {
        padding: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 20px;
        background: #fff;
    }

    .hero-stats .value {
        font-size: 1.6rem;
        font-weight: 700;
        color: #2563eb;
    }

    .hero-panel {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .panel-card {
        width: 100%;
        max-width: 360px;
        background: #0f172a;
        color: #e2e8f0;
        border-radius: 28px;
        padding: 28px;
        box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
    }

    .panel-card header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .panel-card .badge {
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(59, 130, 246, 0.2);
        color: #fff;
        font-size: 12px;
    }

    .panel-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .panel-card li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
    }

    .panel-card footer {
        margin-top: 18px;
        font-size: 13px;
        color: rgba(226, 232, 240, 0.8);
    }

    section {
        margin-top: 64px;
    }

    .features {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .features article {
        background: #fff;
        border-radius: 24px;
        padding: 24px;
        border: 1px solid rgba(15, 23, 42, 0.05);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
        transition: transform 0.2s ease;
    }

    .features article:hover {
        transform: translateY(-4px);
    }

    .features h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #0f172a;
    }

    .about {
        margin-top: 64px;
        padding: 48px;
        border-radius: 32px;
        background: #fff;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
        border: 1px solid rgba(15, 23, 42, 0.05);
    }

    .about-intro {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 32px;
    }

    .about-intro h2 {
        margin: 12px 0;
        font-size: clamp(1.9rem, 3vw, 2.6rem);
    }

    .about-intro p {
        color: #475569;
        line-height: 1.6;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }

    .about-card {
        padding: 28px;
        border-radius: 24px;
        background: rgba(15, 23, 42, 0.02);
        border: 1px solid rgba(15, 23, 42, 0.05);
    }

    .about-card.accent {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        color: #f8fafc;
        border: none;
    }

    .about-card h3 {
        margin-bottom: 12px;
        font-size: 1.15rem;
    }

    .about-list {
        list-style: none;
        margin: 18px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .about-list li {
        position: relative;
        padding-left: 20px;
        color: #475569;
    }

    .about-card.accent .about-list li {
        color: rgba(248, 250, 252, 0.9);
    }

    .about-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #2563eb;
    }

    .about-card.accent .about-list li::before {
        background: rgba(248, 250, 252, 0.8);
    }

    .stat-row {
        display: flex;
        gap: 24px;
        margin: 24px 0 12px;
    }

    .stat-value {
        font-size: 2rem;
        font-weight: 700;
    }

    .fine-print {
        font-size: 0.9rem;
        margin-top: 8px;
        color: rgba(248, 250, 252, 0.9);
    }

    .insights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .insights .card {
        padding: 32px;
        border-radius: 28px;
        background: #0f172a;
        color: #e2e8f0;
    }

    .insights .card ul {
        margin: 16px 0 0;
        padding-left: 18px;
        line-height: 1.6;
        color: rgba(226, 232, 240, 0.85);
    }

    .insights .card.highlight {
        background: linear-gradient(135deg, #fbbf24, #f97316);
        color: #0f172a;
    }

    .pill-row {
        margin-top: 24px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .pill-row span {
        padding: 6px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.6);
        font-weight: 600;
        font-size: 13px;
    }

    .stories header {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 32px;
    }

    .story-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .story-cards article {
        padding: 26px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    }

    .highlights {
        padding: 48px;
        border-radius: 32px;
        background: #fff;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
        border: 1px solid rgba(15, 23, 42, 0.05);
    }

    .highlights header {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 32px;
    }

    .highlight-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .highlight-grid article {
        padding: 28px;
        border-radius: 24px;
        background: rgba(15, 23, 42, 0.02);
        border: 1px solid rgba(15, 23, 42, 0.05);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .highlight-grid ul {
        margin: 0;
        padding-left: 18px;
        color: #475569;
        line-height: 1.5;
    }

    .icon-pill {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: rgba(37, 99, 235, 0.12);
        display: grid;
        place-items: center;
        font-size: 1.4rem;
    }

    .mobile-ready {
        margin-top: 64px;
        padding: 48px;
        border-radius: 36px;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), #1e3a8a);
        color: #e2e8f0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }

    .mobile-copy p {
        color: rgba(226, 232, 240, 0.9);
    }

    .mobile-ready h2 {
        margin: 12px 0;
        font-size: clamp(1.9rem, 3vw, 2.8rem);
    }

    .mobile-points {
        margin: 20px 0;
        padding-left: 22px;
        color: rgba(226, 232, 240, 0.85);
        line-height: 1.6;
    }

    .app-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }

    .app-links .pill {
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        font-weight: 600;
    }

    </style><style>.device-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .device-cards article {
        background: rgba(15, 23, 42, 0.35);
        border: 1px solid rgba(248, 250, 252, 0.15);
        border-radius: 28px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .device-cards p,
    .device-cards ul {
        color: rgba(226, 232, 240, 0.9);
    }

    .device-cards ul {
        margin: 0;
        padding-left: 18px;
        line-height: 1.5;
    }

    .screens {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .screens div {
        flex: 1 1 120px;
        background: rgba(15, 23, 42, 0.6);
        border-radius: 20px;
        padding: 14px;
    }

    .screens .label {
        display: block;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(226, 232, 240, 0.7);
    }

    .screens strong {
        font-size: 1.2rem;
    }

    .story-cards span {
        display: block;
        margin-top: 16px;
        font-weight: 600;
        color: #2563eb;
    }

    .cta {
        background: #0f172a;
        color: #e2e8f0;
        border-radius: 32px;
        padding: 48px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .cta h2 {
        margin-bottom: 12px;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }

    .cta-actions {
        display: flex;
        gap: 16px;
    }

    @media (max-width: 1100px) {
        .faq-minimal {
            padding: 20px;
        }
    }


    @media (max-width: 768px) {
        .top-nav {
            flex-direction: column;
            gap: 16px;
        }

        .content {
            padding: 0 20px;
        }

        .top-nav nav {
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .hero {
            padding: 26px;
            grid-template-columns: 1fr;
        }

        .highlights,
        .mobile-ready {
            padding: 32px;
        }

        .mobile-ready {
            grid-template-columns: 1fr;
        }

        .about {
            padding: 32px;
        }

        .stat-row {
            flex-direction: column;
        }

        .cta {
            flex-direction: column;
            text-align: center;
        }

        .cta-actions {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .hero-copy {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .hero-copy h1 {
            font-size: clamp(2rem, 8vw, 2.8rem);
            margin-inline: auto;
            max-width: 20ch;
        }

        .hero-copy .lead {
            font-size: 0.98rem;
            margin-inline: auto;
            max-width: 28ch;
        }

        .hero-cta {
            justify-content: center;
        }

        .hero-stats {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .hero-stats article {
            max-width: 260px;
            margin: 0 auto;
        }

        .hero {
            padding: 22px 16px;
        }

        .highlights,
        .mobile-ready {
            padding: 24px 18px;
            border-radius: 24px;
        }

        .highlight-grid,
        .device-cards {
            grid-template-columns: 1fr;
        }

        .about {
            padding: 24px 18px;
        }

        .about-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .about-card,
        .about-card.accent {
            padding: 22px;
        }

        .stat-row {
            flex-direction: column;
        }

        .app-links {
            flex-direction: column;
            align-items: flex-start;
        }

        .screens {
            flex-direction: column;
        }

        .hero-copy .lead {
            max-width: 100%;
        }

        .hero-stats article {
            text-align: center;
        }
    }

    .footer-contact {
        font-size: 12px;
    }

    .footer-contact a {
        text-decoration: none;
    }

    .faq-minimal {
        max-width: 1100px;
    }

    /* =========================
      INDIA FOCUS SECTION
    ========================= */
    .india-focus {
        padding: 80px 20px;
        background: linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
        text-align: center;
    }

    .india-focus h2 {
        font-size: 32px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .india-focus p {
        max-width: 900px;
        margin: 0 auto;
        font-size: 18px;
        line-height: 1.7;
        color: #555;
    }

    /* Optional highlight badge */
    .india-focus::before {
        content: "🇮🇳 Made for India";
        display: inline-block;
        margin-bottom: 25px;
        padding: 6px 14px;
        background: #ffe9d6;
        color: #d35400;
        font-size: 14px;
        font-weight: 600;
        border-radius: 20px;
    }

    /* =========================
   COMPARISON SECTION
========================= */

    .comparison {
        padding: 80px 20px;
        background: #f8f9fc;
        text-align: center;
        border-radius: 32px;
    }

    .comparison h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #1a1a1a;
    }

    /* Table Styling */

    .comparison table {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        border-collapse: collapse;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .comparison th {
        background: #2c3e50;
        color: #ffffff;
        font-weight: 600;
        padding: 16px;
        font-size: 16px;
    }

    .comparison td {
        padding: 16px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
        color: #444;
    }

    .comparison tr:last-child td {
        border-bottom: none;
    }

    /* Highlight Elite Billing column */
    .comparison td:nth-child(2) {
        font-weight: 600;
        color: #2e7d32;
    }

    /* Hover effect */
    .comparison tr:hover {
        background: #f3f6ff;
    }

    /* Responsive Table */
    @media (max-width: 768px) {

        .comparison table,
        .comparison thead,
        .comparison tbody,
        .comparison th,
        .comparison td,
        .comparison tr {
            display: block;
        }

        .comparison tr {
            margin-bottom: 20px;
        }

        .comparison th {
            display: none;
        }

        .comparison td {
            text-align: left;
            padding-left: 50%;
            position: relative;
        }

        .comparison td::before {
            content: attr(data-label);
            position: absolute;
            left: 15px;
            font-weight: 600;
            color: #333;
        }
    }

    .features-section {
        border-radius: 32px;
        padding: 60px 20px;
        background-color: #f8fafc;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .feature-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        transition: all 0.2s ease;
    }

    .feature-card:hover {
        border-color: #0ea5e9;
        background-color: #f0f9ff;
    }

    /* THE SIDE-BY-SIDE MAGIC */
    .feature-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .feature-header .icon {
        font-size: 1.5rem;
        background: #f1f5f9;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .feature-header h4 {
        margin: 0;
        font-size: 1.1rem;
        color: #1e293b;
        font-weight: 600;
    }

    .feature-card p {
        margin: 0;
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.4;
        padding-left: 57px;
        /* Matches icon width (45px) + gap (12px) to align text under title */
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-color: #0ea5e9;
    }

    /* Responsive adjust for mobile */
    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 1.8rem;
        }
    }

    .elite-benefits-section {
        padding: 60px 20px;
        line-height: 1.6;
        background: white;
        border-radius: 30px;
    }

    .elite-benefits-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
    }

    .elite-benefits-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .elite-benefits-badge {
        display: inline-block;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .elite-benefits-intro {
        font-size: 1.1rem;
    }

    .elite-benefits-category {
        max-width: 1100px;
        margin: 0 auto 40px;
    }

    .elite-benefits-category-name {
        border-left: 4px solid #1a237e;
        padding-left: 15px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .elite-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .elite-benefits-card {
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e0e0e0;
    }

    .elite-benefits-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }

    .elite-benefits-item-title {
        margin-top: 0;
        margin-bottom: 12px;
    }

    .elite-benefits-text {
        font-size: 0.95rem;
        margin: 0;
        color: #546e7a;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .elite-benefits-title {
            font-size: 1.8rem;
        }

        .elite-benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    .faq-minimal,
    .free-billing-software-tutorial {
        margin-top: 64px;
        padding: 48px;
        background: #fff;
        border-radius: 32px;
        box-shadow: 0 16px 48px rgba(37, 99, 235, 0.07);
        border: 1px solid #e0e7ff;
    }

    .industry-section {
        padding: 80px 20px;
        background: #f8fafc;
        text-align: center;
        border-radius: 32px;
    }

    .industry-section header {
        max-width: 800px;
        margin: 0 auto 50px;
    }

    .industry-section h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1e293b;
    }

    .industry-section header p {
        font-size: 16px;
        color: #64748b;
        line-height: 1.6;
    }

    .industry-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        max-width: 1100px;
        margin: auto;
    }

    .industry-grid article {
        background: white;
        padding: 25px 20px;
        border-radius: 10px;
        text-align: left;
        border: 1px solid #e5e7eb;
        transition: all 0.25s ease;
    }

    .industry-grid article:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .industry-grid h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #0f172a;
    }

    .industry-grid p {
        font-size: 14px;
        color: #475569;
        line-height: 1.5;
    }