/* ============================================================
   SAI SEAL — HOMEPAGE SECTIONS  (homepage-sections.css)
   Aventra Design System  |  Brand: #ff0000 (red) / #033096 (blue)
   ============================================================ */

/* ── Google Font (Inter) ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --brand-red:   #ff0000;
    --brand-blue:  #033096;
    --brand-dark:  #000818;
    --brand-light: #f4f7ff;
    --text-dark:   #0d1b2a;
    --text-mid:    #3a4a5c;
    --text-light:  #ffffff;
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --shadow-card: 0 8px 32px rgba(3,48,150,.10);
    --shadow-hover:0 20px 60px rgba(3,48,150,.18);
    --transition:  all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Shared helpers ──────────────────────────────────────── */
.hs-section { padding: 90px 0; }
.hs-section.hs-dark  { background: var(--brand-dark); }
.hs-section.hs-light { background: var(--brand-light); }
.hs-section.hs-white { background: #ffffff; }
.hs-section.hs-blue  { background: var(--brand-blue); }

.hs-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}
.hs-badge::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--brand-red);
    flex-shrink: 0;
}

.hs-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-dark);
    margin: 0 0 20px;
}
.hs-title.light { color: #fff; }
.hs-title span  { color: var(--brand-red); }

.hs-desc {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 680px;
    margin: 0 0 40px;
}
.hs-desc.light { color: rgba(255,255,255,.75); }

.hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: .04em;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.hs-btn-primary {
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,0,0,.3);
}
.hs-btn-primary:hover {
    background: #cc0000;
    box-shadow: 0 8px 32px rgba(255,0,0,.4);
    transform: translateY(-2px);
    color: #fff;
}
.hs-btn-outline {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}
.hs-btn-outline:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: translateY(-2px);
}
.hs-btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}
.hs-btn-white-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ── 1. STATS / TRUST BAR ───────────────────────────────── */
.hs-stats-bar {
    background: var(--brand-blue);
    padding: 0;
    overflow: hidden;
    position: relative;
}
.hs-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #022580 0%, #033096 50%, #0a40b8 100%);
}
.hs-stats-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.hs-stat-item {
    padding: 42px 32px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.hs-stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--brand-red);
    transition: var(--transition);
}
.hs-stat-item:hover::after { transform: translateX(-50%) scaleX(1); }
.hs-stat-item:last-child { border-right: none; }
.hs-stat-number {
    font-size: clamp(3.2rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}
.hs-stat-number span { color: var(--brand-red); }
.hs-stat-label {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* ── 2. PRODUCT CATEGORIES (REDESIGNED) ─────────────────── */
.hs-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.hs-product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(3,48,150,.06);
    isolation: isolate;
}
/* Large background number */
.hs-product-card::before {
    content: attr(data-number);
    position: absolute;
    top: -18px;
    right: 14px;
    font-size: 10rem;
    font-weight: 900;
    color: var(--brand-blue);
    opacity: .04;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    pointer-events: none;
    z-index: 0;
    transition: opacity .35s;
}
.hs-product-card:hover::before { opacity: .08; }

/* Category accent bars */
.hs-product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--brand-red);
    transition: width .35s cubic-bezier(.4,0,.2,1);
    z-index: 1;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.hs-product-card:hover::after { width: 6px; }

.hs-product-card.cat-milk::after  { background: linear-gradient(180deg, #ef4444, #b91c1c); }
.hs-product-card.cat-water::after { background: linear-gradient(180deg, #0ea5e9, #0369a1); }
.hs-product-card.cat-oil::after   { background: linear-gradient(180deg, #f59e0b, #d97706); }
.hs-product-card.cat-ice::after   { background: linear-gradient(180deg, #8b5cf6, #7c3aed); }

.hs-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(3,48,150,.14);
    border-color: rgba(3,48,150,.12);
}

.hs-product-card-img {
    height: 220px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: 16px 16px 0;
    border-radius: var(--radius-md);
}
/* Category colored radial glow behind image */
.hs-product-card-glow {
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    opacity: .22;
    filter: blur(36px);
    pointer-events: none;
    transition: opacity .45s, transform .45s;
    z-index: 0;
}
.hs-product-card:hover .hs-product-card-glow {
    opacity: .35;
    transform: scale(1.15);
}
.cat-milk  .hs-product-card-glow { background: radial-gradient(circle, #ef4444, transparent 70%); }
.cat-water .hs-product-card-glow { background: radial-gradient(circle, #0ea5e9, transparent 70%); }
.cat-oil   .hs-product-card-glow { background: radial-gradient(circle, #f59e0b, transparent 70%); }
.cat-ice   .hs-product-card-glow { background: radial-gradient(circle, #8b5cf6, transparent 70%); }

.hs-product-card-img img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    z-index: 1;
}
.hs-product-card:hover .hs-product-card-img img {
    transform: scale(1.1) translateY(-4px);
}
/* Glassmorphic floating icon */
.hs-product-card-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border: 1px solid rgba(255,255,255,.5);
    z-index: 2;
    transition: var(--transition);
}
.hs-product-card:hover .hs-product-card-icon {
    transform: translateY(-2px) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.hs-product-card-icon svg { fill: var(--brand-blue); width: 22px; height: 22px; transition: fill .25s; }
.hs-product-card:hover .hs-product-card-icon svg { fill: var(--brand-red); }

.hs-product-card-img-link {
    display: block;
    width: 100%;
    text-decoration: none;
}
.hs-product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hs-product-card-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
}
.hs-product-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}
.hs-product-card.cat-milk:hover .hs-product-card-title a { color: #ef4444; }
.hs-product-card.cat-water:hover .hs-product-card-title a { color: #0ea5e9; }
.hs-product-card.cat-oil:hover .hs-product-card-title a { color: #f59e0b; }
.hs-product-card.cat-ice:hover .hs-product-card-title a { color: #8b5cf6; }

/* ── 3. WHY SAI SEAL ────────────────────────────────────── */
.hs-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}
.hs-why-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}
.hs-why-card::before {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--brand-blue);
    opacity: .05;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    pointer-events: none;
}
.hs-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--brand-red);
}
.hs-why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand-blue), #0a40b8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.hs-why-icon svg { fill: #fff; width: 26px; height: 26px; }
.hs-why-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 12px;
}
.hs-why-desc {
    font-size: 1.4rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}
.hs-why-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-red);
}

/* ── 4. MACHINE LINEUP TABLE ────────────────────────────── */
.hs-lineup-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.hs-lineup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.5rem;
    background: #fff;
    min-width: 700px;
}
.hs-lineup-table thead tr {
    background: var(--brand-blue);
}
.hs-lineup-table thead th {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 1.3rem;
    padding: 18px 22px;
    text-align: left;
}
.hs-lineup-table thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.hs-lineup-table thead th:last-child  { border-radius: 0 var(--radius-md) 0 0; }
.hs-lineup-table tbody tr {
    border-bottom: 1px solid #eef0f5;
    transition: background .2s;
}
.hs-lineup-table tbody tr:hover { background: var(--brand-light); }
.hs-lineup-table tbody td {
    padding: 16px 22px;
    color: var(--text-dark);
    vertical-align: middle;
}
.hs-lineup-table tbody td:first-child {
    font-weight: 800;
    color: var(--brand-blue);
}
.hs-lineup-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}
.hs-lineup-badge.milk   { background: #e3f0ff; color: var(--brand-blue); }
.hs-lineup-badge.water  { background: #e0f7fa; color: #006064; }
.hs-lineup-badge.oil    { background: #fff8e1; color: #f57f17; }
.hs-lineup-badge.ice    { background: #e8f5e9; color: #1b5e20; }
.hs-lineup-badge.multi  { background: #f3e5f5; color: #6a1b9a; }
.hs-lineup-output {
    font-weight: 700;
    color: var(--text-dark);
}
.hs-lineup-cta-row {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── 5. INDUSTRIES ──────────────────────────────────────── */
.hs-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.hs-industry-card {
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}
.hs-industry-card:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--brand-red);
    transform: translateY(-4px);
}
.hs-industry-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hs-industry-icon svg { fill: #fff; width: 24px; height: 24px; }
.hs-industry-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.hs-industry-desc {
    font-size: 1.4rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin: 0;
}

/* ── 6. BUILT IN PUNE ───────────────────────────────────── */
/* ── 6. BUILT IN PUNE (REDESIGNED FOR DARK PARALLAX EXCELLENCE) ──────────────── */
.hs-pune-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 8, 24, 0.94) 0%, rgba(3, 48, 150, 0.88) 100%), 
                url('../images/about-factory-premium.webp');
    background-attachment: scroll, fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
}
.hs-pune-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}
.hs-pune-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.hs-pune-img-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hs-pune-img-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, rgba(3, 48, 150, 0.35) 60%, transparent 100%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 8s infinite alternate;
}
@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 0.9; }
}
.hs-pune-img-wrap {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
    overflow: visible;
    width: 100%;
    max-width: 440px;
    transition: var(--transition);
}
.hs-pune-img-wrap .tri-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: triFloat 12s infinite ease-in-out alternate;
}
.hs-pune-img-wrap .tri-deco-1 {
    top: -40px;
    right: -30px;
    width: 110px;
    height: 110px;
    animation-duration: 14s;
    animation-delay: 0s;
}
.hs-pune-img-wrap .tri-deco-2 {
    bottom: -30px;
    left: -40px;
    width: 95px;
    height: 95px;
    animation-duration: 11s;
    animation-delay: -2s;
}
.hs-pune-img-wrap .tri-deco-3 {
    top: 30%;
    right: -50px;
    width: 75px;
    height: 75px;
    animation-duration: 16s;
    animation-delay: -5s;
}
.hs-pune-img-wrap .tri-deco-4 {
    bottom: 40px;
    right: -25px;
    width: 60px;
    height: 60px;
    animation-duration: 9s;
    animation-delay: -3s;
}
.hs-pune-img-wrap .tri-deco-5 {
    top: 20%;
    left: -35px;
    width: 50px;
    height: 50px;
    animation-duration: 13s;
    animation-delay: -7s;
}
@keyframes triFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
    100% { transform: translateY(10px) rotate(-5deg); }
}
.hs-pune-img-wrap:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(255, 0, 0, 0.15);
}
.hs-pune-img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentleFloat 6s ease-in-out infinite;
}
.hs-pune-img-wrap:hover img {
    transform: scale(1.05) rotate(1deg);
}
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hs-pune-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--brand-red) 0%, #cc0000 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 32px rgba(255, 0, 0, 0.3);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}
.hs-pune-img-wrap:hover .hs-pune-badge-float {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
}
.hs-pune-badge-float strong { display: block; font-size: 2.2rem; font-weight: 900; }
.hs-pune-badge-float span   { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }

.hs-pune-content {
    position: relative;
    z-index: 1;
}
.hs-pune-content .hs-badge {
    color: #ff3333;
}
.hs-pune-content .hs-badge::before {
    background: #ff3333;
}
.hs-pune-content .hs-title {
    color: #ffffff;
}
.hs-pune-content .hs-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.6rem;
    line-height: 1.7;
}
.hs-pune-feature-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 40px;
}
.hs-pune-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}
.hs-pune-feature-list li:last-child { border-bottom: none; }
.hs-pune-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}
.hs-pune-check svg { fill: #fff; width: 13px; height: 13px; }
.hs-pune-feature-list li strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 4px;
    display: block;
}
.hs-pune-content .hs-btn-primary {
    background: linear-gradient(135deg, var(--brand-red) 0%, #d50000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
}
.hs-pune-content .hs-btn-primary:hover {
    background: linear-gradient(135deg, #ff3333 0%, #b30000 100%);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.45);
}

/* ── 7. FAQ TEASER ──────────────────────────────────────── */
.premium-accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    align-items: start;
}

.premium-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acc-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f4f7fa;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.acc-header {
    padding: 25px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.acc-header span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000818;
    letter-spacing: -0.2px;
    text-align: left;
}

.acc-header .icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acc-header .icon::before,
.acc-header .icon::after {
    content: '';
    position: absolute;
    background: #000818;
    transition: all 0.3s ease;
}

.acc-header .icon::before {
    width: 14px;
    height: 2.5px;
    border-radius: 2px;
}

.acc-header .icon::after {
    width: 2.5px;
    height: 14px;
    border-radius: 2px;
}

.acc-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f4f7fa;
}

.acc-content .inner {
    overflow: hidden;
    padding: 0 35px;
    font-size: 1.7rem;
    color: #4a5568;
    line-height: 1.7;
    transition: padding 0.4s ease;
    text-align: left;
}

/* Active State */
.acc-item.active {
    background: #f4f7fa;
    box-shadow: 0 15px 35px rgba(3, 48, 150, 0.08);
    border-color: transparent;
}

.acc-item.active .acc-header {
    background: #033096;
    padding: 25px 35px 20px;
}

.acc-item.active .acc-header span {
    color: #fff;
}

.acc-item.active .acc-header .icon::before {
    background: #fff;
}

.acc-item.active .acc-header .icon::after {
    background: #fff;
    transform: rotate(90deg);
    opacity: 0;
}

.acc-item.active .acc-content {
    grid-template-rows: 1fr;
}

.acc-item.active .acc-content .inner {
    padding: 15px 35px 35px;
}

.hs-faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Accordion Styles */
@media (max-width: 991px) {
    .acc-header span {
        font-size: 2.2rem;
    }

    .acc-content .inner {
        padding: 0 25px;
        font-size: 2rem;
    }

    .acc-item.active .acc-header {
        padding: 20px 25px 15px;
    }

    .acc-item.active .acc-content .inner {
        padding: 10px 25px 25px;
    }
}

@media (max-width: 576px) {
    .acc-header span {
        font-size: 2rem;
    }

    .acc-content .inner {
        padding: 0 20px;
        font-size: 1.8rem;
    }

    .acc-item.active .acc-header {
        padding: 15px 20px 12px;
    }

    .acc-item.active .acc-content .inner {
        padding: 8px 20px 20px;
    }

    .acc-header .icon {
        width: 20px;
        height: 20px;
    }

    .acc-header .icon::before {
        width: 12px;
    }

    .acc-header .icon::after {
        height: 12px;
    }
}

/* ── 8. FINAL CTA BANNER ────────────────────────────────── */
.hs-cta-banner {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #021050 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}
.hs-cta-banner::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,.15) 0%, transparent 70%);
    pointer-events: none;
}
.hs-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3,48,150,.3) 0%, transparent 70%);
    pointer-events: none;
}
.hs-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}
.hs-cta-title {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.hs-cta-title span { color: var(--brand-red); }
.hs-cta-desc { font-size: 1.6rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; }
.hs-cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; flex-shrink: 0; }
.hs-cta-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.7);
    font-size: 1.4rem;
}
.hs-cta-contact strong { color: #fff; font-size: 1.6rem; }
.hs-cta-contact svg { fill: rgba(255,255,255,.6); width: 18px; height: 18px; flex-shrink: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hs-products-grid { grid-template-columns: repeat(2, 1fr); }
    .hs-why-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hs-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .hs-stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .hs-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .hs-pune-inner  { grid-template-columns: 1fr; gap: 40px; }
    .hs-faq-grid    { grid-template-columns: 1fr; }
    .premium-accordion-grid { grid-template-columns: 1fr; }
    .hs-cta-inner   { grid-template-columns: 1fr; }
    .hs-cta-actions { align-items: flex-start; }
}

@media (max-width: 600px) {
    .hs-section      { padding: 60px 0; }
    .hs-stats-inner  { grid-template-columns: repeat(2, 1fr); }
    .hs-products-grid{ grid-template-columns: 1fr; }
    .hs-why-grid     { grid-template-columns: 1fr; }
    .hs-industries-grid { grid-template-columns: 1fr; }
}

/* Elevate homepage container elements above the floating story image on mobile */
@media (max-width: 768px) {
    .hs-container {
        position: relative;
        z-index: 2;
    }
}
