
    /* ═══════════════════════════════════════════════════════
       AI SERVICES PAGE — BAJARANGISOFT
       Brand: #563AFF (primary purple), #1A1530 (dark title)
    ═══════════════════════════════════════════════════════ */

:root {
    --primary: #563AFF;
    --primary-dark: #3d20e0;
    --title: #211F54;
    --para: #5A5F96;
    --light: #F7F7FC;
    --gray: #D8D4EB;
    --warning: #FF813A;
    --accent-orange: #FF813A;
    --accent-green: #00C47D;
    --accent-blue: #0EA5E9;
}

/* ── 1. HERO ── */
.ai-hero {
    background: linear-gradient(135deg, #0D1B2A 0%, #0F2744 40%, #0B1E35 100%);
    position: relative;
    overflow: hidden;
    padding: 150px 0 50px;
    min-height: 480px;
}
.ai-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 70% 40%, rgba(0,180,255,0.08) 0%, transparent 60%),
            radial-gradient(circle at 20% 80%, rgba(86,58,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}
/* subtle grid lines */
.ai-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(0,180,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,180,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.ai-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
@media (max-width: 900px) {
    .ai-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .ai-hero__img { display: none; }
}
.ai-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgb(86 58 255 / 44%);
    border: 1px solid rgb(86 58 255);
    border-radius: 30px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    margin-bottom: 18px;
}
.ai-hero__title {
    font-family: "Jost", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 10px;
}
.ai-hero__title .highlight {
    color: #563AFF;
    background: rgba(0,180,255,0.12);
    border-radius: 6px;
    padding: 2px 10px;
}
.ai-hero__sub {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}
.ai-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #563AFF;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s;
    margin-bottom: 60px;
}
.ai-hero__btn:hover {
    box-shadow: 0 8px 30px rgba(0,180,255,0.4);
    transform: translateY(-2px);
    color: #fff;
}
.ai-hero__img {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.ai-hero__img img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0,180,255,0.25));
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

/* floating tags around hero image */
.ai-hero__tag {
    position: absolute;
    background: rgba(13,27,42,0.85);
    border: 1px solid rgba(0,180,255,0.25);
    border-radius: 8px;
    padding: 6px 14px;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    z-index: 3;
}


/* ── 2. AI BUSINESS PARTNER (industry tabs) ── */
.ai-partner {
    background: #fff;
    padding: 80px 0 0;
}
.ai-partner__title-wrap {
    text-align: center;
    margin-bottom: 40px;
}
.ai-section-eyebrow {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1A1530;
    margin-bottom: 10px;
}
.ai-section-eyebrow .chip {
    display: inline-block;
    background: #563AFF;
    color: #fff;
    border-radius: 6px;
    padding: 2px 12px;
    margin-left: 4px;
}
.ai-section-sub {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #5A5F96;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Industry tab list */
.ai-industry-tabs {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #EDE9FF;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
    background: #F9F8FF;
}
.ai-industry-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 12px;
    cursor: pointer;
    border-right: 1.5px solid #EDE9FF;
    transition: background 0.25s, color 0.25s;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #5A5F96;
    text-align: center;
}
.ai-industry-tab:last-child { border-right: none; }
.ai-industry-tab i { font-size: 24px; color: #9490B5; transition: color 0.25s; }
.ai-industry-tab.active,
.ai-industry-tab:hover {
    background: #563AFF;
    color: #fff;
}
.ai-industry-tab.active i,
.ai-industry-tab:hover i { color: #fff; }

/* Feature grid under tab */
.ai-industry-content {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid #EDE9FF;
    border-top: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    background: #fff;
}
.ai-industry-content.active { display: grid; }
@media (max-width: 768px) { .ai-industry-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .ai-industry-content { grid-template-columns: 1fr; } }

.ai-industry-feature {
    padding: 22px 24px;
    border-right: 1.5px solid #EDE9FF;
    border-bottom: 1.5px solid #EDE9FF;
    transition: background 0.2s;
}
.ai-industry-feature:hover { background: #F5F4FF; }
.ai-industry-feature:nth-child(3n) { border-right: none; }
.ai-industry-feature h6 {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1A1530;
    margin-bottom: 6px;
}
.ai-industry-feature p {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #5A5F96;
    line-height: 1.55;
    margin: 0;
}

/* industry description bar */
.ai-industry-desc {
    background: #F9F8FF;
    border: 1.5px solid #EDE9FF;
    border-bottom: none;
    padding: 14px 24px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: #5A5F96;
    display: none;
}
.ai-industry-desc.active { display: block; }


/* ── 3. TECH STACK & PARTNERS ── */
.ai-tech {
    padding: 70px 0;
    background: #F9F8FF;
}
.ai-tech__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 36px 56px;
    margin-top: 36px;
}
.ai-tech__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.75;
    transition: opacity 0.2s;
    filter: grayscale(30%);
}
.ai-tech__logo:hover { opacity: 1; filter: grayscale(0%); }
.ai-tech__logo img { height: 34px; width: auto; object-fit: contain; }
.ai-tech__logo span {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A1530;
}


/* ── 4. OUR AI EXPERTISE (8-card grid) ── */
.ai-expertise {
    background: #fff;
    padding: 80px 0;
}
.ai-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 1024px) { .ai-expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ai-expertise-grid { grid-template-columns: 1fr; } }

.ai-expertise-card {
    border: 1.5px solid #EDE9FF;
    border-radius: 14px;
    padding: 28px 22px;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ai-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(86,58,255,0.12);
    border-color: #563AFF;
}
.ai-expertise-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F0EDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #563AFF;
    font-size: 22px;
    transition: background 0.25s, color 0.25s;
}
.ai-expertise-card:hover .ai-expertise-card__icon {
    background: #563AFF;
    color: #fff;
}
.ai-expertise-card h6 {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1530;
    margin-bottom: 8px;
}
.ai-expertise-card p {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #5A5F96;
    line-height: 1.6;
    margin: 0;
}


/* ── 5. HOW AI WILL HELP (dark mind-map section) ── */
.ai-mindmap {
    background: linear-gradient(160deg, #0A1628 0%, #0D2040 50%, #091520 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    min-height: 560px;
}
.ai-mindmap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(0,180,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,180,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.ai-mindmap__eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #563AFF;
    text-align: center;
    margin-bottom: 8px;
}
.ai-mindmap__title {
    font-family: "Jost", sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 56px;
}
.ai-mindmap__layout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 360px;
}

/* LEFT pills */
.ai-mindmap__left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
    flex: 1;
    padding-right: 40px;
    position: relative;
}
/* RIGHT pills */
.ai-mindmap__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    flex: 1;
    padding-left: 40px;
}
.ai-mindmap__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 40px;
    padding: 11px 22px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    white-space: nowrap;
    transition: background 0.25s, border-color 0.25s;
    cursor: default;
}
.ai-mindmap__pill:hover {
    background: rgba(0,180,255,0.12);
    border-color: rgba(0,180,255,0.4);
    color: #fff;
}
.ai-mindmap__pill i { font-size: 16px; color: #563AFF; }

/* Center robot */
.ai-mindmap__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.ai-mindmap__robot-ring {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid #5638ff4d;
    box-shadow:
            0 0 0 12px #5638ff21, 0 0 60px #5638ff8a, inset 0 0 40px #5638ff14;
    background: radial-gradient(circle, rgba(0,35,65,0.9) 0%, rgba(7,20,38,0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /*animation: ringPulse 3s ease-in-out infinite;*/
}
@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 12px rgba(0,180,255,0.06), 0 0 60px rgba(0,180,255,0.2), inset 0 0 40px rgba(0,180,255,0.05); }
    50%       { box-shadow: 0 0 0 20px rgba(0,180,255,0.04), 0 0 80px rgba(0,180,255,0.3), inset 0 0 50px rgba(0,180,255,0.08); }
}
.ai-mindmap__robot-ring img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0,180,255,0.4));
    animation: heroFloat 4s ease-in-out infinite;
}

/* connector icon nodes */
.ai-mindmap__icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}
.ai-mindmap__icon-node {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}
.ai-mindmap__icon-node:hover {
    background: #5638ff21;
    border-color: #563AFF;
}
.ai-mindmap__icon-node img { width: 24px; height: 24px; object-fit: contain; filter: brightness(0) invert(1); }

/* SVG connector lines */
.ai-mindmap__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 900px) {
    .ai-mindmap__layout { flex-direction: column; gap: 32px; }
    .ai-mindmap__left, .ai-mindmap__right { align-items: center; padding: 0; }
    .ai-mindmap__svg { display: none; }
}


/* ── 6. CORE AI SERVICES (detailed cards with diagram images) ── */
.ai-core {
    background: #fff;
    padding: 80px 0;
}
.ai-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 1024px) { .ai-core-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ai-core-grid { grid-template-columns: 1fr; } }

.ai-core-card {
    border: 1.5px solid #EDE9FF;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}
.ai-core-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(86,58,255,0.12);
    border-color: #563AFF;
}
.ai-core-card__header {
    padding: 24px 24px 16px;
}
.ai-core-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #F0EDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #563AFF;
    font-size: 20px;
    margin-bottom: 14px;
    transition: background 0.25s, color 0.25s;
}
.ai-core-card:hover .ai-core-card__icon { background: #563AFF; color: #fff; }
.ai-core-card h5 {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1A1530;
    margin-bottom: 6px;
}
.ai-core-card__desc {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #5A5F96;
    line-height: 1.55;
    margin-bottom: 12px;
}
.ai-core-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0EDFF;
    color: #563AFF;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.ai-core-card__tag i { font-size: 13px; }
.ai-core-card__diagram {
    background: #F9F8FF;
    border-top: 1.5px solid #EDE9FF;
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}
.ai-core-card__diagram img {
    max-height: 140px;
    width: 100%;
    object-fit: contain;
}
/* Placeholder diagram SVG for cards without images */
.ai-core-diagram-placeholder {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4B8F8;
    font-size: 48px;
    background: linear-gradient(135deg, #F0EDFF 0%, #E8E3FF 100%);
    border-radius: 10px;
}


/* ── 7. WHY CHOOSE US ── */
.ai-why {
    background: #F9F8FF;
    padding: 80px 0;
}
.ai-why__layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
}
@media (max-width: 900px) {
    .ai-why__layout { grid-template-columns: 1fr; text-align: center; }
    .ai-why__center { display: none; }
}
.ai-why__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ai-why__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1.5px solid #EDE9FF;
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.ai-why__item:hover { border-color: #563AFF; box-shadow: 0 4px 20px rgba(86,58,255,0.10); }
.ai-why__item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #563AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.ai-why__item h6 {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1530;
    margin: 0;
}
.ai-why__center img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #EDE9FF;
    box-shadow: 0 0 0 12px rgba(86,58,255,0.06);
}
.ai-why__right .ai-why__item { flex-direction: row-reverse; text-align: right; }
@media (max-width: 900px) { .ai-why__right .ai-why__item { flex-direction: row; text-align: left; } }


/* ─── FAQ SECTION ─── */
.mth-faq {
    background: #fff;
    padding: 90px 0;
}
.mth-faq__heading {
    text-align: center;
    margin-bottom: 52px;
}
.mth-faq__heading h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.2;
}
.mth-faq__heading h2 span { color: var(--primary); }

/* 2-column FAQ grid */
.mth-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.mth-faq__item {
    border: 1px solid var(--gray);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s;
}
.mth-faq__item.open { border-color: rgba(86,58,255,0.30); }

.mth-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    gap: 12px;
}
.mth-faq__question span {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--title);
    line-height: 1.4;
}
/* Circle "i" icon like Vasundhara */
.mth-faq__icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--gray);
    display: flex; align-items: center; justify-content: center;
    color: var(--para);
    flex-shrink: 0;
    font-size: 13px;
    transition: all 0.25s;
}
.mth-faq__item.open .mth-faq__icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.mth-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}
.mth-faq__answer p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--para);
    line-height: 1.72;
    padding-bottom: 16px;
}
.mth-faq__item.open .mth-faq__answer { max-height: 240px; }


/* ── 9. CTA BANNER (same as portfolio page) ── */
.ai-cta {
    background: linear-gradient(120deg, #563AFF 0%, #7B5FFF 100%);
    border-radius: 24px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    margin: 0 0 80px;
}
.ai-cta::before {
    content: "";
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -150px; right: -100px;
    pointer-events: none;
}
.ai-cta__words {
    position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 10px; opacity: 0.18;
}
.ai-cta__word {
    font-family: "Jost", sans-serif; font-size: 28px; font-weight: 800;
    color: #fff; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.ai-cta__text { position: relative; z-index: 2; max-width: 560px; }
.ai-cta__text h3 {
    font-family: "Jost", sans-serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.25;
}
.ai-cta__text p { font-family: "Jost", sans-serif; font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.65; }
.ai-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; flex-shrink: 0; }
.ai-cta__btn-white {
    display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #563AFF;
    font-family: "Jost", sans-serif; font-size: 15px; font-weight: 700;
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s; white-space: nowrap;
}
.ai-cta__btn-white:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.2); transform: translateY(-2px); color: #563AFF; }
.ai-cta__btn-outline {
    display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff;
    font-family: "Jost", sans-serif; font-size: 15px; font-weight: 600;
    padding: 13px 28px; border-radius: 50px; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.25s, background 0.25s; white-space: nowrap;
}
.ai-cta__btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
@media (max-width: 991px) {
    .mth-faq__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ai-cta { flex-direction: column; padding: 40px 28px; }
    .ai-cta__words { display: none; }
}

/* shared text-center helper */
.section-text-center { text-align: center; }
