/* About Page - Ultra Premium Design */
:root {
    --accent: #c7000b;
    --text: #111;
    --text-secondary: #6e6e73;
    --bg: #fff;
    --bg-subtle: #f5f5f7;
    --border: #e5e5e5;
    --radius: 24px;
    --radius-sm: 16px;
    --radius-xs: 8px;
}

/* Reset */
.about-page {
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

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

/* Navigation - Sync with index.html */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 0 40px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.logo svg text {
    fill: #111;
}

.nav-menu a {
    color: #111;
    text-decoration: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c7000b, #ff4444);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c7000b;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 30px;
}

.nav-contact {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.nav-contact .phone {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #111;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-contact .phone:hover {
    background: #c7000b;
    border-color: #c7000b;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
}

/* Scrolled state - white glass with dark text */
.navbar.scrolled .logo svg text {
    fill: #111;
}

.navbar.scrolled .nav-menu a {
    color: #111;
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: #c7000b;
}

.navbar.scrolled .nav-contact .phone {
    color: #111;
    border-color: #111;
}

.navbar.scrolled .nav-contact .phone:hover {
    background: #c7000b;
    border-color: #c7000b;
    color: #fff;
}

.navbar.scrolled .hamburger span {
    background: #111;
}

/* Language switcher - About page has light background, override i18n.css white text */
/* Using .about-page prefix to increase specificity (0,3,0) and beat i18n.css (0,2,0) */
.about-page .navbar:not(.scrolled) .lang-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: #111;
}

.about-page .navbar:not(.scrolled) .lang-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Section Common */
.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text);
}

.text-accent {
    color: var(--accent);
}

/* Top Marquee Banner */
.top-marquee {
    margin-top: 80px;
    padding: 15px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.top-marquee .marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 15s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.top-marquee .marquee-track span {
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.08);
    letter-spacing: 2px;
    flex-shrink: 0;
    padding: 0 20px;
}

/* ==================== Hero Section ==================== */
.hero-section {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 110px 24px 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-subtle);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    color: var(--text);
}

.hero-title-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--text);
}

.hero-stat-suffix {
    font-size: 32px;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ==================== Intro Section ==================== */
.intro-section {
    padding: 0 0 60px;
}

.intro-marquee {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 100px;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0,0,0,0.04);
    letter-spacing: -1px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.intro-text strong {
    color: var(--text);
    font-weight: 600;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.intro-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--text);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.intro-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.intro-feature-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==================== Showcase Section ==================== */
.showcase-section {
    padding: 0 0 120px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.showcase-card {
    background: var(--bg-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.showcase-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.showcase-card-img {
    height: 300px;
    overflow: hidden;
}

.showcase-card-large .showcase-card-img {
    height: 100%;
}

.showcase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.showcase-card-content {
    padding: 36px;
}

.showcase-card-large .showcase-card-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-card-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.showcase-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.showcase-card-large .showcase-card-title {
    font-size: 28px;
}

.showcase-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.showcase-card-tags span {
    padding: 6px 14px;
    background: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

/* ==================== Timeline Section ==================== */
.timeline-section {
    padding: 120px 0;
    background: var(--bg-subtle);
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-dot-inner {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot-inner {
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(199,0,11,0.2);
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-year {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.timeline-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ==================== Advantages Section - Bento ==================== */
.advantages-section {
    padding: 120px 0;
}

.advantages-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--bg-subtle);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bento-card-accent {
    background: var(--text);
    color: #fff;
}

.bento-card-accent .bento-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.bento-card-accent .bento-desc {
    color: rgba(255,255,255,0.7);
}

.bento-card-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--text);
}

.bento-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ==================== Process Section ==================== */
.process-section {
    padding: 120px 0;
    background: var(--bg-subtle);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    margin-bottom: 16px;
}

.process-step-line {
    width: 100%;
    height: 2px;
    background: var(--border);
    margin-bottom: 20px;
}

.process-step:last-child .process-step-line {
    display: none;
}

.process-step-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== Team Section ==================== */
.team-section {
    padding: 120px 0;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-subtle);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.team-card-avatar {
    width: 80px;
    height: 80px;
    background: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.team-initial {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.team-card:hover .team-card-avatar {
    background: var(--accent);
    transform: scale(1.1);
}

.team-card-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-card-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.team-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.team-card-tags span {
    padding: 6px 14px;
    background: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.team-card:hover .team-card-tags span {
    background: var(--text);
    color: #fff;
}

/* ==================== Qualifications Section ==================== */
.qual-section {
    padding: 120px 0;
    background: var(--bg-subtle);
}

.qual-header {
    text-align: center;
    margin-bottom: 60px;
}

.qual-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.qual-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
}

.qual-card-icon {
    width: 52px;
    height: 52px;
    background: var(--text);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    font-size: 20px;
}

.qual-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.qual-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qual-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

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

.qual-card-list li i {
    width: 20px;
    height: 20px;
    background: rgba(199,0,11,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 10px;
    flex-shrink: 0;
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 160px 24px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--text);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-secondary {
    background: var(--bg-subtle);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--border);
}

/* ==================== Footer ==================== */
.about-footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

/* ==================== Animations ==================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-card-large {
        grid-template-columns: 1fr;
    }

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

    .bento-card-wide {
        grid-column: span 1;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #111;
        transition: all 0.3s ease;
    }

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

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

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

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 24px;
    }

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

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-menu a {
        font-size: 24px;
        color: #111;
        padding: 12px 24px;
    }

    .nav-contact {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-stat-divider {
        width: 48px;
        height: 1px;
    }

    .hero-title-line {
        letter-spacing: -1px;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 24px;
    }

    .process-step-line {
        display: none;
    }

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

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

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

    .cta-buttons a {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    /* Mobile Hero */
    .hero-section {
        min-height: auto;
        padding: 40px 16px 60px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-title-line {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .hero-stat-label {
        font-size: 12px;
    }

    .hero-stat-divider {
        width: 40px;
    }

    /* Mobile Marquee */
    .top-marquee,
    .intro-marquee {
        padding: 12px 0;
    }

    .marquee-track span {
        font-size: 24px;
        margin-right: 24px;
    }

    /* Mobile Intro */
    .intro-section {
        padding: 60px 16px;
    }

    .intro-label {
        font-size: 11px;
    }

    .intro-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .intro-text p {
        font-size: 14px;
    }

    .intro-features {
        gap: 16px;
    }

    .intro-feature {
        padding: 16px;
    }

    .intro-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .intro-feature-text span {
        font-size: 13px;
    }

    /* Mobile Showcase */
    .showcase-section {
        padding: 60px 16px;
    }

    .section-label {
        font-size: 11px;
    }

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

    .showcase-card-large {
        gap: 40px;
    }

    .showcase-card-content {
        padding: 24px 0;
    }

    .showcase-card-title {
        font-size: 22px;
    }

    .showcase-card-desc {
        font-size: 14px;
    }

    .showcase-tags {
        gap: 8px;
    }

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

    .showcase-card-image {
        height: 200px;
    }

    /* Mobile Timeline */
    .timeline-section {
        padding: 60px 16px;
    }

    .timeline-header {
        margin-bottom: 40px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 32px;
    }

    .timeline-dot {
        width: 36px;
        height: 36px;
        left: 2px;
    }

    .timeline-year {
        font-size: 20px;
    }

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

    .timeline-desc {
        font-size: 13px;
    }

    /* Mobile Bento */
    .bento-section {
        padding: 60px 16px;
    }

    .bento-card {
        padding: 24px;
        border-radius: 16px;
    }

    .bento-card-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .bento-card-title {
        font-size: 18px;
    }

    .bento-card-desc {
        font-size: 13px;
    }

    /* Mobile Process */
    .process-section {
        padding: 60px 16px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        padding: 24px;
    }

    .process-step-number {
        font-size: 48px;
    }

    .process-step-content h3 {
        font-size: 16px;
    }

    .process-step-content p {
        font-size: 13px;
    }

    /* Mobile Team */
    .team-section {
        padding: 60px 16px;
    }

    .team-card {
        padding: 24px;
    }

    .team-card-avatar {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .team-card-name {
        font-size: 18px;
    }

    .team-card-role {
        font-size: 13px;
    }

    .team-card-desc {
        font-size: 13px;
    }

    .team-card-skills {
        gap: 6px;
    }

    .team-card-skill {
        padding: 5px 10px;
        font-size: 11px;
    }

    /* Mobile Qualifications */
    .qual-section {
        padding: 60px 16px;
    }

    .qual-card {
        padding: 24px;
    }

    .qual-card-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .qual-card-title {
        font-size: 18px;
    }

    .qual-card-list li {
        font-size: 13px;
    }

    /* Mobile CTA */
    .cta-section {
        padding: 60px 16px;
    }

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

    .cta-desc {
        font-size: 14px;
    }

    /* Mobile Footer */
    .about-footer {
        padding: 40px 16px 24px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-copy {
        font-size: 11px;
    }
}
