/**
 * ITRTax.in - Global Stylesheet
 * Shared styles across all pages
 */

/* ══════════════════════════════════════════
   CSS VARIABLES
   ══════════════════════════════════════════ */
:root {
    --bg: #F4F6FB;
    --white: #FFFFFF;
    --blue: #1C3B6E;
    --blue2: #2A5298;
    --blue-lt: #EBF0FA;
    --gold: #B07D3A;
    --gold-lt: #F5ECD9;
    --teal: #1F8A7D;
    --teal-lt: #E0F4F1;
    --text: #1A2340;
    --muted: #6E7E99;
    --border: #DDE3F0;
    --card: #FFFFFF;
    --shadow: 0 2px 16px rgba(28, 59, 110, 0.07);
    --shadow-h: 0 8px 32px rgba(28, 59, 110, 0.13);
    --green: #1A7A4A;
    --green-lt: #E0F5EC;
    --orange: #C05A10;
    --orange-lt: #FEF0E0;
}

/* ══════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Figtree', sans-serif;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.7;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
    background: var(--blue2) !important;
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28, 59, 110, 0.55);
    z-index: 999;
    backdrop-filter: blur(4px);
}

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

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72vw;
    max-width: 280px;
    background: var(--white);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: -8px 0 32px rgba(28, 59, 110, 0.15);
}

.mobile-menu-inner .close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--muted);
    margin-bottom: 16px;
}

.mobile-menu-inner a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: block;
}

.mobile-menu-inner a.mob-cta {
    background: var(--blue);
    color: #fff;
    border-radius: 9px;
    padding: 12px 20px;
    text-align: center;
    border: none;
    margin-top: 8px;
    font-weight: 700;
}

/* Breadcrumb */
.breadcrumb {
    padding: 10px 5%;
    font-size: 13px;
    color: var(--muted);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--blue);
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
    padding: 72px 5% 80px;
    background: linear-gradient(160deg, #EDF1FB 0%, #F4F6FB 60%, #EAF4F2 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 59, 110, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 5px 14px 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 22px;
    box-shadow: var(--shadow);
    animation: fadeUp 0.5s ease both;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2.2s infinite;
}

.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px, 5.2vw, 64px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -1px;
    max-width: 700px;
    color: var(--blue);
    animation: fadeUp 0.5s 0.08s ease both;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    margin-top: 18px;
    max-width: 480px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    animation: fadeUp 0.5s 0.16s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    animation: fadeUp 0.5s 0.22s ease both;
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-p {
    background: var(--blue);
    color: #fff;
    padding: 12px 26px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(28, 59, 110, 0.22);
}

.btn-p:hover {
    background: var(--blue2);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(28, 59, 110, 0.3);
}

.btn-o {
    color: var(--blue);
    padding: 12px 26px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    background: var(--white);
    transition: all 0.2s;
}

.btn-o:hover {
    border-color: var(--blue);
    background: var(--blue-lt);
}

.btn-white {
    background: #fff;
    color: var(--blue);
    padding: 12px 28px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    background: var(--blue-lt);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 5%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    margin-top: -28px;
    animation: fadeUp 0.5s 0.3s ease both;
}

.stat-item {
    padding: 22px 20px;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--blue-lt);
}

.stat-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 400;
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section {
    padding: 64px 5%;
}

.sec-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

.sec-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 32px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.sec-title span {
    color: var(--gold);
}

/* ══════════════════════════════════════════
   TOOL CARDS
   ══════════════════════════════════════════ */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    gap: 14px;
}

.tools-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tool-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow);
}

.tool-card:hover {
    border-color: rgba(28, 59, 110, 0.28);
    transform: translateY(-4px);
    box-shadow: var(--shadow-h);
}

.tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.tool-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--blue);
}

.tool-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 400;
}

.tool-arrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.tool-card:hover .tool-arrow {
    gap: 8px;
}

.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FEE8E8;
    color: #C44;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
}

.badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--teal-lt);
    color: var(--teal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
}

.badge-soon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange-lt);
    color: var(--orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Coming Soon Tool Card */
.tool-card-soon {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0.75;
    cursor: default;
}

.tool-card-soon:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.tool-card-soon .tool-icon {
    filter: grayscale(30%);
}

.tool-card-soon .tool-arrow {
    color: var(--orange);
}

/* Tool Tabs */
.tool-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ttab {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--card);
    color: var(--muted);
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    transition: all 0.2s;
}

.ttab:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.ttab.on {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* Secondary Tab Style (for category filters) */
.ttab2 {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--muted);
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    transition: all 0.2s;
}

.ttab2:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.ttab2.on {
    background: var(--teal-lt);
    color: var(--teal);
    border-color: var(--teal);
}

.seeall-big {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(28, 59, 110, 0.2);
    transition: all 0.2s;
}

.seeall-big:hover {
    background: var(--blue2);
}

/* ══════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════ */
.blog-wrap {
    padding: 52px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.blog-inner {
    padding: 0 5%;
    margin-bottom: 24px;
}

.track-outer {
    position: relative;
}

.track-outer::before,
.track-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.track-outer::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.track-outer::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white), transparent);
}

.blog-track {
    display: flex;
    gap: 16px;
    animation: scrollTrack 40s linear infinite;
    width: max-content;
}

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

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.blog-card {
    width: 290px;
    flex-shrink: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.22s;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    border-color: rgba(28, 59, 110, 0.22);
    box-shadow: var(--shadow-h);
    background: var(--white);
}

.blog-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.blog-title {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 12px;
    color: var(--blue);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
}

.blog-rd {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
}

/* ══════════════════════════════════════════
   DATES SECTION
   ══════════════════════════════════════════ */
.dates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.date-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: all 0.22s;
}

.date-card:hover {
    border-color: rgba(28, 59, 110, 0.22);
    transform: translateX(3px);
    box-shadow: var(--shadow-h);
}

.date-pill {
    min-width: 58px;
    text-align: center;
    background: var(--blue-lt);
    border: 1px solid rgba(28, 59, 110, 0.1);
    border-radius: 9px;
    padding: 8px 6px;
    flex-shrink: 0;
}

.date-day {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    color: var(--blue);
    line-height: 1;
}

.date-mon {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-top: 2px;
}

.date-info {
    flex: 1;
    min-width: 0;
}

.date-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--text);
}

.date-sub {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.s-upcoming { background: var(--teal-lt); color: var(--teal); }
.s-urgent { background: #FEE8E8; color: #C44; }
.s-done { background: #F0F2F5; color: #999; }

/* ══════════════════════════════════════════
   CTA BAR
   ══════════════════════════════════════════ */
.cta-bar {
    margin: 0 5% 70px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
    border-radius: 18px;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28, 59, 110, 0.22);
}

.cta-bar::before {
    content: '\20B9';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    line-height: 1;
}

.cta-bar h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.cta-bar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 44px 5% 24px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-brand p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 250px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 52px;
}

.fcol h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.fcol ul {
    list-style: none;
}

.fcol li {
    margin-bottom: 9px;
}

.fcol a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    font-weight: 400;
}

.fcol a:hover {
    color: var(--blue);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ══════════════════════════════════════════
   PAGE COMPONENTS
   ══════════════════════════════════════════ */
.wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 5% 72px;
}

.page-tag {
    display: inline-block;
    background: var(--teal-lt);
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lead {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 640px;
}

.highlight-box {
    background: var(--teal-lt);
    border: 1px solid rgba(31, 138, 125, 0.2);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--teal);
    font-weight: 500;
    line-height: 1.65;
}

.warning-box {
    background: var(--orange-lt);
    border: 1px solid rgba(192, 90, 16, 0.2);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--orange);
    font-weight: 500;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .stats-bar { grid-template-columns: 1fr 1fr; margin-top: -20px; }
    .tools-grid { grid-template-columns: 1fr 1fr; }
    .tools-grid3 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .dates-grid { grid-template-columns: 1fr; }
    .cta-bar { flex-direction: column; padding: 28px; }
    .footer-row { flex-direction: column; gap: 28px; }
    .footer-links { flex-wrap: wrap; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .tool-tabs { gap: 6px; }
    .ttab { padding: 7px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
    nav { padding: 0 4%; }
    .hero { padding: 44px 4% 60px; }
    .hero h1 { font-size: clamp(28px, 8vw, 40px); letter-spacing: -1px; }
    .hero-sub { font-size: 14px; line-height: 1.65; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-p, .btn-o { width: 100%; text-align: center; padding: 15px 20px; font-size: 15px; min-height: 52px; }
    .stats-bar { grid-template-columns: 1fr 1fr; margin: 0 4%; margin-top: -16px; gap: 8px; }
    .stat-val { font-size: 22px; }
    .stat-item { padding: 14px 12px; }
    .section { padding: 40px 4%; }
    .sec-tag { font-size: 10px; }
    .sec-title { font-size: 22px; margin-bottom: 20px; }
    .tools-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tools-grid3 { grid-template-columns: 1fr; }
    .tool-card { padding: 16px 12px; border-radius: 14px; }
    .tool-name { font-size: 13px; margin-bottom: 5px; }
    .tool-desc { font-size: 11px; margin-bottom: 10px; line-height: 1.5; }
    .cta-bar { margin: 0 4% 44px; padding: 22px 18px; border-radius: 16px; }
    .cta-bar h2 { font-size: 20px; }
    .cta-bar p { font-size: 13px; }
    .btn-white { padding: 13px 22px; font-size: 14px; }
    .footer-links { gap: 20px; }
    .blog-card { width: 240px; padding: 14px; }
    .blog-title { font-size: 14px; }
    footer { padding: 28px 4% 20px; }
    .footer-brand p { font-size: 12px; }
    .fcol h4 { font-size: 10px; }
    .fcol a { font-size: 12px; }
}
