/* =================================================================
   ABOUT PAGE - CUSTOM STYLES
   Premium styling for all about page sections
   ================================================================= */

/* -----------------------------------------------------------------
   0. Page Title Hero Enhancements (Blob + Grid)
   ----------------------------------------------------------------- */
.page-title-hero {
    position: relative;
    overflow: hidden;
}

/* Animated Blob Background */
.hero-blob-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: blob-float 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, #ef4444 100%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f59e0b 0%, var(--color-brand-primary) 100%);
    bottom: -100px;
    left: -50px;
    animation-delay: -10s;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Grid Overlay - React/Sass Style */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

[data-theme="dark"] .hero-grid-overlay {
    background-image:
        linear-gradient(rgba(220, 38, 38, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.05) 1px, transparent 1px);
}

.page-title-hero-content {
    position: relative;
    z-index: 2;
}

/* -----------------------------------------------------------------
   0b. Stacked Card Image Gallery
   ----------------------------------------------------------------- */
.stacked-cards-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
    cursor: pointer;
}

.stacked-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center bottom;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
}

.stacked-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}

/* Stacking Effect */
.stacked-card:nth-child(1) {
    z-index: 4;
    transform: translateY(0) scale(1);
}

.stacked-card:nth-child(2) {
    z-index: 3;
    transform: translateY(-12px) scale(0.96);
    opacity: 0.9;
}

.stacked-card:nth-child(3) {
    z-index: 2;
    transform: translateY(-24px) scale(0.92);
    opacity: 0.7;
}

.stacked-card:nth-child(4) {
    z-index: 1;
    transform: translateY(-36px) scale(0.88);
    opacity: 0.5;
}

/* Active (top) card */
.stacked-card.active {
    z-index: 4 !important;
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
}

/* Card being removed (swipe animation) */
.stacked-card.removing {
    transform: translateX(150%) rotate(20deg) !important;
    opacity: 0 !important;
    z-index: 10 !important;
}

/* Hover effect on container */
.stacked-cards-container:hover .stacked-card.active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px -15px rgba(220, 38, 38, 0.3);
}

/* Click instruction */
.card-instruction {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(220, 38, 38, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    z-index: 100;
    animation: pulse-instruction 2s ease-in-out infinite;
    pointer-events: none;
}

.card-instruction svg {
    animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes pulse-instruction {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

/* Hide instruction after first interaction */
.stacked-cards-container.interacted .card-instruction {
    opacity: 0;
    pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .stacked-cards-container {
        height: 400px;
    }

    .stacked-card:nth-child(2) {
        transform: translateY(-8px) scale(0.97);
    }

    .stacked-card:nth-child(3) {
        transform: translateY(-16px) scale(0.94);
    }

    .stacked-card:nth-child(4) {
        transform: translateY(-24px) scale(0.91);
    }

    .card-instruction {
        bottom: 16px;
        right: 16px;
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* -----------------------------------------------------------------
   1. Story Grid & Highlights
   ----------------------------------------------------------------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    overflow-x: hidden;
    /* Prevent card animations from causing horizontal scroll */
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .sticky-content {
        position: sticky;
        top: calc(var(--header-height) + 40px);
    }
}

.story-visuals {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visual-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
}

[data-theme="dark"] .caption {
    background: rgba(15, 17, 21, 0.95);
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.highlight-item:hover {
    border-color: var(--color-brand-primary);
    transform: translateX(8px);
}

.highlight-icon {
    flex-shrink: 0;
    color: var(--color-brand-primary);
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
}

/* -----------------------------------------------------------------
   2. Vision & Mission Cards
   ----------------------------------------------------------------- */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.vm-card {
    padding: 48px 36px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-primary) 0%, #ef4444 100%);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.2);
}

.vm-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-light);
    border-radius: 50%;
    color: var(--color-brand-primary);
    transition: all 0.3s var(--ease-smooth);
}

[data-theme="dark"] .vm-icon {
    background: rgba(220, 38, 38, 0.15);
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
}

.vm-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.vm-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-brand-primary);
    margin: 16px 0 20px;
    padding: 12px 20px;
    background: var(--color-brand-light);
    border-left: 4px solid var(--color-brand-primary);
    border-radius: 8px;
    line-height: 1.6;
}

[data-theme="dark"] .vm-quote {
    background: rgba(220, 38, 38, 0.1);
}

.vm-intro {
    font-size: 1rem;
    color: var(--color-text-main);
    margin-bottom: 16px;
    font-weight: 600;
}

.vm-tagline {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.vm-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.vm-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vm-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-brand-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Mission Numbered List */
.vm-mission-list {
    list-style: none;
    counter-reset: mission-counter;
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
    padding: 0;
}

.vm-mission-list li {
    counter-increment: mission-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.vm-mission-list li::before {
    content: counter(mission-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    background: var(--color-brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* -----------------------------------------------------------------
   3. Premium Leadership Redesign (Google/SaaS Style)
   ----------------------------------------------------------------- */
.leadership-card.premium-surface {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 40px auto;
    background: var(--color-bg);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 15px -3px rgba(0, 0, 0, 0.03),
        0 20px 40px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.5s var(--ease-luxury);
}

[data-theme="dark"] .leadership-card.premium-surface {
    background: #15181e;
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow:
        0 20px 40px -5px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.02);
}

@media (min-width: 992px) {
    .leadership-card.premium-surface {
        grid-template-columns: 420px 1fr;
    }
}

.leadership-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.04),
        0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.leader-image-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.leader-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    position: relative;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.leadership-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 70%, var(--color-bg) 100%);
    pointer-events: none;
}

[data-theme="dark"] .leader-image-overlay {
    background: linear-gradient(to right, transparent 70%, #15181e 100%);
}

@media (max-width: 991px) {
    .leader-image-overlay {
        background: linear-gradient(to bottom, transparent 70%, var(--color-bg) 100%);
    }

    [data-theme="dark"] .leader-image-overlay {
        background: linear-gradient(to bottom, transparent 70%, #15181e 100%);
    }
}

/* Info Section */
.leader-info-section {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .leader-info-section {
        padding: 40px 30px;
    }
}

.leader-header {
    margin-bottom: 32px;
}

.leader-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brand-primary);
    margin-bottom: 12px;
}

.leader-name {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
    margin: 0;
}

.leader-accent-line {
    width: 40px;
    height: 4px;
    background: var(--color-brand-primary);
    margin-top: 16px;
    border-radius: 2px;
}

.leader-story {
    margin-bottom: 40px;
}

.leader-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Premium Quote */
.leader-quote-premium {
    margin: 40px 0;
    padding: 32px;
    background: var(--color-bg-alt);
    border-radius: 24px;
    position: relative;
    border: 1px solid var(--color-border);
}

[data-theme="dark"] .leader-quote-premium {
    background: rgba(255, 255, 255, 0.02);
}

.quote-icon-svg {
    color: var(--color-brand-primary);
    opacity: 0.2;
    position: absolute;
    top: 24px;
    left: 24px;
}

.quote-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-text-main);
    padding-left: 24px;
    line-height: 1.4;
}

/* Footer Link */
.leader-footer {
    margin-top: auto;
}

.btn-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--color-text-main);
    font-size: 1.05rem;
    transition: all 0.3s var(--ease-smooth);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.btn-premium-link:hover {
    color: var(--color-brand-primary);
    gap: 16px;
    border-bottom-color: var(--color-brand-primary);
}

.btn-premium-link svg {
    transition: transform 0.3s var(--ease-smooth);
}

.btn-premium-link:hover svg {
    transform: translateX(4px);
}

/* -----------------------------------------------------------------
   4. Service Times
   ----------------------------------------------------------------- */
.service-times-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .service-times-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -10px rgba(220, 38, 38, 0.15);
}

.service-day {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-primary);
    margin-bottom: 12px;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.service-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.service-time svg {
    color: var(--color-brand-primary);
}

/* Featured Service */
.featured-service {
    border: 2px solid var(--color-brand-primary);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--color-brand-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* -----------------------------------------------------------------
   7. CTA Section Premium
   ----------------------------------------------------------------- */
.cta-section-premium {
    padding: 100px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
}

.glow-effect {
    position: relative;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.glow-effect:hover {
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* -----------------------------------------------------------------
   8. Animations & Delays
   ----------------------------------------------------------------- */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* -----------------------------------------------------------------
   9. Responsive Adjustments
   ----------------------------------------------------------------- */
@media (max-width: 768px) {
    .leadership-card {
        padding: 32px 24px;
    }

    .leader-name {
        font-size: 1.75rem;
    }

    .leader-quote {
        font-size: 1.125rem;
    }

    .vm-card {
        padding: 36px 28px;
    }

    .service-name {
        font-size: 1.25rem;
    }

    .cta-section-premium {
        padding: 80px 0;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

}

/* -----------------------------------------------------------------
   7. Leadership Story Page (Exclusive Styles)
   ----------------------------------------------------------------- */
.leadership-story-page {
    background: var(--color-bg);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Story Hero */
.story-hero-section {
    padding: 120px 0 80px;
    position: relative;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

[data-theme="dark"] .story-hero-section {
    background: #111418;
    border-color: rgba(255, 255, 255, 0.05);
}

.story-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.story-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.04em;
    margin: 20px 0 16px;
    line-height: 1.1;
}

.story-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Surface */
.story-intro-surface {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: -60px;
    margin-bottom: 80px;
    z-index: 10;
    position: relative;
    background: var(--color-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .story-intro-surface {
    background: #15181e;
}

@media (min-width: 768px) {
    .story-intro-surface {
        grid-template-columns: 1fr 1.2fr;
    }
}

.story-intro-image {
    position: relative;
    height: 400px;
}

@media (min-width: 768px) {
    .story-intro-image {
        height: auto;
    }
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, var(--color-bg) 100%);
}

.story-intro-text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand-primary);
    margin-bottom: 16px;
}

.story-leader-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0;
}

.story-accent {
    width: 48px;
    height: 4px;
    background: var(--color-brand-primary);
    margin: 24px 0;
    border-radius: 2px;
}

.story-intro-bio {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-main);
    font-weight: 500;
}

/* Story Chapters */
.story-chapters {
    margin-bottom: 100px;
}

.story-chapter {
    margin-bottom: 80px;
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.chapter-num {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-brand-primary);
    opacity: 0.3;
}

.chapter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
}

.chapter-body p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

/* Premium Quote Block */
.story-quote-block {
    margin: 100px 0;
    padding: 80px 40px;
    text-align: center;
    background: var(--color-bg-alt);
    border-radius: 40px;
    position: relative;
}

.quote-svg-icon {
    color: var(--color-brand-primary);
    opacity: 0.15;
    margin-bottom: 32px;
}

.quote-content {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    font-style: italic;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

/* Navigation */
.story-navigation {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.back-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--color-text-main);
    transition: all 0.3s var(--ease-smooth);
    padding: 12px 24px;
    border-radius: 100px;
    background: var(--color-bg-alt);
    text-decoration: none;
}

.back-link-premium:hover {
    background: var(--color-brand-primary);
    color: white;
    transform: translateX(-4px);
}