/*
Theme Name: TaxPandit Theme
Theme URI: https://taxpandit.in
Author: TaxPandit Dev
Description: Custom "Fintech Grade" theme for TaxPandit.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxpandit
*/

/* TaxPandit V10 - Fintech Grade Design System */

/* 1. TOKENS & TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary-blue: #0052CC;
    /* ClearTax Blue */
    --primary-hover: #0747A6;
    --primary-light: #DEEBFF;
    --accent-green: #00875A;
    --accent-orange: #FF991F;
    --neutral-dark: #091E42;
    --neutral-text: #505F79;
    /* Readable Gray */
    --neutral-light: #EBECF0;
    --bg-white: #FFFFFF;
    --bg-offwhite: #FAFBFC;

    /* Spacing */
    --section-padding: 100px 0;
    /* Generous Whitespace */
    --card-padding: 32px;

    /* Shapes */
    --radius-card: 12px;
    --radius-btn: 50px;
    /* Pill Buttons */
    --shadow-soft: 0 4px 12px rgba(0, 82, 204, 0.10);
    /* Fintech Blue Shadow */
    --shadow-hover: 0 8px 24px rgba(0, 82, 204, 0.15);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--neutral-text);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--neutral-dark);
    margin: 0 0 16px 0;
    font-weight: 700;
}

h1 {
    font-size: 48px;
    letter-spacing: -1px;
    line-height: 1.1;
}

h2 {
    font-size: 36px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 2. BUTTONS & UTILITIES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    height: 48px;
    /* Min Height */
    padding: 0 32px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 82, 204, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 82, 204, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-white:hover {
    background: var(--primary-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-offwhite);
}

/* 3. HEADER & NAV */
.navbar {
    background: white;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* 4. HERO SECTION */
.hero {
    background: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 100%);
    padding: 100px 0 80px;
    text-align: left;
}

.hero-box {
    max-width: 680px;
}

.subheadline {
    font-size: 18px;
    color: var(--neutral-text);
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 5. STATS BAR */
.stats-bar {
    padding: 60px 0;
    border-bottom: 1px solid var(--neutral-light);
}

.stat-card {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 48px;
    /* Big Numbers */
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--neutral-text);
}

/* 6. SERVICE CARDS (Revenue First) */
.card-service {
    background: white;
    border-radius: var(--radius-card);
    padding: var(--card-padding);
    border: 1px solid var(--neutral-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.card-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.icon-large {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bg-blue {
    background: var(--primary-light);
    color: var(--primary-blue);
}

.bg-green {
    background: #E3FCEF;
    color: var(--accent-green);
}

.bg-orange {
    background: #FFF0B3;
    color: var(--accent-orange);
}

.card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-tag {
    font-size: 14px;
    font-weight: 600;
    background: var(--bg-offwhite);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: var(--neutral-dark);
}

/* 7. HOW IT WORKS */
.step-circle {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.3);
}

/* 8. FOOTER */
.footer {
    background: #091E42;
    /* ClearTax Dark Navy */
    color: #B3BAC5;
    padding: 80px 0 40px;
}

.footer h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero {
        text-align: center;
        padding: 60px 0;
    }

    .hero-box {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}