/* ================================================
   ABOUT.CSS — ShuddhaNaad About Us Page Styles
   Extends style.css with about-page-specific styles
   ================================================ */

/* =============================================
   ABOUT HERO
============================================= */
.about-hero {
    min-height: 55vh;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 70px;
    padding-bottom: var(--sp-xl);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: var(--sp-2xl) 0 var(--sp-lg);
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: var(--sp-md);
}

.page-breadcrumb a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.page-breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb-sep {
    color: var(--muted);
}

.about-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-md);
}

.about-hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
}

/* =============================================
   FOUNDING STORY SECTION
============================================= */
.about-story-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
    position: relative;
}

.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-main);
    opacity: 0.2;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--sp-2xl);
    align-items: start;
}

.story-para {
    font-size: 1rem;
    color: var(--charcoal-soft);
    line-height: 1.9;
    margin-bottom: var(--sp-md);
}

.story-para strong {
    color: var(--charcoal);
}

.story-para em {
    font-style: italic;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Founder Card */
.founder-card {
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-xl);
    border: 1px solid rgba(123, 47, 190, 0.15);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.founder-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(232, 55, 122, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.founder-img-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 3px;
    background: var(--grad-main);
    margin: 0 auto var(--sp-md);
}

.founder-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #F4E7D8, #EDD8C0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.founder-card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.founder-title {
    font-size: 0.9rem;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: var(--sp-md);
    display: block;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: var(--sp-md);
}

.ftag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--grad-soft);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 1px solid rgba(123, 47, 190, 0.18);
}

.founder-quote {
    background: var(--bg);
    border-left: 3px solid;
    border-image: var(--grad-main) 1;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: var(--sp-md);
    margin: 0;
    text-align: left;
}

.founder-quote p,
.founder-quote {
    font-size: 0.9rem;
    color: var(--charcoal-soft);
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 8px;
}

.founder-quote cite {
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 700;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* =============================================
   MISSION VISION VALUES
============================================= */
.mvv-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.mvv-card {
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-main);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    font-size: 2.5rem;
    margin-bottom: var(--sp-md);
}

.mvv-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--sp-sm);
}

.mvv-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: var(--sp-md);
}

.mvv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mvv-list li {
    font-size: 0.875rem;
    color: var(--charcoal-soft);
    font-weight: 500;
    line-height: 1.5;
}

/* =============================================
   TIMELINE
============================================= */
.timeline-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--sp-lg) 0;
}

/* Central vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--grad-main);
    transform: translateX(-50%);
    border-radius: var(--r-full);
    opacity: 0.4;
}

.timeline-item {
    display: flex;
    margin-bottom: var(--sp-xl);
    position: relative;
    align-items: flex-start;
}

/* Dot on the line */
.tl-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grad-main);
    box-shadow: 0 0 0 4px rgba(232, 55, 122, 0.2);
    z-index: 2;
}

/* Card — alternating sides */
.tl-card {
    background: white;
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    width: calc(50% - 40px);
    transition: all 0.3s var(--ease);
    position: relative;
}

.tl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 55, 122, 0.2);
}

.tl-date {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    background: var(--grad-soft);
    color: var(--purple);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-sm);
    letter-spacing: 0.03em;
}

.current-tag {
    background: var(--grad-main);
    color: white !important;
}

.tl-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.tl-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.tl-card.tl-current {
    border-color: rgba(232, 55, 122, 0.3);
    background: linear-gradient(160deg, #fff 0%, #FDF0F8 100%);
}

/* Left items — card on left side */
.tl-left {
    justify-content: flex-start;
}

.tl-left .tl-card {
    margin-right: auto;
    margin-left: 0;
}

/* Right items — card on right side */
.tl-right {
    justify-content: flex-end;
}

.tl-right .tl-card {
    margin-left: auto;
    margin-right: 0;
}

/* =============================================
   ABOUT STATS
============================================= */
.about-stats-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--sp-md);
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-main);
}

.about-stat {
    text-align: center;
    padding: var(--sp-md) var(--sp-xs);
    border-right: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

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

.about-stat:hover {
    transform: translateY(-4px);
}

.astat-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.astat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}

.astat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}

/* =============================================
   GURUS DETAIL
============================================= */
.about-gurus-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
}

.guru-detail-card {
    background: white;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: var(--sp-xl);
    transition: all 0.3s var(--ease);
}

.guru-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 55, 122, 0.2);
}

/* Header */
.guru-detail-header {
    display: flex;
    align-items: center;
    gap: var(--sp-xl);
    padding: var(--sp-xl);
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.guru-detail-header::after {
    content: '♪';
    position: absolute;
    right: 40px;
    top: 10px;
    font-size: 7rem;
    color: rgba(123, 47, 190, 0.06);
    font-family: serif;
    line-height: 1;
}

.guru-detail-img-ring {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 3px;
    background: var(--grad-main);
}

.guru-detail-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #F4E7D8, #EDD8C0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    gap: 2px;
}

.guru-initials-lg {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.guru-detail-intro h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.gd-role {
    font-size: 1rem;
    font-weight: 600;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--sp-md);
    display: block;
}

.gd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gtag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 600;
}

.gtag-purple {
    background: rgba(123, 47, 190, 0.1);
    color: var(--purple);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

.gtag-pink {
    background: rgba(232, 55, 122, 0.1);
    color: var(--pink);
    border: 1px solid rgba(232, 55, 122, 0.2);
}

.gtag-orange {
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 43, 0.2);
}

/* Body — bio + achievements */
.guru-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.guru-detail-bio,
.guru-detail-achievements {
    padding: var(--sp-xl);
}

.guru-detail-bio {
    border-right: 1px solid var(--border);
}

.guru-detail-bio h4,
.guru-detail-achievements h4,
.guru-detail-teaching h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--sp-md);
    padding-bottom: 10px;
    border-bottom: 2px solid;
    border-image: var(--grad-main) 1;
    display: inline-block;
}

.guru-detail-bio p {
    font-size: 0.92rem;
    color: var(--charcoal-soft);
    line-height: 1.85;
    margin-bottom: var(--sp-md);
}

.guru-detail-bio p:last-child {
    margin-bottom: 0;
}

.guru-detail-bio p strong {
    color: var(--charcoal);
}

/* Achievement list */
.gd-achievement-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.gd-achievement-list li {
    display: flex;
    gap: var(--sp-md);
    align-items: flex-start;
}

.gd-ach-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 47, 190, 0.12);
}

.gd-achievement-list li>div {
    flex: 1;
}

.gd-achievement-list li strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.gd-achievement-list li p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Teaching / Philosophy Section */
.guru-detail-teaching {
    padding: var(--sp-xl);
}

.gd-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md);
    margin-top: var(--sp-md);
}

.gd-phil-card {
    background: var(--bg-light);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.gd-phil-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: white;
    border-color: rgba(123, 47, 190, 0.2);
}

.gd-phil-icon {
    font-size: 2rem;
    margin-bottom: var(--sp-sm);
    display: block;
}

.gd-phil-card h5 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.gd-phil-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   CERTIFICATIONS
============================================= */
.certification-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg);
}

.cert-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    margin-bottom: var(--sp-xl);
}

.cert-detail-card {
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}

.cert-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-main);
}

.cert-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 47, 190, 0.2);
}

.cert-detail-icon {
    font-size: 2.5rem;
    margin-bottom: var(--sp-md);
}

.cert-detail-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cert-short {
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--sp-md);
    display: block;
}

.cert-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: var(--sp-md);
}

.cert-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cert-highlights span {
    display: inline-block;
    padding: 5px 14px;
    background: var(--grad-soft);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 1px solid rgba(123, 47, 190, 0.15);
}

/* Cert note bar */
.cert-note {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-md);
    background: white;
    border: 1px solid rgba(123, 47, 190, 0.15);
    border-left: 4px solid var(--purple);
    border-radius: var(--r-md);
    padding: var(--sp-md) var(--sp-lg);
    box-shadow: var(--shadow-sm);
}

.cert-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cert-note p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   GURU-SHISHYA TRADITION
============================================= */
.tradition-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
}

.tradition-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--sp-2xl);
    align-items: start;
}

/* Pillars */
.tradition-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
    margin-top: var(--sp-xl);
}

.trad-pillar {
    display: flex;
    gap: var(--sp-md);
    align-items: flex-start;
    background: white;
    padding: var(--sp-md);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.trad-pillar:hover {
    border-color: rgba(123, 47, 190, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.trad-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--grad-soft);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trad-pillar h5 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.trad-pillar p {
    font-size: 0.83rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Tradition Quote Card */
.tradition-card {
    background: var(--charcoal);
    color: white;
    border-radius: var(--r-xl);
    padding: var(--sp-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tradition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-main);
}

.tc-note {
    font-size: 4rem;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--sp-md);
}

.tradition-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.5;
    margin-bottom: var(--sp-sm);
}

.tc-attr {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: var(--sp-xl);
}

.tc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: var(--sp-lg);
}

.tc-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
    text-align: center;
}

.tc-fact-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.tc-fact-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    display: block;
    line-height: 1.4;
}

/* =============================================
   ABOUT PAGE CTA
============================================= */
.about-cta-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg);
}

.about-cta-box {
    position: relative;
    background: var(--charcoal);
    border-radius: var(--r-xl);
    padding: var(--sp-2xl) var(--sp-xl);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-main);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.3), transparent 70%);
    top: -100px;
    left: -80px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 47, 190, 0.3), transparent 70%);
    bottom: -80px;
    right: -60px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-tagline {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--sp-md);
}

.about-cta-box h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--sp-md);
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto var(--sp-xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.btn-outline-white:hover {
    background: var(--grad-main) !important;
    border-color: transparent !important;
    color: white !important;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================= */
@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
    }

    .founder-card {
        max-width: 460px;
        margin: 0 auto;
    }

    .mvv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mvv-grid .mvv-card:last-child {
        grid-column: 1 / -1;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .about-stat:nth-child(3),
    .about-stat:nth-child(6) {
        border-bottom: none;
    }

    .guru-detail-body {
        grid-template-columns: 1fr;
    }

    .guru-detail-bio {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .gd-philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-cards {
        grid-template-columns: 1fr;
    }

    .tradition-layout {
        grid-template-columns: 1fr;
    }

    .tradition-card {
        max-width: 500px;
    }

    .timeline::before {
        left: 24px;
    }

    .tl-dot {
        left: 24px;
    }

    .tl-card {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .tl-left,
    .tl-right {
        justify-content: flex-start;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================= */
@media (max-width: 768px) {
    .about-hero-content {
        padding: var(--sp-xl) 0 var(--sp-md);
    }

    .about-hero h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .mvv-grid .mvv-card:last-child {
        grid-column: auto;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: var(--sp-lg);
    }

    .about-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .about-stat:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .about-stat:nth-child(5),
    .about-stat:nth-child(6) {
        border-bottom: none;
    }

    .guru-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .gd-tags {
        justify-content: center;
    }

    .gd-philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .guru-detail-header::after {
        display: none;
    }

    .tradition-pillars {
        grid-template-columns: 1fr;
    }

    .tc-facts {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-sm);
    }

    .timeline::before {
        left: 16px;
    }

    .tl-dot {
        left: 16px;
        top: 14px;
        width: 12px;
        height: 12px;
    }

    .tl-card {
        width: calc(100% - 48px);
        margin-left: 48px !important;
    }

    .tl-card h4 {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary-grad,
    .cta-buttons .btn-outline-grad {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* =============================================
   RESPONSIVE — SMALL (≤ 480px)
============================================= */
@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-sm);
    }

    .gd-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .guru-detail-intro h3 {
        font-size: 1.5rem;
    }

    .tradition-pillars {
        grid-template-columns: 1fr;
    }

    .tc-facts {
        gap: var(--sp-xs);
    }

    .tc-fact-num {
        font-size: 1.4rem;
    }

    .about-cta-box {
        padding: var(--sp-xl) var(--sp-md);
    }
}