@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ===========================
   Accurate Hisab — Common CSS
   Keep these classes for future pages
   =========================== */

:root {
    --ah-bg-0: #f6faff;
    --ah-bg-1: #eef5ff;
    --ah-card: rgba(255, 255, 255, 0.88);
    --ah-stroke: rgba(120, 160, 235, 0.28);

    --ah-text: #0f172a;
    --ah-muted: rgba(15, 23, 42, 0.65);

    --ah-primary: #2f6fed;
    --ah-primary-2: #4aa3ff;

    --ah-shadow: 0 18px 60px rgba(22, 60, 120, 0.12);
    --ah-radius: 22px;

    --ah-font: 'Plus Jakarta Sans', -apple-system, "Segoe UI", sans-serif;
    --ah-font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--ah-font);
    color: var(--ah-text);
    background: linear-gradient(180deg, var(--ah-bg-1), var(--ah-bg-0));
}

/* ===== Background (subtle animated) ===== */
.ah-body {
    position: relative;
    /* overflow-x on body is moved to html to prevent Safari clipping fixed children */
}

html {
    overflow-x: hidden;
}

.ah-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ah-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47, 111, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 111, 237, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.9;
}

.ah-bg__float {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.22;
    background: radial-gradient(circle at 30% 30%, var(--ah-primary-2), transparent 60%);
    animation: ahFloat 10s ease-in-out infinite;
}

.ah-bg__float--1 {
    top: -120px;
    left: -120px;
}

.ah-bg__float--2 {
    bottom: -160px;
    right: -140px;
    animation-duration: 12s;
}

.ah-bg__float--3 {
    top: 30%;
    right: 18%;
    width: 320px;
    height: 320px;
    animation-duration: 14s;
    opacity: 0.16;
}

@keyframes ahFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(18px, -14px, 0) scale(1.04);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

/* ===== Layout ===== */
.ah-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 22px;
    gap: 18px;
}

.ah-accent {
    color: var(--ah-primary);
}

/* Buttons (keep your existing classes) */
.ah-btn--ghost2 {
    background: rgba(255, 255, 255, 0.60);
    border: 1px solid rgba(120, 160, 235, 0.32);
    color: rgba(15, 23, 42, 0.82);
    box-shadow: 0 10px 24px rgba(22, 60, 120, 0.06);
}

.ah-btn--ghost2:hover {
    transform: translateY(-1px);
}

/* Slight premium shadow for primary */
.ah-btn--primary {
    box-shadow: 0 16px 42px rgba(47, 111, 237, 0.18);
}

/* Mobile */
/* old 940px block removed */
.ah-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
    white-space: nowrap;
}

.ah-btn--primary {
    color: #fff;
    background: linear-gradient(90deg, var(--ah-primary), var(--ah-primary-2));
    box-shadow: 0 10px 22px rgba(47, 111, 237, 0.22);
}

.ah-btn--primary:hover {
    transform: translateY(-1px);
}

.ah-main {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* ===== Page Card (shared) ===== */
.ah-card {
    width: min(980px, 100%);
    background: var(--ah-card);
    border: 1px solid var(--ah-stroke);
    border-radius: var(--ah-radius);
    box-shadow: var(--ah-shadow);
    backdrop-filter: blur(10px);
    padding: 26px;
}

.ah-title {
    margin: 0;
    font-size: 34px;
    letter-spacing: 0.4px;
}

.ah-subtitle {
    margin: 8px 0 0;
    color: var(--ah-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ah-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--ah-stroke);
    background: rgba(47, 111, 237, 0.06);
    font-weight: 800;
    color: rgba(47, 111, 237, 0.92);
    letter-spacing: 0.8px;
}

.ah-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 18px;
}

/* Old footer stub removed — full footer styles below */

/* old 860px block removed — handled in navbar section */

/* ===========================
   Accounting background elements (more visible)
   =========================== */

.ah-bg__icons {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    /* increased visibility */
}

.ah-ico {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 22px;
    border: 1px solid rgba(47, 111, 237, 0.22);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 60px rgba(22, 60, 120, 0.08);
    animation: ahIconDrift 14s ease-in-out infinite;
}

@keyframes ahIconDrift {
    0% {
        translate: 0 0;
    }

    50% {
        translate: 14px -10px;
    }

    100% {
        translate: 0 0;
    }
}

.ah-ico::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 16px;
    border: 1px dashed rgba(47, 111, 237, 0.24);
    opacity: 0.9;
}

/* -------- Positions (spread out) -------- */
.ah-ico--calc {
    top: 9%;
    left: 6%;
    transform: rotate(-8deg);
}

.ah-ico--invoice {
    top: 20%;
    left: 20%;
    transform: rotate(6deg);
    animation-duration: 16s;
}

.ah-ico--gst {
    top: 12%;
    right: 12%;
    width: 150px;
    height: 150px;
    transform: rotate(10deg);
    animation-duration: 18s;
}

.ah-ico--bank {
    top: 38%;
    right: 6%;
    transform: rotate(-6deg);
    animation-duration: 15s;
}

.ah-ico--chart {
    top: 58%;
    left: 7%;
    width: 160px;
    height: 160px;
    transform: rotate(8deg);
    animation-duration: 20s;
}

.ah-ico--receipt {
    top: 62%;
    right: 14%;
    width: 150px;
    height: 150px;
    transform: rotate(-8deg);
    animation-duration: 19s;
}

.ah-ico--coin {
    bottom: 10%;
    right: 8%;
    width: 120px;
    height: 120px;
    transform: rotate(10deg);
    animation-duration: 22s;
}

.ah-ico--file {
    bottom: 16%;
    left: 18%;
    transform: rotate(-5deg);
    animation-duration: 17s;
}

.ah-ico--pen {
    bottom: 34%;
    right: 26%;
    width: 120px;
    height: 120px;
    transform: rotate(12deg);
    animation-duration: 21s;
}

/* -------- Icon drawings (CSS only) -------- */

/* Calculator */
.ah-ico--calc::after {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 14px;
    background:
        linear-gradient(rgba(47, 111, 237, 0.28), rgba(47, 111, 237, 0.28)) 0 0 / 100% 12px no-repeat,
        radial-gradient(circle, rgba(47, 111, 237, 0.22) 48%, transparent 52%) 0 0 / 22px 22px repeat;
    opacity: 0.8;
}

/* Invoice (paper + lines) */
.ah-ico--invoice::after {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 14px;
    background:
        linear-gradient(rgba(47, 111, 237, 0.28), rgba(47, 111, 237, 0.28)) 0 0 / 55% 10px no-repeat,
        linear-gradient(rgba(47, 111, 237, 0.18), rgba(47, 111, 237, 0.18)) 0 26px / 100% 7px repeat-y;
    opacity: 0.8;
}

/* GST (stamp) */
.ah-ico--gst::after {
    content: "GST";
    position: absolute;
    inset: 26px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    letter-spacing: 3px;
    color: rgba(47, 111, 237, 0.70);
    border: 2px solid rgba(47, 111, 237, 0.26);
    background: rgba(47, 111, 237, 0.06);
    text-shadow: 0 8px 20px rgba(47, 111, 237, 0.18);
}

/* Bank (building) */
.ah-ico--bank::after {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(47, 111, 237, 0.20), rgba(47, 111, 237, 0.08)) 0 0 / 100% 100% no-repeat;
    opacity: 0.9;
    mask:
        /* roof */
        linear-gradient(#000 0 0) 0 10% / 100% 14% no-repeat,
        /* columns */
        linear-gradient(#000 0 0) 18% 30% / 10% 60% no-repeat,
        linear-gradient(#000 0 0) 36% 30% / 10% 60% no-repeat,
        linear-gradient(#000 0 0) 54% 30% / 10% 60% no-repeat,
        linear-gradient(#000 0 0) 72% 30% / 10% 60% no-repeat,
        /* base */
        linear-gradient(#000 0 0) 0 92% / 100% 10% no-repeat;
}

/* Chart */
.ah-ico--chart::after {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 12px;
    background:
        linear-gradient(rgba(47, 111, 237, 0.22), rgba(47, 111, 237, 0.22)) 0 100% / 100% 2px no-repeat,
        linear-gradient(rgba(47, 111, 237, 0.22), rgba(47, 111, 237, 0.22)) 0 0 / 2px 100% no-repeat,
        linear-gradient(90deg,
            rgba(47, 111, 237, 0.12) 0 25%,
            rgba(47, 111, 237, 0.24) 25% 50%,
            rgba(47, 111, 237, 0.16) 50% 75%,
            rgba(47, 111, 237, 0.28) 75% 100%) 0 100% / 100% 46% no-repeat;
    opacity: 0.9;
}

/* Receipt */
.ah-ico--receipt::after {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 14px;
    background:
        linear-gradient(rgba(47, 111, 237, 0.28), rgba(47, 111, 237, 0.28)) 0 0 / 65% 10px no-repeat,
        linear-gradient(rgba(47, 111, 237, 0.18), rgba(47, 111, 237, 0.18)) 0 26px / 100% 7px repeat-y;
    opacity: 0.75;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 84% 88%, 76% 100%, 68% 88%, 60% 100%, 52% 88%, 44% 100%, 36% 88%, 28% 100%, 20% 88%, 12% 100%, 0 88%);
}

/* Coin */
.ah-ico--coin::after {
    content: "₹";
    position: absolute;
    inset: 28px;
    border-radius: 999px;
    border: 2px solid rgba(47, 111, 237, 0.28);
    box-shadow: inset 0 0 0 12px rgba(47, 111, 237, 0.08);
    display: grid;
    place-items: center;
    font-weight: 1000;
    color: rgba(47, 111, 237, 0.70);
    opacity: 0.95;
}

/* File */
.ah-ico--file::after {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 14px;
    background:
        linear-gradient(rgba(47, 111, 237, 0.14), rgba(47, 111, 237, 0.14)) 0 26px / 100% 8px repeat-y;
    border: 2px solid rgba(47, 111, 237, 0.22);
    opacity: 0.85;
}

.ah-ico--file::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 16px;
    border: 1px dashed rgba(47, 111, 237, 0.24);
    opacity: 0.6;
}

/* Pen */
.ah-ico--pen::after {
    content: "";
    position: absolute;
    left: 38px;
    top: 36px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid rgba(47, 111, 237, 0.22);
    background:
        linear-gradient(135deg, rgba(47, 111, 237, 0.25), rgba(47, 111, 237, 0.06));
    transform: rotate(32deg);
    opacity: 0.9;
}

/* Floating glass boxes (more visible) */
.ah-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.72;
    /* increased visibility */
}

.ah-floatbox {
    position: absolute;
    width: 240px;
    border-radius: 18px;
    border: 1px solid rgba(120, 160, 235, 0.30);
    background: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 70px rgba(22, 60, 120, 0.12);
    padding: 12px;
    animation: ahFloatBox 16s ease-in-out infinite;
}

.ah-floatbox__head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 1000;
    color: rgba(47, 111, 237, 0.76);
    font-size: 12px;
}

.ah-floatbox__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.40);
}

.ah-floatbox__rows {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.ah-floatbox__rows span {
    height: 10px;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.12);
    position: relative;
    overflow: hidden;
}

.ah-floatbox__rows span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.22), transparent);
    translate: -60% 0;
    animation: ahShimmer 6s ease-in-out infinite;
}

@keyframes ahShimmer {
    0% {
        translate: -60% 0;
    }

    60% {
        translate: 60% 0;
    }

    100% {
        translate: 60% 0;
    }
}

.ah-floatbox__mini {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    margin-top: 12px;
    height: 54px;
}

.ah-floatbox__bar {
    flex: 1;
    border-radius: 10px;
    background: rgba(47, 111, 237, 0.14);
    animation: ahBars 4.2s ease-in-out infinite;
}

.ah-floatbox__bar:nth-child(1) {
    height: 22px;
}

.ah-floatbox__bar:nth-child(2) {
    height: 44px;
    animation-delay: .2s;
}

.ah-floatbox__bar:nth-child(3) {
    height: 30px;
    animation-delay: .4s;
}

.ah-floatbox__bar:nth-child(4) {
    height: 48px;
    animation-delay: .6s;
}

@keyframes ahBars {

    0%,
    100% {
        transform: scaleY(0.92);
    }

    50% {
        transform: scaleY(1.10);
    }
}

.ah-floatbox__lines {
    margin-top: 10px;
    display: grid;
    gap: 7px;
}

.ah-floatbox__lines i {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.12);
}

.ah-floatbox__lines i:nth-child(1) {
    width: 72%;
}

.ah-floatbox__lines i:nth-child(2) {
    width: 100%;
}

.ah-floatbox__lines i:nth-child(3) {
    width: 84%;
}

.ah-floatbox__lines i:nth-child(4) {
    width: 60%;
}

.ah-floatbox__lines i:nth-child(5) {
    width: 90%;
}

.ah-floatbox__chip {
    margin-top: 12px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(47, 111, 237, 0.20);
    background:
        radial-gradient(circle at 30% 30%, rgba(74, 163, 255, 0.28), transparent 55%),
        rgba(47, 111, 237, 0.08);
}

.ah-floatbox--a {
    top: 18%;
    left: 14%;
    animation-duration: 18s;
}

.ah-floatbox--b {
    top: 10%;
    right: 18%;
    width: 210px;
    animation-duration: 16s;
    animation-delay: -2s;
}

.ah-floatbox--c {
    bottom: 16%;
    left: 10%;
    width: 260px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.ah-floatbox--d {
    bottom: 18%;
    right: 18%;
    width: 190px;
    animation-duration: 22s;
    animation-delay: -3s;
}

@keyframes ahFloatBox {
    0% {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }

    50% {
        transform: translate3d(16px, -14px, 0) rotate(1deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }
}

/* ITR + GST badge tiles */
.ah-badge {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(120, 160, 235, 0.30);
    background: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
    font-weight: 1000;
    letter-spacing: 2px;
    color: rgba(47, 111, 237, 0.72);
    box-shadow: 0 18px 60px rgba(22, 60, 120, 0.10);
    animation: ahBadgeFloat 12s ease-in-out infinite;
}

.ah-badge--itr {
    top: 48%;
    left: 26%;
    animation-duration: 13s;
}

.ah-badge--gst {
    top: 44%;
    right: 30%;
    animation-duration: 15s;
}

@keyframes ahBadgeFloat {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(10px, -10px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {

    .ah-bg__float,
    .ah-ico,
    .ah-floatbox,
    .ah-floatbox__rows span::after,
    .ah-floatbox__bar,
    .ah-badge {
        animation: none !important;
    }
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */

/* ── Entrance animation ── */
@keyframes navbarDrop {
    0% {
        opacity: 0;
        transform: translateY(-16px) scale(.98);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes brandIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes navLinksIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes actionsIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Header shell ── */
.ah-header {
    position: sticky;
    top: 14px;
    z-index: 60;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 8px 10px 8px 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(120, 160, 235, .20);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 4px 8px rgba(22, 60, 120, .04),
        0 16px 48px rgba(22, 60, 120, .10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: navbarDrop .55s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: .05s;
    transition:
        top .25s ease,
        padding .25s ease,
        border-radius .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        transform .2s ease;
    will-change: transform;
}

.ah-header.is-sticky {
    top: 8px;
    padding: 6px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    border-color: rgba(120, 160, 235, .28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 2px 4px rgba(22, 60, 120, .04),
        0 20px 56px rgba(22, 60, 120, .14);
    backdrop-filter: blur(24px);
}

.ah-header.is-hidden {
    transform: translateY(-130%);
}


/* ── Brand ── */
.ah-brand-nav {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
    padding: 4px 6px;
    border-radius: 12px;
    animation: brandIn .5s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: .12s;
    transition: background .16s ease, transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

.ah-brand-nav:hover {
    background: rgba(47, 111, 237, .06);
    transform: scale(1.02);
}

.ah-brand-nav:active {
    transform: scale(.97);
}

/* Real logo image — left of brand name */
.ah-brand-nav__logo-img {
    height: 38px;
    width: auto;
    max-width: 44px;
    object-fit: cover;
    object-position: left center;
    display: block;
    flex-shrink: 0;
    border-radius: 8px;
    mix-blend-mode: multiply;
    transition: transform .22s cubic-bezier(.34, 1.56, .64, 1), opacity .18s ease;
}

.ah-brand-nav:hover .ah-brand-nav__logo-img {
    transform: scale(1.07) rotate(-3deg);
    opacity: .88;
}

.ah-header.is-sticky .ah-brand-nav__logo-img {
    height: 32px;
    max-width: 38px;
}

/* Mobile drawer logo image */
.ah-mob__logo-img {
    height: 32px;
    width: auto;
    max-width: 42px;
    object-fit: cover;
    object-position: left center;
    display: block;
    flex-shrink: 0;
    border-radius: 7px;
    mix-blend-mode: multiply;
}

/* Mobile drawer brand icon (old SVG class — kept for safety) */
.ah-mob__brand-icon {
    display: none;
}

.ah-brand-nav__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ah-brand-nav__name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #0f172a;
    white-space: nowrap;
    line-height: 1.1;
}

.ah-brand-nav__accent {
    color: #2f6fed;
}

.ah-brand-nav__sub {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, .38);
    line-height: 1;
}

.ah-header.is-sticky .ah-brand-nav__name {
    font-size: 16px;
}

.ah-header.is-sticky .ah-brand-nav__sub {
    display: none;
}

.ah-header.is-sticky .ah-brand-nav__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
}


/* ── Center nav pill ── */
.ah-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(47, 111, 237, .05);
    border: 1px solid rgba(120, 160, 235, .18);
    position: relative;
    animation: navLinksIn .5s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: .18s;
}

.ah-header.is-sticky .ah-nav {
    background: rgba(47, 111, 237, .06);
    border-color: rgba(120, 160, 235, .22);
}

/* Individual nav links */
.ah-nav__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: rgba(15, 23, 42, .60);
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s ease, background .15s ease;
}

.ah-nav__link:hover {
    color: #2f6fed;
    background: rgba(47, 111, 237, .06);
}

.ah-nav__link.is-active {
    color: #2f6fed;
    font-weight: 800;
}

/* ── Active page dot indicator ── */
.ah-nav__link.is-active::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f6fed, #4aa3ff);
    box-shadow: 0 0 8px rgba(47, 111, 237, .45);
    animation: navDotIn .3s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes navDotIn {
    from {
        width: 4px;
        opacity: 0;
    }

    to {
        width: 20px;
        opacity: 1;
    }
}

.ah-header.is-sticky .ah-nav__link {
    padding: 6px 13px;
    font-size: 13px;
}

/* Gliding white pill indicator */
.ah-nav__indicator {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: 80px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(120, 160, 235, .25);
    box-shadow: 0 2px 8px rgba(22, 60, 120, .08), 0 6px 18px rgba(22, 60, 120, .06);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition:
        left .2s cubic-bezier(.4, 0, .2, 1),
        width .2s cubic-bezier(.4, 0, .2, 1),
        opacity .15s ease;
}


/* ── Actions ── */
.ah-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    animation: actionsIn .5s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: .22s;
}

/* Social proof badge */
.ah-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px 5px 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(120, 160, 235, .2);
    cursor: default;
    user-select: none;
    transition: border-color .15s ease;
}

.ah-trust-badge:hover {
    border-color: rgba(120, 160, 235, .38);
}

.ah-trust-badge__avatars {
    display: flex;
}

.ah-trust-badge__avatars span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 7.5px;
    font-weight: 900;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .95);
    flex-shrink: 0;
    margin-left: -6px;
}

.ah-trust-badge__avatars span:first-child {
    margin-left: 0;
}

.ah-trust-badge__text {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(15, 23, 42, .58);
    white-space: nowrap;
}

/* Ghost button */
.ah-btn--ghost2 {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(120, 160, 235, .30);
    color: rgba(15, 23, 42, .80);
    box-shadow: 0 1px 3px rgba(22, 60, 120, .04);
    transition: all .18s ease;
}

.ah-btn--ghost2:hover {
    background: rgba(255, 255, 255, .98);
    border-color: rgba(47, 111, 237, .35);
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(22, 60, 120, .10);
}

/* Primary blue button */
.ah-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #2f6fed 0%, #4aa3ff 100%);
    border: 1px solid rgba(47, 111, 237, .15);
    box-shadow: 0 4px 14px rgba(47, 111, 237, .28);
    transition: all .18s ease;
}

.ah-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(47, 111, 237, .40);
    filter: brightness(1.06);
}

.ah-btn--primary:active {
    transform: translateY(0);
    filter: brightness(.97);
}

/* WhatsApp hover goes green */
.ah-btn--wa:hover {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    box-shadow: 0 6px 22px rgba(22, 163, 74, .32);
    border-color: rgba(22, 163, 74, .25);
}

/* Shrink buttons on sticky */
.ah-header.is-sticky .ah-btn {
    padding: 7px 12px;
    font-size: 12.5px;
}

.ah-header.is-sticky .ah-trust-badge {
    display: none;
}

/* ── Gliding indicator JS hook ── */
/* (script in header.html handles position calc) */


/* ── Tablet 861–1120px ── */
@media (min-width: 861px) and (max-width: 1120px) {
    .ah-trust-badge {
        display: none;
    }

    .ah-nav__link {
        padding: 7px 11px;
        font-size: 13px;
    }

    .ah-brand-nav__sub {
        display: none;
    }
}

/* ── Mobile ≤ 860px ── */
@media (max-width: 860px) {
    .ah-burger {
        display: flex !important;
    }

    .ah-nav.ah-nav--center {
        display: none !important;
    }

    .ah-actions {
        display: none !important;
    }

    .ah-mob {
        display: block !important;
    }

    .ah-header,
    .ah-header.is-sticky {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 8px 12px !important;
        border-radius: 16px !important;
        top: 8px !important;
        animation: none !important;
    }

    .ah-brand-nav__sub {
        display: none !important;
    }

    .ah-brand-nav__logo-img {
        height: 30px !important;
        max-width: 38px !important;
    }

    .ah-brand-nav__name {
        font-size: 16px !important;
    }

    .ah-shell {
        padding: 10px;
        gap: 10px;
    }
}

/* ── Mobile drawer brand ── */

.ah-mob__brand-name {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.025em;
    color: #0f172a;
    white-space: nowrap;
    line-height: 1;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

    .ah-header,
    .ah-brand-nav,
    .ah-nav,
    .ah-actions {
        animation: none !important;
    }
}


/* ══════════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════════ */
.ah-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    flex-shrink: 0;
    border-radius: 11px;
    border: 1px solid rgba(120, 160, 235, .3);
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background .15s, border-color .15s;
    z-index: 70;
}

.ah-burger:hover {
    background: rgba(255, 255, 255, .98);
    border-color: rgba(47, 111, 237, .35);
}

.ah-burger__bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #0f172a;
    transform-origin: center;
    transition: transform .26s ease, opacity .2s ease, width .2s ease;
    pointer-events: none;
}

.ah-burger.is-open .ah-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ah-burger.is-open .ah-burger__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.ah-burger.is-open .ah-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ══════════════════════════════════════════
   MOBILE DRAWER
   HTML IDs required by include.js:
     ahMob, ahMobBd, ahMobX
   CSS classes used in HTML:
     ah-mob__top, ah-mob__brand, ah-mob__x
     ah-mob__nav, ah-mob__lnk, ah-mob__lnk-ico,
     ah-mob__lnk-text, ah-mob__lnk-arr
     ah-mob__hr, ah-mob__btns, ah-mob__cta
     ah-mob__info, ah-mob__trust
   JS selects: .ah-mob__lnk  and  .ah-mob__btns .ah-btn
══════════════════════════════════════════ */

/* Fullscreen overlay container */
.ah-mob {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 9999;
    pointer-events: none;
    /* Prevent overflow-x:hidden from clipping fixed children */
    isolation: isolate;
}

.ah-mob.is-open {
    pointer-events: auto;
}

/* Semi-transparent backdrop */
.ah-mob__bd {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 50, .50);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .3s ease;
}

.ah-mob.is-open .ah-mob__bd {
    opacity: 1;
}

/* Slide-in panel from right */
.ah-mob__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    height: 100dvh;
    width: min(300px, 85vw);
    background: #f0f5ff;
    border-left: 1px solid rgba(47, 111, 237, .15);
    box-shadow: -16px 0 48px rgba(22, 60, 120, .22);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    /* Ensure z-index above everything */
    z-index: 10000;
}

.ah-mob.is-open .ah-mob__panel {
    transform: translateX(0);
}

/* Top bar: logo + close button */
.ah-mob__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid rgba(120, 160, 235, .18);
    flex-shrink: 0;
}

.ah-mob__brand {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* Close × button (id="ahMobX") */
.ah-mob__x {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid rgba(120, 160, 235, .25);
    background: rgba(255, 255, 255, .8);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, border-color .15s;
}

.ah-mob__x:hover {
    background: #fff;
    border-color: rgba(47, 111, 237, .3);
}

.ah-mob__x svg {
    pointer-events: none;
}

/* Nav links */
.ah-mob__nav {
    display: flex;
    flex-direction: column;
    padding: 10px 8px 0;
    gap: 0;
    flex-shrink: 0;
    /* never clip — all links must show */
    overflow: visible;
    height: auto;
}

/* Each link — class="ah-mob__lnk" required by include.js */
.ah-mob__lnk {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: background .14s, color .14s;
}

.ah-mob__lnk-ico {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.ah-mob__lnk-text {
    flex: 1;
    color: #0f172a;
    font-weight: 700;
}

.ah-mob__lnk-arr {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    color: rgba(15, 23, 42, .25);
    flex-shrink: 0;
    transition: transform .14s, color .14s;
    margin-left: auto;
}

.ah-mob__lnk:hover,
.ah-mob__lnk.is-active {
    background: rgba(47, 111, 237, .08);
    color: #2f6fed;
}

.ah-mob__lnk:hover .ah-mob__lnk-text,
.ah-mob__lnk.is-active .ah-mob__lnk-text {
    color: #2f6fed;
}

.ah-mob__lnk:hover .ah-mob__lnk-arr,
.ah-mob__lnk.is-active .ah-mob__lnk-arr {
    color: rgba(47, 111, 237, .5);
    transform: translateX(2px);
}

/* Divider line */
.ah-mob__hr {
    border: none;
    border-top: 1px solid rgba(120, 160, 235, .18);
    margin: 10px 14px;
    flex-shrink: 0;
}

/* CTA buttons container — JS closes drawer on .ah-mob__btns .ah-btn click */
.ah-mob__btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px;
    flex-shrink: 0;
}

/* Makes ah-btn fill full width in drawer */
.ah-mob__cta {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-radius: 11px !important;
    gap: 8px !important;
}

/* Contact info */
.ah-mob__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px 0;
    margin-top: auto;
    border-top: 1px solid rgba(120, 160, 235, .14);
    font-size: 12.5px;
    color: #64748b;
}

.ah-mob__info a {
    color: #2f6fed;
    text-decoration: none;
    font-weight: 600;
}

.ah-mob__info a:hover {
    text-decoration: underline;
}

/* Trust strip */
.ah-mob__trust {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 14px 22px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}


/* ══════════════════════════════════════════
   MOBILE RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* Tablet 861–1100: hide trust badge, shrink nav */
@media (min-width: 861px) and (max-width: 1100px) {
    .ah-trust-badge {
        display: none;
    }

    .ah-nav__link {
        padding: 7px 10px;
        font-size: 12.5px;
    }

    .ah-nav__ico {
        display: none;
    }
}

/* Mobile ≤ 860px */
@media (max-width: 860px) {
    .ah-burger {
        display: flex !important;
    }

    .ah-nav.ah-nav--center {
        display: none !important;
    }

    .ah-actions {
        display: none !important;
    }

    .ah-mob {
        display: block !important;
    }

    .ah-header,
    .ah-header.is-sticky {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 9px 12px !important;
        border-radius: 16px !important;
        top: 10px !important;
    }

    .ah-brand-nav__tagline {
        display: none !important;
    }

    .ah-brand-nav__mark {
        width: 32px !important;
        height: 32px !important;
    }

    .ah-shell {
        padding: 10px;
        gap: 10px;
    }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
    .ah-shell {
        padding: 8px;
        gap: 8px;
    }

    .ah-mob__panel {
        width: 92vw;
    }
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .ah-mob__panel {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ah-mob__panel {
        transition: none !important;
    }

    .ah-mob__bd {
        transition: none !important;
    }

    .ah-burger__bar {
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════════
   FLOATING SEASON BADGE
   Fixed bottom-right corner, always visible on load,
   no dismiss — reappears every page refresh
═══════════════════════════════════════════════ */
.ah-season-badge {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 8000;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px 10px 12px;
    border-radius: 18px;

    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(47, 111, 237, .22);
    box-shadow:
        0 4px 6px rgba(22, 60, 120, .06),
        0 16px 48px rgba(22, 60, 120, .18),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    /* Start off-screen below, slides up into view */
    transform: translateY(100px);
    opacity: 0;
    transition:
        transform .5s cubic-bezier(.16, 1, .3, 1),
        opacity .4s ease;
    pointer-events: none;

    /* subtle hover lift */
    cursor: default;
}

.ah-season-badge.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ah-season-badge:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 12px rgba(22, 60, 120, .08),
        0 24px 60px rgba(22, 60, 120, .22),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Pulsing green dot */
.ah-season-badge__pulse {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.ah-season-badge__pulse::before,
.ah-season-badge__pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.ah-season-badge__pulse::before {
    background: #22c55e;
    z-index: 1;
}

.ah-season-badge__pulse::after {
    background: rgba(34, 197, 94, .35);
    animation: seasonPing 1.8s ease-out infinite;
}

@keyframes seasonPing {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    70% {
        transform: scale(2.4);
        opacity: 0;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* Text block */
.ah-season-badge__body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ah-season-badge__label {
    font-size: 13px;
    font-weight: 800;
    color: var(--ah-text);
    letter-spacing: -.01em;
    white-space: nowrap;
    line-height: 1.2;
}

.ah-season-badge__sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--ah-muted);
    white-space: nowrap;
    line-height: 1;
}

/* CTA link */
.ah-season-badge__cta {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ah-primary), var(--ah-primary-2));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(47, 111, 237, .3);
    transition: filter .15s, transform .15s, box-shadow .15s;
    flex-shrink: 0;
}

.ah-season-badge__cta:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(47, 111, 237, .4);
}

/* Mobile — move to bottom-center, smaller */
@media (max-width: 560px) {
    .ah-season-badge {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%) translateY(100px);
        border-radius: 999px;
        padding: 8px 12px;
        gap: 8px;
    }

    .ah-season-badge.is-visible {
        transform: translateX(50%) translateY(0);
    }

    .ah-season-badge:hover {
        transform: translateX(50%) translateY(-2px);
    }

    .ah-season-badge__sub {
        display: none;
    }
}

/* Safe area on iOS */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .ah-season-badge {
        bottom: calc(28px + env(safe-area-inset-bottom));
    }

    @media (max-width: 560px) {
        .ah-season-badge {
            bottom: calc(16px + env(safe-area-inset-bottom));
        }
    }
}

/* ==========================================
   Accurate Hisab — Footer
   Matches footer.html class names exactly
   ========================================== */

.ah-footer {
    margin-top: 40px;
    padding: 0 18px 24px;
}

/* Glass card */
.ah-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(120, 160, 235, .22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 4px 6px rgba(22, 60, 120, .04),
        0 18px 60px rgba(22, 60, 120, .10),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    display: grid;
    grid-template-columns: 1.4fr 0.85fr 1.1fr;
    gap: 36px;
    align-items: start;
}

/* ── Brand column ── */
.ah-footer__brand {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ah-footer__name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.02em;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ah-footer__tagline {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(15, 23, 42, .55);
    margin: 0 0 20px;
    max-width: 40ch;
}

/* CTA buttons in brand column */
.ah-footer__cta-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ah-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    cursor: pointer;
}

.ah-footer__btn--primary {
    background: linear-gradient(135deg, #2f6fed, #4aa3ff);
    color: #fff;
    border: 1px solid rgba(47, 111, 237, .2);
    box-shadow: 0 4px 14px rgba(47, 111, 237, .28);
}

.ah-footer__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(47, 111, 237, .40);
    filter: brightness(1.07);
}

.ah-footer__btn--ghost {
    background: rgba(255, 255, 255, .75);
    color: rgba(15, 23, 42, .78);
    border: 1.5px solid rgba(34, 197, 94, .38);
    box-shadow: 0 2px 8px rgba(22, 60, 120, .04);
}

.ah-footer__btn--ghost:hover {
    background: rgba(255, 255, 255, .98);
    border-color: rgba(34, 197, 94, .7);
    color: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, .16);
}

.ah-footer__btn--ghost svg {
    color: #16a34a;
}

/* ── Quick links column ── */
.ah-footer__links {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ah-footer__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(15, 23, 42, .62);
    text-decoration: none;
    border-bottom: 1px solid rgba(120, 160, 235, .1);
    transition: color .14s, padding-left .14s;
}

.ah-footer__link:last-child {
    border-bottom: none;
}

.ah-footer__link::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(47, 111, 237, .28);
    flex-shrink: 0;
    transition: background .14s, transform .14s;
}

.ah-footer__link:hover {
    color: #2f6fed;
    padding-left: 4px;
}

.ah-footer__link:hover::before {
    background: #2f6fed;
    transform: scale(1.5);
}

/* ── Support / contact column ── */
.ah-footer__support {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ah-footer__supportTitle {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(15, 23, 42, .38);
    margin-bottom: 14px;
    line-height: 1;
}

.ah-footer__supportItem {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
    padding: 7px 0;
    font-size: 13.5px;
    color: rgba(15, 23, 42, .62);
    border-bottom: 1px solid rgba(120, 160, 235, .09);
    min-width: 0;
}

.ah-footer__supportItem:last-child {
    border-bottom: none;
}

/* "WhatsApp:" / "Email:" labels */
.ah-footer__supportItem>span:first-child {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(15, 23, 42, .38);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Links inside support items — no bullet dot */
.ah-footer__supportItem .ah-footer__link {
    display: inline;
    padding: 0;
    border-bottom: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #2f6fed;
    word-break: break-all;
    overflow-wrap: break-word;
}

.ah-footer__supportItem .ah-footer__link::before {
    display: none;
}

.ah-footer__supportItem .ah-footer__link:hover {
    color: rgba(15, 23, 42, .85);
    padding-left: 0;
    text-decoration: underline;
}

/* ── Bottom bar ── */
.ah-footer__bottom {
    max-width: 1100px;
    margin: 14px auto 0;
    padding: 12px 6px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(15, 23, 42, .42);
}

.ah-footer__dot {
    opacity: .35;
}

.ah-footer__miniLink {
    color: rgba(15, 23, 42, .52);
    text-decoration: none;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 5px;
    transition: color .14s, background .14s;
}

.ah-footer__miniLink:hover {
    color: #2f6fed;
    background: rgba(47, 111, 237, .07);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ah-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 26px 20px;
    }

    /* Brand spans full row */
    .ah-footer__brand {
        grid-column: 1 / -1;
    }

    .ah-footer__tagline {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .ah-footer {
        padding: 0 10px 16px;
    }

    .ah-footer__inner {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 22px;
        border-radius: 16px;
    }

    .ah-footer__cta-wrap {
        flex-direction: column;
    }

    .ah-footer__btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 14px;
    }

    .ah-footer__name {
        font-size: 16px;
    }
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .ah-footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }
}