﻿        .calculator-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--surface-50), var(--surface-white));
        }

        .calc-container {
            background: var(--surface-white);
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--surface-200);
            overflow: hidden;
            display: grid;
            grid-template-columns: 3fr 2fr;
        }

        .calc-left {
            padding: 48px;
        }

        .calc-right {
            background: var(--brand-primary);
            padding: 48px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .calc-right::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.4), transparent 50%);
            top: -50%;
            right: -50%;
            pointer-events: none; /* Allows clicks to pass through */
            z-index: 0;           /* Keeps it behind the content */
        }

        .slider-wrapper {
            margin-bottom: 40px;
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 16px;
        }

        .slider-label {
            font-weight: 600;
            color: var(--text-900);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .slider-sublabel {
            font-size: 0.75rem;
            color: var(--text-400);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .slider-value-display {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-secondary);
            background: var(--surface-50);
            padding: 8px 16px;
            border-radius: 8px;
            border: 1px solid var(--surface-200);
        }

        input[type=range] {
            -webkit-appearance: none;
            width: 100%;
            background: transparent;
        }

        input[type=range]:focus {
            outline: none;
        }

        input[type=range]::-webkit-slider-runnable-track {
            width: 100%;
            height: 8px;
            cursor: pointer;
            background: var(--surface-200);
            border-radius: 4px;
        }

        input[type=range]::-webkit-slider-thumb {
            height: 24px;
            width: 24px;
            border-radius: 50%;
            background: var(--surface-white);
            border: 3px solid var(--brand-secondary);
            cursor: pointer;
            -webkit-appearance: none;
            margin-top: -8px;
            box-shadow: var(--shadow-sm);
            transition: 0.2s;
        }

        input[type=range]::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: var(--shadow-md);
        }

        .range-track {
            position: relative;
            height: 8px;
            background: var(--surface-200);
            border-radius: 4px;
            margin-top: -12px;
            z-index: -1;
            pointer-events: none;
        }

        .range-fill {
            position: absolute;
            height: 100%;
            background: var(--brand-secondary);
            border-radius: 4px;
            left: 0;
            top: 0;
        }

        .result-group {
            position: relative;
            z-index: 2;
            margin-bottom: 32px;
        }

        .result-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .result-main {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .result-sub {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .breakdown-bar {
            width: 100%;
            height: 12px;
            border-radius: 6px;
            display: flex;
            overflow: hidden;
            margin-top: 16px;
            background: rgba(255, 255, 255, 0.1);
        }

        .bar-principal {
            height: 100%;
            background: var(--brand-accent);
            transition: width 0.3s ease;
        }

        .bar-interest {
            height: 100%;
            background: var(--brand-gold);
            transition: width 0.3s ease;
        }

        .breakdown-legend {
            display: flex;
            justify-content: space-between;
            margin-top: 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .legend-item::before {
            content: '';
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 6px;
        }

        .legend-prin::before {
            background: var(--brand-accent);
        }

        .legend-int::before {
            background: var(--brand-gold);
        }

        .features {
            padding: 100px 0;
            background: var(--surface-white);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .f-card {
            padding: 40px 32px;
            background: var(--surface-50);
            border-radius: 20px;
            border: 1px solid var(--surface-200);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .f-card:hover {
            transform: translateY(-8px);
            background: var(--surface-white);
            box-shadow: var(--shadow-lg);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .f-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: var(--shadow-sm);
            margin-bottom: 24px;
            color: var(--brand-secondary);
        }

        .f-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .f-card p {
            font-size: 0.95rem;
        }

        .journey {
            padding: 100px 0;
            background: var(--surface-50);
            position: relative;
            overflow: hidden;
        }

        .journey h2 {
            color: var(--text-900);
        }

        .journey .subtitle {
            color: var(--text-600);
        }

        .process-cards {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 0;
            margin-top: 64px;
        }

        .p-card {
            background: transparent;
            padding: 20px 32px;
            position: relative;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
            flex: 1;
            max-width: 300px;
        }

        .p-card:hover {
            transform: translateY(-6px);
        }

        .p-icon-wrap {
            position: relative;
            margin-bottom: 8px;
        }

        .p-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: var(--shadow-md);
        }

        .p-icon.blue {
            background: var(--brand-primary);
        }

        .p-icon.teal {
            background: var(--brand-secondary);
        }

        .p-icon.green {
            background: #047857;
        }

        .p-step-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 28px;
            height: 28px;
            background: var(--brand-secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            border: 3px solid var(--surface-50);
            z-index: 2;
        }

        .p-card h3 {
            color: var(--text-900);
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0;
        }

        .p-card p {
            color: var(--text-600);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .p-arrow {
            display: flex;
            align-items: center;
            padding-top: 40px;
            color: var(--text-400);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .journey-cta {
            text-align: center;
            margin-top: 56px;
        }

        .info-section {
            padding: 100px 0;
            background: var(--surface-50);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 48px;
        }

        .info-box {
            background: var(--surface-white);
            border-radius: 20px;
            border: 1px solid var(--surface-200);
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }

        .info-box h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--surface-100);
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            position: relative;
            padding-left: 36px;
            margin-bottom: 20px;
            font-weight: 500;
            color: var(--text-900);
        }

        .info-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: -2px;
            width: 24px;
            height: 24px;
            background: #ECFDF5;
            color: var(--brand-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .info-list span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-600);
            font-weight: 400;
            margin-top: 4px;
        }

        footer {
            background: white;
            padding: 80px 0 40px 0;
            border-top: 1px solid var(--surface-200);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .f-col h3,
        .f-col h4 {
            font-size: 1rem;
            margin-bottom: 24px;
            color: var(--text-900);
        }

        .f-col ul {
            list-style: none;
        }

        .f-col ul li {
            margin-bottom: 12px;
        }

        .f-col ul a {
            color: var(--text-600);
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.2s;
        }

        .f-col ul a:hover {
            color: var(--brand-primary);
        }

        .rinex-gstin-pill {
            display: inline-flex;
            align-items: center;
            margin-top: 12px;
            padding: 7px 12px;
            border-radius: 999px;
            border: 1px solid rgba(230, 0, 0, 0.24);
            background: #fff5f5;
            color: var(--text-900);
            font-size: 0.84rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            line-height: 1.4;
        }

        .f-disclaimer {
            padding-top: 32px;
            border-top: 1px solid var(--surface-200);
            font-size: 0.9rem;
            color: var(--text-600);
            text-align: left;
            margin-bottom: 24px;
        }

        .f-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-600);
        }

        .reviews-section {
            padding: 100px 0;
            background: var(--surface-white);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .review-card {
            padding: 32px;
            border-radius: 24px;
            background: var(--surface-50);
            border: 1px solid var(--surface-100);
            position: relative;
            transition: var(--transition-smooth);
        }

        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(37, 99, 235, 0.15);
        }

        .review-quote {
            position: absolute;
            top: 24px;
            right: 28px;
            font-size: 3rem;
            color: var(--surface-200);
            line-height: 1;
            font-family: Georgia, serif;
        }

        .review-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .review-stars span {
            color: #F59E0B;
            font-size: 1.1rem;
        }

        .review-text {
            color: var(--text-600);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 28px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            box-shadow: var(--shadow-sm);
        }

        .review-name {
            font-weight: 700;
            color: var(--text-900);
            font-size: 0.95rem;
        }

        .review-role {
            font-size: 0.8rem;
            color: var(--text-400);
            font-weight: 500;
        }

        .faq-section {
            padding: 100px 0;
            background: var(--surface-50);
        }

        .faq-container {
            max-width: 720px;
            margin: 48px auto 0;
        }

        .faq-item {
            background: var(--surface-white);
            border-radius: 16px;
            border: 1px solid var(--surface-100);
            box-shadow: var(--shadow-sm);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-900);
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--surface-50);
        }

        .faq-chevron {
            font-size: 1.2rem;
            color: var(--text-400);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-600);
        }

        /* Initial styling for the mobile floating menu (hidden on desktop) */
