* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary: #0B3D91;
    --primary-dark: #062356;
    --secondary: #1565C0;
    --gold: #D4AF37;
    --gold-light: #F4CF57;
    --gold-dark: #AA8C2C;
    --dark: #1A1A1A;
    --light-bg: #F5F7FA;
    /* Platinum */
    --white: #FFFFFF;
    --muted: #666666;
    --border: rgba(11, 61, 145, 0.08);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(11, 61, 145, 0.08);
    --shadow-lg: 0 16px 48px rgba(11, 61, 145, 0.12);
    --shadow-premium: 0 20px 60px -10px rgba(11, 61, 145, 0.15);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --backdrop-blur: blur(12px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-login {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(11, 61, 145, 0.15);
    background: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-login:hover {
    border-color: rgba(11, 61, 145, 0.4);
    background: rgba(255, 255, 255, 1);
}

.nav-cta {
    padding: 12px 32px;
    background: var(--gold);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
    background: #F4CF57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section--light {
    background: var(--white);
}

.section--dark {
    background: var(--light-bg);
}

/* Premium Gradient Section - Clean & Professional Design */
.section--gradient {
    position: relative;
    background: linear-gradient(160deg, #0a2d5f 0%, #0f3a7a 35%, #1565C0 100%);
    color: var(--white);
    padding: 120px 0;
    overflow: hidden;
}

.section--gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section--gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Hero Section */
.hero {
    background: var(--light-bg);
    padding: 80px 0;
}

/* Cover Card Style */
.cover-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cover-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.cover-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #0B3D91 0%, #1565C0 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cover-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cover-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.cover-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.cover-kicker {
    font-size: clamp(22px, 2.4vw, 60px);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cover-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cover-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cover-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.cover-chip--sm {
    font-size: clamp(14px, 2.6vw, 18px);
}

.cover-chip--xl {
    font-family: 'Merriweather', serif;
    font-size: clamp(34px, 6vw, 60px);
    font-weight: 900;
    letter-spacing: 0.02em;
    padding: 0;
    border-radius: 0;
    background: transparent;
    /* remove background */
    color: #ffd15b;
    /* use previous background gold color for text */
    box-shadow: none;
    border: none;
    animation: none;
    position: static;
    overflow: visible;
    text-shadow: none;
}

.cover-chip--xl::after {
    display: none;
}

.cover-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: clamp(20px, 4vw, 34px);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.cover-chip--tag {
    font-size: clamp(18px, 3.5vw, 26px);
    padding: 8px 22px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
}

.cover-chip--micro {
    font-size: clamp(12px, 2vw, 14px);
    padding: 4px 14px;
    background: rgba(0, 0, 0, 0.35);
    letter-spacing: 0.12em;
}

@keyframes heroChipPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: translateY(-6px);
        box-shadow: 0 28px 55px rgba(0, 0, 0, 0.35);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
}

.cover-content {
    padding: 32px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
}

.user-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.user-details h3:hover {
    color: var(--primary);
}

.user-details p {
    font-size: 13px;
    color: #999;
    transition: color 0.3s ease;
}

.follow-btn {
    margin-left: auto;
    padding: 6px 20px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.follow-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.post-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.highlight {
    color: var(--gold);
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.post-text:hover .highlight::after {
    transform: scaleX(1);
}

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

.tag {
    padding: 6px 12px;
    background: rgba(11, 61, 145, 0.1);
    color: var(--primary);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.engagement {
    display: flex;
    gap: 32px;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #F0F0F0;
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.3s;
    color: #666;
}

.engagement-item:hover {
    color: var(--primary);
}

.engagement-item i {
    font-size: 20px;
}

.engagement-item span {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.engagement-item i {
    transition: all 0.3s ease;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 30px;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #F4CF57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--muted);
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.section-subtitle--stacked {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.subtitle-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 600;
}

.subtitle-line--alert {
    color: #ff6b6b;
}

.subtitle-line--success {
    color: #34d399;
}

.stacked-cta .cta-line {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
}

/* Mobile break helper: show inline by default, force block (newline) on small screens */
.mobile-break {
    display: inline;
}

@media (max-width: 640px) {
    .mobile-break {
        display: block;
        margin-top: 6px;
    }

    /* Prevent internal breaks inside key spans/strongs */
    .no-break {
        white-space: nowrap;
    }

    .big-price {
        font-size: 35px !important;
    }
}

.stacked-subtitle,
.stacked-lines {
    display: flex;
    flex-direction: column;
}


.stacked-lines strong {
    display: flex;
    flex-direction: column;
}

.section-subtitle strong,
.mobile-emphasis strong,
.readable-text strong {
    letter-spacing: 0.015em;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.section--gradient .container {
    position: relative;
    z-index: 1;
}

.section--gradient .section-header {
    margin-bottom: 70px;
}

.section--gradient .section-title {
    color: var(--white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.section--gradient .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.text-highlight {
    word-break: keep-all;
    color: var(--secondary);
    font-weight: 700;
}

.text-highlight-gold {
    color: var(--gold);
    font-weight: 700;
}

.text-highlight-orange {
    color: #ff5c35;
    font-weight: 700;
}

.mobile-emphasis {
    position: relative;
    display: block;
    max-width: 780px;
    margin: 32px auto 0;
    padding: 28px 36px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.08), rgba(212, 175, 55, 0.15));
    border: 1px solid rgba(11, 61, 145, 0.12);
    box-shadow: 0 24px 60px rgba(11, 61, 145, 0.12);
    line-height: 1.75;
    font-size: clamp(16px, 1.4vw, 20px);
    letter-spacing: 0.015em;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
}

.section--gradient .mobile-emphasis {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(212, 175, 55, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.system-callout {
    display: block;
    width: min(90%, 720px);
    margin: 48px auto 0;
    padding: 18px 36px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.08), rgba(212, 175, 55, 0.18));
    border: 1px solid rgba(11, 61, 145, 0.12);
    box-shadow: 0 18px 40px rgba(11, 61, 145, 0.08);
    line-height: 1.7;
    text-align: center;
    max-width: 720px;
}

.section--gradient .system-callout {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Merriweather', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--muted);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--gold);
    transition: all 0.3s;
}

/* 评论卡片样式 - 照片在底部 */
.testimonial-card--with-media {
    display: flex;
    flex-direction: column;
    /* 正常顺序，通过HTML调整 */
    padding: 0;
    overflow: hidden;
    /* 保持圆角效果 */
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: var(--white);
    border: 1px solid rgba(11, 61, 145, 0.08);
    cursor: pointer;
    /* 添加点击光标 */
}

.testimonial-card--with-media .testimonial-media-label {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    color: #d32f2f;
    padding: 0;
    border-radius: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: none;

    paint-order: stroke fill;
    z-index: 2;
}

.testimonial-card--with-media .testimonial-content {
    padding: 32px 28px;
    background: var(--white);
    position: relative;
    order: 1;
    /* 内容在上 */
}

.testimonial-card--with-media .testimonial-media {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-top: 2px solid rgba(11, 61, 145, 0.1);
    order: 2;
    /* 照片在下 */
}

.testimonial-card--with-media .testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    background: var(--light-bg);
}

.testimonial-card--with-media:hover .testimonial-media img {
    transform: scale(1.03);
}

.testimonial-card--with-media:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card--with-media:hover .testimonial-media-label {
    transform: translateY(-2px);
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.75);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    border-color: rgba(11, 61, 145, 0.2);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #0b3d91;
    font-weight: 500;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.04), rgba(255, 215, 0, 0.05));
    border-radius: 14px;
    border-left: 4px solid var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    font-family: 'Merriweather', serif;
    box-shadow: 0 6px 18px rgba(11, 61, 145, 0.25);
    flex-shrink: 0;
    border: 3px solid white;
}

.author-name {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 17px;
    color: var(--primary);
}

.author-title {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.author-location {
    font-size: 13px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

/* Timeline Section - 时间线设计 */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

/* 中央时间线 */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Day 1 - 左侧 */
.timeline-item.left .timeline-content {
    margin-right: auto;
    margin-left: 0;
    width: calc(50% - 60px);
    text-align: right;
}

/* Day 2 - 右侧 */
.timeline-item.right .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% - 60px);
    text-align: left;
}

/* 时间节点圆圈 */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 6px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: var(--primary);
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0.1);
    z-index: 10;
}

.timeline-content {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.timeline-day-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
}

.timeline-item.right .timeline-day-label {
    background: var(--gold);
    color: var(--primary);
}

.timeline-title {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 24px;
}

.timeline-list {
    list-style: none;
}

.timeline-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-list li:last-child {
    border-bottom: none;
}

.timeline-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
    font-size: 18px;
}

.timeline-item.right .timeline-list li {
    padding-left: 0;
    padding-right: 32px;
    text-align: left;
}

.timeline-item.right .timeline-list li::before {
    right: 0;
    left: auto;
}

.timeline-result {
    text-align: center;
    margin-top: 60px;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.per-run-system {
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.per-run-system h3 {
    margin-top: 0;
    font-size: 26px;
    color: var(--primary);
}

.per-run-system p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.per-run-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.per-run-card {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    min-height: 240px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.per-run-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.per-run-card:hover img {
    transform: scale(1.05);
}

.per-run-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: #fff;
}

.per-run-caption h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.per-run-caption p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 20px;
}

/* Feature Cards - Clean Professional Design */
.section--gradient .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.section--gradient .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.03));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.section--gradient .feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(212, 175, 55, 0.08));
}

.section--gradient .feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.section--gradient .feature-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.section--gradient .feature-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.75;
    overflow-wrap: break-word;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

.feature-title--stacked {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
}

.feature-title-chunk {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0;
    white-space: nowrap;
    border: none;
    background: transparent;
    color: inherit;
    font-weight: 800;
}

/* Ensure stacked feature titles align their chunks to the left inside centered cards */
.feature-title--stacked .feature-title-chunk {
    justify-content: flex-start;
    align-items: flex-start;
}

.feature-title-chunk--alert {
    border-color: rgba(255, 107, 107, 0.6);
    color: #ff6b6b;
}

.feature-title-chunk--success {
    border-color: rgba(80, 250, 123, 0.6);
    color: #50fa7b;
}

.feature-desc--stacked {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.feature-desc-line {
    white-space: nowrap;
}

/* AI System Grid */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.ai-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.ai-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ai-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.15), rgba(255, 215, 0, 0.25));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.ai-icon i {
    color: var(--primary);
}

.ai-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.ai-desc {
    font-size: 14px;
    color: var(--muted);
}

/* Pricing Section */
.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-headline {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-hero-amount {
    font-family: 'Merriweather', serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    color: #ff5c35;
    line-height: 1;
}

.pricing-subhead {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.pricing-value-note {
    font-size: 18px;
    font-weight: 600;
}

.pricing-value-note span {
    font-size: 28px;
    color: var(--primary);
    font-weight: 800;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.value-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.value-price {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 32px;
}

.pricing-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.pricing-amount {
    font-family: 'Merriweather', serif;
    font-size: clamp(56px, 8vw, 80px);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 16px;
}

.pricing-compare {
    font-size: 20px;
}

.pricing-compare del {
    opacity: 0.7;
    margin-right: 16px;
}

.badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 16px;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px 32px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 32px 24px;
    color: var(--muted);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p,
.footer-col li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Animations */
.fade-in {
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.2);
    }

    20%,
    40% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 61, 145, 0.4);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(11, 61, 145, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

@keyframes slideInScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(11, 61, 145, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(11, 61, 145, 0.4);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Cover Card Animations */
.cover-card {
    animation: fadeInUp 0.8s ease forwards;
}

.cover-title {
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.cover-subtitle {
    animation: slideInRight 0.8s ease 0.4s backwards;
}

.user-info {
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.user-avatar {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.user-avatar:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(11, 61, 145, 0.3);
}

.follow-btn {
    position: relative;
    overflow: hidden;
}

.follow-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.follow-btn:active::before {
    width: 300px;
    height: 300px;
}

.follow-btn:hover {
    animation: pulse 0.8s ease infinite;
}

.post-text {
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.tags {
    animation: fadeInUp 0.6s ease 1s backwards;
}

.tag {
    position: relative;
    overflow: hidden;
    animation: slideInScale 0.4s ease backwards;
}

.tag:nth-child(1) {
    animation-delay: 1s;
}

.tag:nth-child(2) {
    animation-delay: 1.1s;
}

.tag:nth-child(3) {
    animation-delay: 1.2s;
}

.tag:nth-child(4) {
    animation-delay: 1.3s;
}

.tag:nth-child(5) {
    animation-delay: 1.4s;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.tag:hover::before {
    left: 100%;
}

.tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.2);
}

.tag:active {
    transform: scale(0.95);
}

.engagement {
    animation: fadeInUp 0.6s ease 1.2s backwards;
}

.engagement-item {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.4s ease backwards;
}

.engagement-item:nth-child(1) {
    animation-delay: 1.2s;
}

.engagement-item:nth-child(2) {
    animation-delay: 1.3s;
}

.engagement-item:nth-child(3) {
    animation-delay: 1.4s;
}

.engagement-item:nth-child(4) {
    animation-delay: 1.5s;
}

.engagement-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(11, 61, 145, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.engagement-item:active::after {
    width: 100px;
    height: 100px;
}

.engagement-item:hover {
    transform: translateY(-3px);
}

.engagement-item:active {
    transform: scale(0.9);
}

.engagement-item.liked i {
    animation: heartBeat 0.5s ease;
    color: var(--primary);
}

.engagement-item.starred i {
    animation: bounce 0.6s ease;
    color: var(--gold);
}

.cta-buttons {
    animation: fadeInUp 0.6s ease 1.4s backwards;
}

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(11, 61, 145, 0.3);
}

.btn:active {
    transform: scale(0.95);
}

.cta-buttons .btn:nth-child(1) {
    animation: slideInLeft 0.6s ease 1.6s backwards;
}

.cta-buttons .btn:nth-child(2) {
    animation: slideInRight 0.6s ease 1.7s backwards;
}

/* Background Circle Animations */
.cover-image::before {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.cover-image::after {
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
    will-change: transform;
}

/* Performance optimizations */
.cover-card,
.btn,
.tag,
.engagement-item,
.user-avatar,
.follow-btn {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.gallery-subtitle {
    font-size: 18px;
    color: var(--muted);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.photo-large {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.photo-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.photo-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Gallery animations */
.photo-grid .photo-item:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.photo-grid .photo-item:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.photo-grid .photo-item:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.photo-grid .photo-item:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.photo-grid .photo-item:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.photo-grid .photo-item:nth-child(6) {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.photo-grid .photo-item:nth-child(7) {
    animation: fadeInUp 0.6s ease 0.7s both;
}

.photo-grid .photo-item:nth-child(8) {
    animation: fadeInUp 0.6s ease 0.8s both;
}

.photo-grid .photo-item:nth-child(9) {
    animation: fadeInUp 0.6s ease 0.9s both;
}

.photo-grid .photo-item:nth-child(10) {
    animation: fadeInUp 0.6s ease 1s both;
}

/* IP Showcase Grid */
.ip-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.ip-showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ip-showcase-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.ip-showcase-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ip-showcase-item:hover img {
    transform: scale(1.08);
}

.ip-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 61, 145, 0.95) 0%, rgba(11, 61, 145, 0.85) 50%, transparent 100%);
    padding: 32px 24px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ip-showcase-item:hover .ip-showcase-overlay {
    background: linear-gradient(to top, rgba(11, 61, 145, 0.98) 0%, rgba(11, 61, 145, 0.92) 50%, transparent 100%);
}

.ip-showcase-overlay h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ip-showcase-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
}


/* Mentor Intro Grid */
.mentor-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.mentor-intro-card {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.08), rgba(21, 101, 192, 0.12));
    border: 2px solid rgba(11, 61, 145, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.mentor-intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(11, 61, 145, 0.2);
    border-color: var(--primary);
}

.mentor-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.mentor-intro-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.mentor-intro-card p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.8;
    margin: 0;
}

/* Teaching Gallery */
.teaching-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.teaching-photo-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.teaching-photo-item:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.teaching-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.teaching-photo-item:hover img {
    transform: scale(1.08);
}

/* Online Course Gallery */
.online-course-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.online-course-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.online-course-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.online-course-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Student Feedback Grid */
.student-feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feedback-card {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.05), rgba(21, 101, 192, 0.08));
    border: 1px solid rgba(11, 61, 145, 0.15);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(11, 61, 145, 0.15);
    border-color: var(--primary);
}

.feedback-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.feedback-card p {
    font-size: 16px;
    color: var(--dark);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Community Gallery */
.community-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.community-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.community-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.community-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.community-item:hover img {
    transform: scale(1.05);
}

/* Partner Logos Grid */
.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .partner-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .partner-logos-grid {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
    }
}

@media (max-width: 560px) {
    .partner-logos-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 140px;
}

.partner-logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 36px rgba(11, 61, 145, 0.15);
    border-color: var(--primary);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    transform: scale(1.1);
}

/* Video Testimonials Section */
.video-testimonials-section {
    background: var(--light-bg);
    padding: 20px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
    grid-auto-flow: dense;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    background: #000;
    overflow: hidden;
}

/* 竖屏视频容器 */
.video-container--vertical {
    aspect-ratio: 9 / 16;
    max-height: 600px;
}

/* 横屏视频容器 */
.video-container--horizontal {
    aspect-ratio: 16 / 9;
}

.video-card--vertical .video-container--vertical {
    border-radius: 18px 18px 0 0;
}

.video-card--vertical .video-player {
    object-fit: cover;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 16px 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls-overlay,
.video-container.playing .video-controls-overlay {
    opacity: 1;
}

.video-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
}

.video-progress-filled {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.play-pause-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    transform: scale(1.1);
    background: #F4CF57;
}

.video-time {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.volume-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.volume-btn:hover {
    color: var(--gold);
}

.volume-slider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: none;
}

/* Play overlay button */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.95);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    pointer-events: all;
}

.video-container.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #F4CF57;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.video-description {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* 横屏视频特殊样式 */
.video-card--horizontal {
    grid-column: span 2;
    min-height: 100%;
}

/* Animations for new elements */
.ip-showcase-grid .ip-showcase-item:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.ip-showcase-grid .ip-showcase-item:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.ip-showcase-grid .ip-showcase-item:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.teaching-gallery .teaching-photo-item,
.online-course-gallery .online-course-item,
.community-gallery .community-item,
.partner-logos-grid .partner-logo-item {
    animation: fadeInUp 0.5s ease backwards;
}

.teaching-gallery .teaching-photo-item:nth-child(n) {
    animation-delay: calc(0.1s * var(--item-index, 1));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 1024px) {

    /* Timeline 切换为垂直布局 */
    .timeline-line {
        left: 40px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
        text-align: left;
    }

    .timeline-marker {
        left: 40px;
    }

    .timeline-item.right .timeline-list li {
        padding-left: 32px;
        padding-right: 0;
    }

    .timeline-item.right .timeline-list li::before {
        left: 0;
        right: auto;
    }

    /* 平板端见证卡片图片优化 */
    .testimonial-card--with-media .testimonial-media {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 24px;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .container {
        padding: 0 24px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .cover-image {
        height: 380px;
    }

    .cover-image::before {
        width: 200px;
        height: 200px;
        top: -70px;
        right: -60px;
    }

    .cover-image::after {
        width: 150px;
        height: 150px;
        bottom: -40px;
        left: -40px;
    }

    .cover-title {
        font-size: 30px;
        padding: 0 16px;
    }

    .cover-subtitle {
        padding: 0 16px;
    }

    .cover-content {
        padding: 20px;
    }

    .engagement {
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 95%;
    }

    .section--gradient {
        padding: 80px 0;
    }

    .section--gradient .section-header {
        margin-bottom: 50px;
    }

    .section--gradient .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .system-callout {
        width: 100%;
        display: block;
        padding: 16px 20px;
    }

    .stats-grid,
    .testimonial-grid,
    .features-grid,
    .ai-grid,
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Video grid响应式 */
    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .video-card--horizontal {
        grid-column: span 2;
    }

    .video-container--vertical {
        max-height: 520px;
    }

    .volume-control {
        display: none;
    }

    .play-overlay {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* 手机端testimonial卡片优化 */
    .testimonial-card--with-media {
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card--with-media .testimonial-content {
        padding: 24px 20px;
    }

    .testimonial-card--with-media .testimonial-media {
        height: 280px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        padding: 16px;
        margin-bottom: 16px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-title {
        font-size: 13px;
    }

    .author-location {
        font-size: 12px;
    }

    /* Photo Gallery responsive */
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }

    .photo-large,
    .photo-tall,
    .photo-wide,
    .photo-medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .photo-gallery-section {
        padding: 60px 0;
    }

    /* New elements responsive for 1024px */
    .ip-showcase-grid,
    .mentor-story-grid,
    .online-course-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .community-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .media-wall-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .community-proof-card {
        opacity: 1;
        transform: none;
    }

    .assistant-section {
        padding: 50px 32px;
        margin-top: 60px;
    }

    .assistant-section .section-title {
        font-size: 32px;
    }

    .assistant-section>p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 40px;
    }

    .assistant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .assistant-photo {
        height: 280px;
    }

    .mentor-highlight {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 24px;
    }

    .mentor-highlight-text h3 {
        font-size: 24px;
    }

    .mentor-line {
        font-size: 15px;
        line-height: 1.6;
        align-items: flex-start;
    }

    .mentor-quotes {
        gap: 12px;
    }

    .mentor-quote {
        font-size: 15px;
        padding: 14px 18px 14px 42px;
    }

    .mentor-spotlight-gallery {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 14px;
    }

    .mentor-spotlight-card {
        min-height: 180px;
    }

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

    /* Timeline 移动端优化 */
    .timeline-line {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        width: calc(100% - 60px);
        margin-left: 45px;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-title {
        font-size: 24px;
    }

    .timeline-list li {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .section--gradient .feature-card {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px 24px;
        align-items: flex-start;
        padding: 30px 26px;
        text-align: left;
    }

    .section--gradient .feature-icon {
        margin: 6px 0 0 0;
        font-size: 38px;
        grid-row: 1 / span 2;
        flex-shrink: 0;
    }

    .section--gradient .feature-title {
        margin: 0 0 10px;
        font-size: 18px;
        line-height: 1.5;
    }

    .section--gradient .feature-desc {
        margin: 0;
        font-size: 16px;
        line-height: 1.8;
        grid-column: 2;
    }

    .section--gradient .text-card-wrapper {
        margin-top: 40px;
    }

    .section--gradient .text-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {

    /* Force mobile to disable grid columns for assistant-grid and stack cards */
    .assistant-grid {
        grid-template-columns: unset !important;
        display: block !important;
        gap: 24px !important;
    }

    .assistant-card {
        width: 100% !important;
        margin-bottom: 20px;
    }

    /* Mobile-specific assistant adjustments to ensure single-column cards */
    .assistant-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .assistant-card {
        border-radius: 16px;
        padding: 0;
        overflow: hidden;
        border-width: 1.5px;
    }

    .assistant-photo {
        height: 220px;
    }

    .assistant-info {
        padding: 18px 16px 20px;
    }

    .assistant-info h4 {
        font-size: 20px;
    }

    .assistant-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .assistant-badge {
        top: 12px;
        left: 12px;
        padding: 0;
        font-size: 11px;
        border-radius: 0;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .logo {
        font-size: 20px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-header {
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .section--dark .section-header {
        background: #f4f7ff;
        border-radius: 20px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.85;
        letter-spacing: 0.02em;
        text-wrap: balance;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .mobile-center {
        text-align: center !important;
    }

    .mobile-plain {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    .section-subtitle br {
        display: none;
    }

    .mobile-emphasis {
        padding: 22px 20px;
        margin-top: 20px;
        border-radius: 20px;
        background: #f7f7ff;
        border: 1px solid rgba(11, 61, 145, 0.12);
        box-shadow: 0 18px 32px rgba(11, 61, 145, 0.15);
        font-size: 16px;
        line-height: 1.85;
        letter-spacing: 0.02em;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .section--gradient {
        padding: 60px 0;
    }

    .section--gradient .section-header {
        margin-bottom: 40px;
    }

    .section--gradient .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section--gradient .section-subtitle {
        font-size: 16px;
        line-height: 1.8;
    }

    .section--gradient .mobile-emphasis {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(212, 175, 55, 0.1));
        border-color: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        padding: 24px 22px;
    }

    .section--gradient .feature-card {
        padding: 28px 24px;

    }

    .section--gradient .feature-icon {
        font-size: 36px;
    }

    .section--gradient .feature-title {
        font-size: 17px;
    }

    .section--gradient .feature-desc {
        font-size: 15.5px;

    }

    .section--gradient .text-card {
        padding: 26px 22px;
    }

    .section--gradient .readable-text {
        font-size: 16.5px;
        line-height: 1.85;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-icon {
        font-size: 40px;
    }

    .btn {
        padding: 14px 32px;
        margin: 10px;
        font-size: 14px;
    }

    /* 超小屏幕见证卡片优化 */
    .testimonial-card--with-media .testimonial-media {
        height: 240px;
    }

    .testimonial-card--with-media .testimonial-content {
        padding: 20px 16px;
    }

    .testimonial-card--with-media {
        flex-direction: row;
        align-items: stretch;
    }

    .testimonial-card--with-media .testimonial-media {
        order: 1;
        flex: 0 0 42%;
        border-top: none;
        border-right: 1px solid rgba(11, 61, 145, 0.1);
        height: auto;
    }

    .testimonial-card--with-media .testimonial-content {
        order: 2;
        flex: 1;
        padding: 20px;
    }

    .testimonial-card--with-media .testimonial-media img {
        height: 100%;
        object-fit: cover;
    }

    .testimonial-media-label {
        font-size: 11px;
        padding: 0;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
    }

    .quote-card {
        margin: 60px auto;
        padding: 48px 56px;
        border-radius: 32px;
        border: 1px solid rgba(21, 101, 192, 0.18);
        box-shadow: 0 40px 90px rgba(6, 12, 30, 0.4);
        position: relative;
        overflow: hidden;
        text-align: left;
        max-width: 1080px;
    }

    .quote-card::after {
        content: '';
        position: absolute;
        inset: 14px;
        border-radius: 26px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        pointer-events: none;
    }

    .quote-card::before {
        content: '';
        position: absolute;
        top: -60px;
        left: -80px;
        width: 240px;
        height: 240px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 65%);
        opacity: 0.45;
    }

    .quote-card--founder {
        background: linear-gradient(135deg, #040710 0%, #101b2e 60%, #1c2e4f 100%);
        border: 1px solid rgba(212, 175, 55, 0.45);
        color: #f5f7ff;
        text-align: center;
    }

    .quote-card--direction {
        background: linear-gradient(135deg, #fffaf3 0%, #ffe6c8 100%);
        border-color: rgba(212, 175, 55, 0.5);
        color: #482100;
        text-align: center;
        box-shadow: 0 35px 70px rgba(255, 223, 186, 0.5);
    }

    .quote-card--success {
        background: linear-gradient(140deg, #ffffff 0%, #f4f8ff 100%);
        border: 1px solid rgba(11, 61, 145, 0.12);
        color: var(--dark);
        box-shadow: 0 35px 60px rgba(11, 61, 145, 0.18);
        padding: 42px 40px;
        text-align: left;
    }

    .quote-bg-icon {
        position: absolute;
        top: -18px;
        right: 30px;
        font-size: 120px;
        color: rgba(21, 101, 192, 0.08);
        pointer-events: none;
        z-index: 0;
    }

    .quote-content-list {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .quote-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(21, 101, 192, 0.06);
        border: 1px solid rgba(21, 101, 192, 0.12);
    }

    .quote-card--success .quote-item {
        background: rgba(21, 101, 192, 0.04);
    }

    .quote-icon {
        flex-shrink: 0;
        color: #fff;
        font-size: 16px;
        width: 32px;
        height: 32px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1565c0, #0d47a1);
        box-shadow: 0 10px 24px rgba(13, 71, 161, 0.35);
    }

    .quote-text {
        font-size: 18px;
        line-height: 1.8;
        color: #1f2a3c;
        margin: 0;
        font-weight: 600;
    }

    .highlight-item .quote-text {
        font-size: 19px;
        font-weight: 700;
        color: var(--primary);
        line-height: 1.6;
    }

    .highlight-item .quote-icon {
        background: linear-gradient(140deg, #f9d46f, #d4af37);
        color: #1c2230;
        box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
    }

    .text-highlight-blue {
        color: var(--primary);
        font-weight: 700;
        background: linear-gradient(120deg, transparent 0%, transparent 100%);
        background-repeat: no-repeat;
        background-size: 100% 30%;
        background-position: 0 85%;
    }

    .text-highlight-gold {
        color: #b48d18;
        font-weight: 800;
        position: relative;

    }

    .text-highlight-gold::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: -2px;
        right: -2px;
        height: 6px;
        background: rgba(212, 175, 55, 0.2);
        z-index: -1;
        transform: skewX(-10deg);
    }

    .quote-line {
        font-size: 20px;
        line-height: 1.7;
        font-weight: 600;
        margin: 0;
    }

    .quote-line+.quote-line {
        margin-top: 12px;
    }

    .signal-panel {
        display: flex;
        align-items: center;
        gap: 24px;
        border-radius: 32px;
        padding: 32px 36px;
        background: linear-gradient(130deg, #f6f9ff 0%, #e4edff 100%);
        border: 1px solid rgba(21, 101, 192, 0.18);
        box-shadow: 0 28px 60px rgba(9, 23, 48, 0.18);
        margin: 36px auto 0;
        max-width: 1050px;
    }

    .signal-panel__icon {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: linear-gradient(135deg, #1565c0, #0d47a1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        box-shadow: 0 20px 40px rgba(13, 71, 161, 0.35);
    }

    .signal-panel__title {
        margin: 0;
        font-size: 20px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
        font-weight: 800;
    }

    .signal-panel__desc {
        margin: 10px 0 18px;
        font-size: 18px;
        line-height: 1.85;
        color: #1a2540;
        font-weight: 600;
    }

    .signal-panel__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .signal-panel__tags span {
        padding: 6px 14px;
        border-radius: 999px;
        background: rgba(21, 101, 192, 0.08);
        border: 1px solid rgba(21, 101, 192, 0.15);
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
        font-weight: 700;
    }

    .commitment-panel {
        margin: 40px auto 0;
        padding: 32px 36px;
        border-radius: 32px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        background: linear-gradient(130deg, #0d1528 0%, #182643 100%);
        color: #f8f6ef;
        display: flex;
        align-items: center;
        gap: 24px;
        box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
        max-width: 980px;
    }

    .commitment-panel__icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #ffd76f;
    }

    .commitment-panel__title {
        margin: 0 0 6px;
        font-size: 18px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
    }

    .commitment-panel__desc {
        margin: 0;
        font-size: 18px;
        line-height: 1.8;
    }

    .commitment-panel__stamp {
        font-size: 20px;
        font-weight: 900;
        letter-spacing: 0.4em;
        color: rgba(255, 255, 255, 0.25);
    }

    .online-panel {
        margin: 32px auto 0;
        padding: 28px 32px;
        border-radius: 32px;
        border: 1px solid rgba(21, 101, 192, 0.12);
        background: linear-gradient(135deg, #e6f0ff 0%, #f7f9ff 100%);
        box-shadow: 0 25px 55px rgba(11, 31, 65, 0.15);
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 1050px;
    }

    .online-panel__icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: linear-gradient(135deg, #1b3b78, #0f2551);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        box-shadow: 0 20px 45px rgba(6, 22, 58, 0.35);
    }

    .online-panel__title {
        margin: 6px 0;
        font-size: 20px;
        font-weight: 800;
        color: #0f2344;
    }

    .online-panel__desc {
        margin: 0;
        font-size: 18px;
        line-height: 1.8;
        color: #1a2540;
        font-weight: 600;
    }

    .online-panel__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 18px;
    }

    .online-panel__tags span {
        padding: 6px 14px;
        border-radius: 999px;
        background: rgba(21, 101, 192, 0.08);
        border: 1px solid rgba(21, 101, 192, 0.15);
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
        font-weight: 700;
    }

    .online-badge {
        display: inline-flex;
        align-items: center;
        padding: 6px 16px;
        border-radius: 999px;
        background: rgba(21, 101, 192, 0.15);
        color: var(--primary);
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    .offer-banner {
        position: relative;
        padding: 28px 34px;
        border-radius: 26px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        border: 1px solid rgba(212, 175, 55, 0.35);
        background: linear-gradient(135deg, rgba(20, 27, 45, 0.85), rgba(31, 45, 74, 0.95));
        color: #f4f7ff;
        box-shadow: 0 30px 70px rgba(8, 12, 28, 0.35);
        overflow: hidden;
        margin-top: 32px;
    }

    .offer-banner::after {
        content: '';
        position: absolute;
        right: -30px;
        top: -40px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
        opacity: 0.5;
        pointer-events: none;
    }

    .offer-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 800;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-size: 11px;
    }

    .offer-copy {
        margin: 0;
        font-size: 18px;
        line-height: 1.7;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .offer-line {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .offer-line:first-child::before {
        content: '⚡';
        font-size: 18px;
    }

    .offer-line:last-child::before {
        content: '🚀';
        font-size: 18px;
    }

    .offer-banner--light {
        background: linear-gradient(155deg, rgba(4, 60, 129, 0.95), rgba(6, 22, 61, 0.98));
        border-color: rgba(64, 158, 255, 0.35);
    }

    .impact-panel {
        margin: 36px auto 0;
        padding: 36px 34px;
        border-radius: 32px;
        border: 1px solid rgba(21, 101, 192, 0.12);
        background: linear-gradient(135deg, #fefefe 0%, #f1f4ff 100%);
        box-shadow: 0 32px 80px rgba(8, 16, 35, 0.18);
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 1100px;
    }

    .impact-badge {
        display: inline-flex;
        align-items: center;
        padding: 6px 18px;
        border-radius: 999px;
        background: rgba(21, 101, 192, 0.08);
        color: var(--primary);
        font-weight: 700;
        letter-spacing: 0.2em;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .impact-title {
        font-size: 22px;
        line-height: 1.8;
        color: #122035;
        margin: 0;
        font-weight: 700;
    }

    .impact-subtitle {
        margin: 10px 0 0;
        font-size: 16px;
        color: rgba(18, 32, 53, 0.7);
        line-height: 1.8;
    }

    .impact-panel__stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px;
    }

    .impact-metric {
        padding: 18px 16px;
        border-radius: 18px;
        background: rgba(21, 101, 192, 0.07);
        border: 1px solid rgba(21, 101, 192, 0.12);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .impact-metric__icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(21, 101, 192, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 16px;
    }

    .metric-value {
        font-size: 17px;
        font-weight: 800;
        color: var(--primary);
    }

    .metric-label {
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(18, 32, 53, 0.55);
    }

    .pricing-banner {
        background: linear-gradient(135deg, #fff9ec 0%, #fce7c6 100%);
        border: 1px solid rgba(212, 175, 55, 0.4);
    }

    .online-banner {
        background: linear-gradient(135deg, #e3f0ff 0%, #f5f7ff 100%);
        border-color: rgba(21, 101, 192, 0.2);
    }

    .online-banner p {
        font-size: 18px;
        line-height: 1.8;
    }

    .price-shock {
        margin: 32px auto 0;
        text-align: center;
        background: linear-gradient(135deg, #141b2d 0%, #1d2e4a 100%);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 32px;
        padding: 32px 24px;
        color: #f5f5ff;
        box-shadow: 0 35px 70px rgba(6, 12, 30, 0.35);
    }

    .price-shock-label {
        font-size: 14px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 12px;
        display: block;
    }

    .price-shock-amount {
        font-size: clamp(46px, 8vw, 72px);
        font-weight: 900;
        color: #ffd15b;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        margin-bottom: 12px;
    }

    .price-shock p {
        margin: 0;
        font-size: 18px;
        line-height: 1.8;
    }

    @keyframes dropInCard {
        0% {
            opacity: 0;
            transform: translateY(-20px) scale(0.98);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes rippleGlow {
        0% {
            box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.25);
        }

        100% {
            box-shadow: 0 0 0 25px rgba(212, 175, 55, 0);
        }
    }

    @keyframes flipIn {
        0% {
            opacity: 0;
            transform: rotateX(-70deg);
        }

        100% {
            opacity: 1;
            transform: rotateX(0deg);
        }
    }

    @keyframes priceShockPulse {
        0% {
            transform: scale(1);
        }

        40% {
            transform: scale(1.08);
        }

        100% {
            transform: scale(1);
        }
    }

    .ani-drop {
        animation: dropInCard 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
    }

    .ani-ripple {
        animation: rippleGlow 2.8s ease-out infinite;
    }

    .ani-flip {
        animation: flipIn 0.9s ease-out both;
        transform-origin: top;
    }

    .ani-shock .price-shock-amount {
        animation: priceShockPulse 1.8s ease-in-out infinite;
    }

    @keyframes wavePulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 215, 111, 0.35);
        }

        70% {
            box-shadow: 0 0 0 18px rgba(255, 215, 111, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 215, 111, 0);
        }
    }

    .ani-wave {
        animation: wavePulse 2.4s ease-out infinite;
    }

    @keyframes glimmerPulse {
        0% {
            box-shadow: 0 40px 70px rgba(3, 6, 15, 0.45);
        }

        50% {
            box-shadow: 0 50px 90px rgba(3, 6, 15, 0.75);
        }

        100% {
            box-shadow: 0 40px 70px rgba(3, 6, 15, 0.45);
        }
    }

    .ani-glimmer {
        animation: glimmerPulse 4s ease-in-out infinite;
    }

    @keyframes riseIn {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.98);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .ani-rise {
        animation: riseIn 0.9s ease-out both;
    }

    /* Photo Gallery mobile */
    .photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(38vw, 1fr);
        gap: 10px;
    }

    .photo-gallery-section {
        padding: 40px 0;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 16px;
    }

    /* New elements responsive for 480px */
    .ip-showcase-grid,
    .online-course-gallery,
    .community-gallery,
    .mentor-story-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .partner-logo-item {
        padding: 20px;
        min-height: 100px;
    }

    .partner-logo-item img {
        max-height: 70px;
    }

    .mentor-intro-grid,
    .student-feedback-grid,
    .community-proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .community-proof-card {
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .community-proof-card img {
        flex: none;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .community-proof-body {
        padding: 22px 20px 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .community-proof-body h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .community-proof-body p {
        font-size: 14px;
        line-height: 1.65;
    }

    .assistant-section {
        padding: 40px 24px;
        margin-top: 50px;
    }

    .assistant-section .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .assistant-section>p {
        font-size: 15.5px;
        margin-bottom: 36px;
    }

    .assistant-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .assistant-photo {
        height: 280px;
    }

    .assistant-info {
        padding: 24px 22px 28px;
    }

    .assistant-info h4 {
        font-size: 22px;
    }

    .assistant-role {
        font-size: 12px;
    }

    .assistant-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .assistant-tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    .mentor-highlight {
        padding: 28px 20px;
        border-radius: 20px;
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .mentor-highlight-text {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .mentor-highlight-text h3 {
        font-size: 22px;
    }

    .mentor-line {
        font-size: 14px;
    }

    .mentor-spotlight-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mentor-spotlight-card {
        min-height: 200px;

    }

    .mentor-quote {
        font-size: 14px;
        padding: 12px 16px 12px 38px;
    }
}

/* Conditional photo: hide on screens wider than 1200px, show below */
@media (min-width: 1200px) {
    .photo-item.photo-conditional {
        display: none;
    }
}

@media (max-width: 1199px) {
    .photo-item.photo-conditional {
        display: block;
    }
}

.mentor-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.mentor-story-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.mentor-story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mentor-story-content {
    padding: 28px 26px 32px;
}

.mentor-story-content h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.mentor-story-quote {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.mentor-story-meta {
    font-size: 14px;
    color: var(--muted);
}

.mentor-story-meta strong {
    color: var(--primary);
}

.community-item:hover img {
    transform: scale(1.05);
}

.community-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 48px;
    width: 100%;
}

.online-daily-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.online-daily-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 220px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.online-daily-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.online-daily-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.media-wall {
    margin-top: 32px;
    display: grid;
    gap: 28px;
}

.media-wall-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.media-wall-grid--portraits {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.media-wall-item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.media-wall-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.community-proof-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(6, 37, 92, 0.12);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(11, 61, 145, 0.08);
    transform: translateY(26px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.community-proof-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.community-proof-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(11, 61, 145, 0.15);
}

.community-proof-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.community-proof-card:hover img {
    transform: scale(1.06);
}

.community-proof-body {
    padding: 26px 28px 30px;
    background: linear-gradient(to bottom, var(--white), rgba(11, 61, 145, 0.02));
}

.community-proof-body h4 {
    font-size: 19px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.community-proof-body p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.community-pulse-card {
    background: linear-gradient(135deg, #050b16 0%, #111b2f 60%, #1b3054 100%);
    border-radius: 36px;
    padding: 48px 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(3, 6, 15, 0.65);
    color: #f4f7ff;
    position: relative;
    overflow: hidden;
}

.community-pulse-card::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 215, 111, 0.35) 0%, transparent 65%);
    opacity: 0.6;
}

.pulse-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.2em;
    font-size: 12px;
    text-transform: uppercase;
}

.pulse-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.8;
}

.pulse-highlight {
    color: #ffd86f;
    text-shadow: 0 2px 8px rgba(255, 216, 111, 0.4);
}

.pulse-note {
    font-size: 18px;
    color: rgba(244, 247, 255, 0.88);
    margin: 16px 0 0;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.pulse-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.pulse-stat {
    flex: 1;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #ffd86f;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.system-highlight-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    padding: 40px 36px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.system-highlight-text {
    font-size: 20px;
    color: #fff;
    line-height: 1.7;
    font-weight: 600;
}

.system-highlight-gold {
    color: #ffd700;
    font-weight: 800;
    font-size: 22px;
    display: inline-block;
    margin-top: 6px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
}

.system-highlight-line {
    display: block;
    white-space: nowrap;
}

.result-guarantee-card {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 35px 80px rgba(15, 31, 75, 0.18);
    border: 1px solid rgba(11, 61, 145, 0.08);
}

.result-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(21, 101, 192, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

.result-title {
    font-size: 28px;
    line-height: 1.4;
    color: var(--dark);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.result-title-chunk {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.result-title-chunk--quote {
    font-style: italic;
}

.result-highlight {
    color: var(--primary);
    font-weight: 800;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.result-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(11, 61, 145, 0.08);
    background: rgba(11, 61, 145, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 61, 145, 0.25);
}

.result-icon {
    width: 100px;
    height: 40px;
    border-radius: 16px;
    background: rgba(11, 61, 145, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.result-content h4 {
    margin: 0 0 6px;
    font-size: 17px;
    color: var(--primary);
}

.result-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-truth-section {
    margin-top: 32px;
}

.pricing-truth-card {
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 28px;
    padding: 28px;
    background: linear-gradient(145deg, #fffef7 0%, #fff8e7 100%);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.18);
}

.pricing-truth-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pricing-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(21, 101, 192, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.pricing-truth-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.4;
}

.pricing-truth-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-truth-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(21, 101, 192, 0.05);
    border: 1px solid rgba(21, 101, 192, 0.1);
}

.pricing-truth-item.highlight {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.price-focus {
    font-size: clamp(42px, 6vw, 70px);
    color: var(--gold);
    display: inline-block;
    margin-top: 8px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.05em;
}

.pricing-text {
    margin: 0;
    color: var(--dark);
    line-height: 1.7;
}

.pricing-text-bold {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.cta-buttons-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-premium-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4CF57 50%, #D4AF37 100%);
    background-size: 200% auto;
    color: #1c2230;
    border: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    animation: shine 3s infinite linear;
}

.btn-premium-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-premium-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    background-position: right center;
}

.btn-premium-primary:hover::after {
    opacity: 1;
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-premium-secondary {
    border: 2px solid rgba(11, 61, 145, 0.15);
    color: var(--primary);
    padding-left: 32px;
    padding-right: 32px;
    background: transparent;
}

.btn-premium-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(11, 61, 145, 0.05);
    box-shadow: 0 8px 25px rgba(11, 61, 145, 0.1);
}

.btn-premium i {
    margin-left: 12px;
}

@keyframes btnPulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45);
    }

    100% {
        box-shadow: 0 0 0 18px rgba(212, 175, 55, 0);
    }
}

.btn-premium-primary {
    animation: btnPulseGlow 2.4s infinite;
}

@media (max-width: 992px) {
    .community-pulse-card {
        padding: 36px 32px;
    }

    .pulse-stats {
        flex-wrap: wrap;
    }

    .impact-panel {
        padding: 32px;
    }

    .impact-panel__stats {
        width: 100%;
        justify-content: flex-start;
    }

    .signal-panel,
    .commitment-panel,
    .online-panel {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .signal-panel__icon,
    .online-panel__icon {
        width: 64px;
        height: 64px;
    }

    .commitment-panel__stamp {
        align-self: stretch;
        text-align: right;
        letter-spacing: 0.2em;
    }

    .result-guarantee-card {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .community-pulse-card {
        padding: 28px 22px;
    }

    .pulse-title {
        font-size: 19px;
    }

    .pulse-stats {
        flex-direction: column;
    }

    .impact-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px;
        margin-bottom: 20px;
    }

    .result-header {
        text-align: left;
    }

    .result-title {
        font-size: 24px;
    }

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

    .cta-buttons-premium {
        flex-direction: row;
        gap: 12px;
    }

    .signal-panel,
    .commitment-panel,
    .online-panel {
        padding: 24px 22px;
        gap: 18px;
    }

    .signal-panel__tags,
    .online-panel__tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .commitment-panel__stamp {
        text-align: left;
        letter-spacing: 0.1em;
        font-size: 16px;
    }

    .online-panel__icon {
        width: 56px;
        height: 56px;
    }

    .btn-premium {
        width: auto;
        flex: 1;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .community-proof-grid,
    .per-run-grid,
    .online-daily-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

.system-highlight-card {
    padding: 28px 22px;
}

.system-highlight-text {
    font-size: 17px;
    line-height: 1.75;
}

.pricing-truth-card {
    padding: 24px;
}

.city-tour-wrap {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(11, 61, 145, 0.16);
}

.city-tour-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.city-tour-intro h4 {
    margin: 0;
    font-size: 20px;
    color: var(--primary);
}

.city-tour-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.city-tour-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
}

.city-tour-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 170px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    border: 1px solid rgba(11, 61, 145, 0.12);
    background: rgba(11, 61, 145, 0.05);
    isolation: isolate;
}

.city-tour-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 0;
    opacity: 0.9;
}

.city-tour-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: -1;
    transition: transform 0.6s ease;
}

.city-tour-item:hover img {
    transform: scale(1.08);
}

.city-tour-label {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.city-tour-label span {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.85;
}

.success-proof-intro {
    text-align: center;
    margin-bottom: 32px;
}

.success-proof-tagline {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.success-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.success-proof-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(11, 61, 145, 0.08);
    display: flex;
    flex-direction: column;
}

.success-proof-media {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f8ff;
}

.success-proof-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 12px;
}

.success-proof-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(11, 61, 145, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.success-proof-body {
    padding: 26px 28px 32px;
}

.success-proof-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.success-proof-body p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 500;
}

.mentor-highlight {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.12), rgba(255, 215, 0, 0.18));
    border-radius: 28px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(11, 61, 145, 0.15);
    box-shadow: 0 18px 46px rgba(11, 61, 145, 0.18);
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.mentor-highlight-text h4 {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.mentor-highlight-text h3 {
    margin: 0 0 16px;
    font-size: 28px;
    color: var(--dark);
}

.mentor-highlight-text p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

.mentor-lineup {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.mentor-card {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.95));
    box-shadow: 0 12px 32px rgba(11, 61, 145, 0.12);
    align-items: flex-start;
}

.mentor-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(11, 61, 145, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.mentor-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mentor-card-desc {
    margin: 0;
    line-height: 1.6;
    color: var(--muted);
    font-size: 15px;
}

.mentor-avatars-grid {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mentor-avatars-row {
    display: grid;
    gap: 20px;
}

.mentor-avatars-row--lead {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mentor-avatars-row--team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
}

.mentor-avatar-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mentor-avatar-card--lead {
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 236, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.mentor-avatar-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
}

.mentor-avatar-card--lead img {
    height: auto;
}

.mentor-avatar-name {
    font-weight: 700;
    font-size: 16px;
}

.mentor-avatar-role {
    font-size: 14px;
    color: var(--muted);
}

.mentor-quotes {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.mentor-quote {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    padding: 16px 20px 16px 46px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    box-shadow: 0 12px 28px rgba(11, 61, 145, 0.12);
    word-break: break-word;
}

.mentor-quote::before {
    content: '💬';
    position: absolute;
    left: 18px;
    top: 14px;
}

.mentor-spotlight-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    padding: 0 32px 0 0;
}

.mentor-spotlight-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 190px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.mentor-spotlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mentor-spotlight-card span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Assistant Section - Clean & Professional Design */
.assistant-section {
    margin-top: 80px;
    padding: 60px 15px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8f9fd 0%, #eef2fb 100%);
    border: 2px solid rgba(11, 61, 145, 0.1);
    box-shadow: 0 20px 60px rgba(11, 61, 145, 0.08);
    position: relative;
}

.assistant-section .section-title {
    color: var(--primary);
    text-align: center;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.assistant-section>p {
    color: var(--dark);
    line-height: 1.85;
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.assistant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 10px;
}

.assistant-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    border: 2px solid rgba(11, 61, 145, 0.12);
    box-shadow: 0 12px 35px rgba(11, 61, 145, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assistant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 61, 145, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
}

.assistant-photo {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4fb 0%, #e3ebf8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
}

.assistant-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s ease;
}

.assistant-card:hover .assistant-photo img {
    transform: scale(1.05);
}

.assistant-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #ff0000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    z-index: 2;
}

.assistant-info {
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
}

.assistant-info h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.assistant-role {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 4px;
}

.assistant-desc {
    margin: 0;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.assistant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.assistant-tag {
    padding: 7px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.08), rgba(21, 101, 192, 0.06));
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid rgba(11, 61, 145, 0.15);
    transition: all 0.3s ease;
}

.assistant-tag:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.readable-text {
    text-align: center;
    word-wrap: break-word;
    /* legacy */
    overflow-wrap: break-word;
    word-break: keep-all;
    letter-spacing: 0.01em;
    text-wrap: balance;
    hyphens: none;
}

.text-card-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.text-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 61, 145, 0.05);
}

.text-card p {
    margin-bottom: 1em;
    font-size: 18px;
    line-height: 1.85;
    color: var(--dark);
}

.text-card p:last-child {
    margin-bottom: 0;
}

.text-card h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.text-card--center {
    text-align: center;
}

.text-card--transparent {
    background: transparent;
    box-shadow: none;
    border: none;
}

/* Ensure text wraps intelligently - keep phrases together */
.text-card p,
.text-card .readable-text {
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: pretty;
    hyphens: none;
}

.text-card strong,
.text-card span {
    display: inline;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .text-card-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Reusable callout box - can be used across the site */
.callout-box {
    display: block;
    max-width: 820px;
    margin: 18px auto;
    padding: 18px 22px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(11, 61, 145, 0.03), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(11, 61, 145, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    color: var(--dark);
}

.callout-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.callout-box.callout-box--white {
    background: var(--white);
    border-color: rgba(11, 61, 145, 0.06);
    color: var(--dark);
}

.callout-box.callout-box--gradient {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

/* AI System Grid */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.ai-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.ai-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ai-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.15), rgba(255, 215, 0, 0.25));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.ai-icon i {
    color: var(--primary);
}

.ai-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.ai-desc {
    font-size: 14px;
    color: var(--muted);
}

/* Text Card Wrapper in Gradient Section */
.section--gradient .text-card-wrapper {
    margin-top: 60px;
}

.section--gradient .text-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.03));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 36px 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.section--gradient .readable-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.85;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: center;
}

.word-break-all {
    word-break: break-all;
}

.text-card {
    padding: 28px 24px;
}

.text-card p {
    font-size: 15.5px;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.85;
    text-wrap: pretty;
}

.text-card strong {
    font-weight: 700;
    word-break: keep-all;
}

.text-card-wrapper--mobile-col {
    grid-template-columns: 1fr;
}

.mobile-center {
    text-align: center !important;
}

/* Chinese text optimization for mobile */
@media (max-width: 768px) {

    p,
    span,
    strong,
    .section-subtitle,
    .mobile-emphasis,
    .readable-text {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Prevent orphan single characters at end of lines */
    .stacked-lines span,
    .mobile-emphasis,
    .section-subtitle,
    .readable-text,
    .feature-desc,
    .feature-title {
        text-wrap: pretty;
    }
}

/* Fix for Community Proof Card on Mobile - Column Layout with Image on Top */
@media (max-width: 640px) {
    .community-proof-card {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .community-proof-card img {
        flex: none;
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-right: none;
    }

    .community-proof-body {
        padding: 18px 16px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .community-proof-body h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .community-proof-body p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Force 2 columns for city tour grid on mobile */
    .city-tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .city-tour-item {
        min-height: 140px;
    }

    .city-tour-label {
        font-size: 13px;
        padding: 8px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .city-tour-label span {
        font-size: 11px;
        background: rgba(255, 255, 255, 0.2);
        padding: 2px 6px;
        border-radius: 4px;
    }
}

.text-highlight-blue {
    color: #1565c0;
    font-weight: 700;
}

@media (min-width: 769px) {
    .quote-card {
        margin: 64px auto;
        padding: 48px 56px;
        border-radius: 34px;
        border: 1px solid rgba(21, 101, 192, 0.2);
        box-shadow: 0 40px 90px rgba(6, 12, 30, 0.4);
        position: relative;
        overflow: hidden;
        text-align: left;
        max-width: 1100px;
    }

    .quote-card::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -90px;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.32) 0%, transparent 65%);
        opacity: 0.45;
    }

    .quote-card::after {
        inset: 16px;
        border-radius: 28px;
    }

    .quote-card--founder {
        background: linear-gradient(135deg, #040710 0%, #101b2e 60%, #1c2e4f 100%);
        border: 1px solid rgba(212, 175, 55, 0.45);
        color: #f5f7ff;
        text-align: center;
    }

    .quote-card--direction {
        background: linear-gradient(135deg, #fffaf3 0%, #ffe6c8 100%);
        border-color: rgba(212, 175, 55, 0.45);
        color: #482100;
        text-align: center;
        box-shadow: 0 35px 80px rgba(255, 223, 186, 0.55);
    }

    .quote-card--direction .quote-line,
    .quote-card--founder .quote-line {
        font-size: 26px;
        font-weight: 700;
        line-height: 1.8;
        margin: 0;
    }

    .quote-card--success {
        padding: 44px 42px;
    }

    .quote-bg-icon {
        top: -20px;
        right: 36px;
        font-size: 140px;
    }

    .quote-content-list {
        gap: 18px;
    }

    .quote-item {
        padding: 18px 22px;
        border-radius: 20px;
        background: rgba(21, 101, 192, 0.06);
        border: 1px solid rgba(21, 101, 192, 0.12);
    }

    .quote-card--success .quote-item {
        background: rgba(21, 101, 192, 0.04);
    }

    .quote-text {
        font-size: 18px;
        line-height: 1.85;
    }

    .impact-panel {
        margin: 48px auto 0;
        padding: 48px 56px;
        border-radius: 36px;
        background: linear-gradient(135deg, #fdfdfd 0%, #f3f7ff 100%);
        border: 1px solid rgba(21, 101, 192, 0.12);
        box-shadow: 0 45px 90px rgba(8, 16, 35, 0.2);
        align-items: center;
        gap: 36px;
        flex-wrap: nowrap;
    }

    .impact-panel__copy {
        flex: 1 1 380px;
    }

    .impact-panel__stats {
        display: flex;
        gap: 18px;
    }

    .impact-metric {
        min-width: 140px;
        padding: 20px;
        border-radius: 20px;
        background: rgba(21, 101, 192, 0.08);
        border: 1px solid rgba(21, 101, 192, 0.15);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    .impact-metric .metric-value {
        font-size: 18px;
        font-weight: 800;
        color: var(--primary);
    }

    .impact-metric .metric-label {
        margin-top: 6px;
        letter-spacing: 0.1em;
        color: rgba(18, 32, 53, 0.6);
    }

    .offer-banner--light {
        max-width: 1050px;
        padding: 38px 44px;
        border-radius: 34px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
        box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
    }

    .offer-banner--light p {
        font-size: 20px;
        line-height: 1.9;
    }

    .online-panel {
        max-width: 1050px;
        padding: 32px 40px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 24px;
        text-align: left;
    }

    .online-panel__desc {
        font-size: 20px;
        line-height: 1.85;
        margin: 0;
    }

    .online-badge {
        font-size: 13px;
        letter-spacing: 0.25em;
    }

    .price-focus {
        font-size: clamp(46px, 5vw, 72px);
        letter-spacing: 0.08em;
        margin-top: 12px;
        text-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
}

/* Diagnosis Section Styles */
.diagnosis-section {
    margin-bottom: 60px;
}

.diagnosis-wrapper {
    display: flex;
    gap: 24px;
    align-items: stretch;
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
}

.diagnosis-card {
    flex: 1;
    padding: 40px 32px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diagnosis-card--pain {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.diagnosis-card--solution {
    background: linear-gradient(135deg, var(--primary) 0%, #0d47a1 100%);
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(11, 61, 145, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diagnosis-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.diagnosis-card--pain .diagnosis-icon-wrapper {
    background: rgba(255, 92, 53, 0.1);
    color: #ff5c35;
}

.diagnosis-card--solution .diagnosis-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    color: #ffd700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.diagnosis-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.diagnosis-card--pain .diagnosis-title {
    color: #333;
}

.diagnosis-card--solution .diagnosis-title {
    color: #ffffff;
}

.diagnosis-desc {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.diagnosis-card--pain .diagnosis-desc {
    color: #666;
}

.diagnosis-card--solution .diagnosis-desc {
    color: rgba(255, 255, 255, 0.9);
}

.diagnosis-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.diagnosis-connector span {
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(11, 61, 145, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .diagnosis-wrapper {
        flex-direction: column;
        gap: 40px;
        margin-top: 32px;
    }

    .diagnosis-card {
        padding: 32px 24px;
    }

    .diagnosis-connector {
        height: 0;
    }

    .diagnosis-connector span {
        transform: translate(-50%, -50%) rotate(0deg);
        /* Keep horizontal text */
        margin-top: -20px;
        /* Adjust position for vertical stack */
    }
}

/* ===================================
   LIGHTBOX MOBILE OPTIMIZATION
   =================================== */

/* Ensure lightbox images fit properly on mobile devices */
@media (max-width: 768px) {
    /* Fix for lightbox images on mobile - prevent overflow */
    body > div[style*="position: fixed"][style*="z-index"] img {
        max-width: calc(100vw - 40px) !important;
        max-height: calc(100vh - 40px) !important;
        max-height: calc(100dvh - 40px) !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    /* Ensure lightbox container uses full viewport */
    body > div[style*="position: fixed"][style*="z-index"][style*="background: rgba(0, 0, 0"] {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)) !important;
        box-sizing: border-box !important;
    }
}

/* ===================================
   UNIFIED FOOTER STYLES
   =================================== */

.unified-footer {
    background: linear-gradient(135deg, #0B3D91 0%, #1565C0 100%);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Footer About Section */
.footer-logo {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 900;
    color: #FFD700;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.highlight-icon {
    font-size: 20px;
}

.footer-highlight strong {
    font-size: 14px;
    color: #FFD700;
}

/* Footer Titles */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

/* WhatsApp Link */
.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.whatsapp-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.whatsapp-number {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

/* Cities List */
.cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cities-list li {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.3s ease;
}

.cities-list li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Company Legal Info */
.footer-company-info {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.company-legal {
    text-align: center;
}

.company-name {
    font-size: 20px;
    font-weight: 800;
    color: #FFD700;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.company-reg {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
}

.company-address {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.address-icon {
    font-size: 16px;
}

.company-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.company-type,
.established {
    font-weight: 600;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

.more-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .unified-footer {
        padding: 40px 16px 16px;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-logo {
        font-size: 24px;
        text-align: center;
    }

    .footer-description {
        font-size: 14px;
        text-align: center;
    }

    .footer-highlight {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .footer-title {
        font-size: 16px;
        text-align: center;
    }

    .whatsapp-link {
        padding: 14px 16px;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-number {
        font-size: 16px;
    }

    .cities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cities-list li {
        padding: 8px 12px;
        font-size: 13px;
    }

    .footer-company-info {
        padding: 24px 0;
        margin-bottom: 20px;
    }

    .company-name {
        font-size: 16px;
    }

    .company-reg {
        font-size: 12px;
    }

    .company-address {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }

    .company-meta {
        font-size: 12px;
        gap: 8px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .copyright {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .unified-footer {
        padding: 32px 12px 12px;
    }

    .footer-grid {
        gap: 28px;
    }

    .company-address {
        font-size: 11px;
    }

    .company-meta {
        flex-direction: column;
        gap: 6px;
    }

    .separator {
        display: none;
    }
}