/* ===================================
   CSS Variables & Reset
   =================================== */

:root {
    /* Colors - Lighter & More Vibrant */
    --primary-blue: #0077CC;
    --primary-blue-dark: #005999;
    --primary-blue-light: #4D9FE8;
    --accent-orange: #FF8C42;
    --accent-orange-dark: #E67A2E;
    --water-blue: #00BCD4;
    --water-light: #E0F7FA;
    --sky-blue: #87CEEB;

    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #0D2C54;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-water: 0 8px 32px rgba(0, 184, 212, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ===================================
   Section Headers
   =================================== */

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

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--water-blue));
}

.section-label::before {
    left: -40px;
}

.section-label::after {
    right: -40px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 700px;
    margin: 16px auto 0;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-orange), #FF6B35);
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 140, 66, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-2px);
}

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

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

.btn-block {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-wave {
    font-size: 36px;
    color: var(--water-blue);
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.logo-text {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-divider {
    font-size: 20px;
    color: var(--primary-blue-light);
    opacity: 0.6;
    margin: 0 4px;
}

.logo-chinese {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    opacity: 0.85;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--water-blue));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('../images/index_slider.png') center/cover no-repeat;
    padding-top: 80px;
}

/* 深色遮罩確保文字可讀性 */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 30, 60, 0.75) 0%,
        rgba(0, 50, 90, 0.65) 50%,
        rgba(0, 70, 120, 0.55) 100%
    );
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.3;
    z-index: 2;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 300px;
    opacity: 0.1;
}

.wave-1 {
    background: linear-gradient(180deg, transparent, var(--water-blue));
    animation: wave-flow 15s ease-in-out infinite;
}

.wave-2 {
    background: linear-gradient(180deg, transparent, rgba(0, 184, 212, 0.5));
    animation: wave-flow 20s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.wave-3 {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1));
    animation: wave-flow 25s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes wave-flow {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25%) translateY(-20px);
    }
}

.hero-ripple {
    position: absolute;
    border: 2px solid rgba(0, 184, 212, 0.3);
    border-radius: 50%;
    animation: ripple 8s ease-out infinite;
}

.ripple-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
}

.ripple-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    right: 15%;
    animation-delay: -3s;
}

.ripple-3 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 50%;
    animation-delay: -6s;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
                 0 2px 8px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: fade-in-up 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-highlight {
    color: #FF6B35;
    position: relative;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    animation: fade-in-up 0.8s ease-out 0.8s backwards;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3),
                 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease-out 1s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    animation: fade-in 1s ease-out 1.2s backwards;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   Why Us Section
   =================================== */

.why-us {
    background: var(--bg-light);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-card {
    background: white;
    padding: 48px 32px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--water-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-card:hover::before {
    transform: scaleX(1);
}

.card-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: var(--bg-light);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.card-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.card-desc {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    opacity: 0;
}

.why-card:hover .card-shine {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* ===================================
   Stats Section
   =================================== */

.stats {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.stats-background {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 184, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.15) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, white, var(--water-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-plus,
.stat-suffix,
.stat-unit {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--accent-orange);
    display: inline;
    margin-left: 4px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
}

/* ===================================
   Services Preview
   =================================== */

.services-preview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--water-blue));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-water);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: var(--primary-blue-dark);
    gap: 12px;
}

/* Featured Service Card */
.service-card.featured {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--water-blue) 100%);
    border-color: var(--water-blue);
    position: relative;
}

.service-card.featured .service-title,
.service-card.featured .service-desc {
    color: white;
}

.service-card.featured .service-link {
    color: white;
    font-weight: 700;
}

.service-card.featured .service-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured::before {
    display: none;
}

.service-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Services More Section */
.services-more {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 2px solid var(--bg-light);
}

.services-more p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* ===================================
   Team Highlights
   =================================== */

.team-highlights {
    background: var(--bg-light);
}

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

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.team-member.founder {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--water-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-member.founder .member-image {
    aspect-ratio: auto;
}

.image-placeholder {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.member-info {
    padding: 32px;
}

.member-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.member-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.member-title {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-cta {
    text-align: center;
}

/* ===================================
   Success Stories Preview
   =================================== */

.success-preview {
    background: white;
}

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

.success-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.success-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.success-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.success-info {
    padding: 32px 24px;
}

.success-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-school {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.success-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.detail-item {
    font-size: 13px;
    color: var(--text-medium);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 8px;
}

.success-quote {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.success-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--water-blue);
    font-family: serif;
    line-height: 1;
}

.success-cta {
    text-align: center;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #0066CC 0%, #0088DD 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--water-blue));
    animation: wave-flow 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */

.about {
    background: white;
}

.about-story {
    margin-bottom: 80px;
}

.story-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.core-values {
    max-width: 1000px;
    margin: 0 auto;
}

.values-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

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

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.value-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-desc {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   Services Detail (Accordion)
   =================================== */

.services-detail {
    background: var(--bg-light);
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.accordion-item.active {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
}

.accordion-title h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.accordion-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
    background: var(--primary-blue);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.service-summary {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    padding: 0 32px 24px;
}

.service-details {
    padding: 0 32px 32px;
}

.service-details h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    font-size: 15px;
    color: var(--text-medium);
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.6;
}

.service-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--bg-light);
}

.meta-item {
    font-size: 14px;
    color: var(--text-medium);
}

.meta-item strong {
    color: var(--text-dark);
}

/* ===================================
   Services Page - New Layout
   =================================== */

.services-overview {
    background: var(--bg-light);
    padding: 80px 0 100px;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-medium);
}

.services-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-page {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-card-page.featured {
    background: linear-gradient(135deg, #0077DD 0%, #00BCD4 100%);
    color: white;
}

.service-card-page.featured .service-title,
.service-card-page.featured .service-description,
.service-card-page.featured .highlight-item span {
    color: white;
}

.service-card-page.featured .highlight-icon {
    color: var(--accent-orange);
}

.service-card-page.featured .service-duration,
.service-card-page.featured .service-target {
    color: rgba(255, 255, 255, 0.9);
}

.service-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-highlights {
    flex-grow: 1;
    margin-bottom: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.highlight-icon {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
    font-size: 14px;
    color: var(--text-light);
}

.service-card-page.featured .service-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-target {
    font-weight: 500;
}

/* Service Process Timeline */
.service-process {
    background: white;
    padding: 100px 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 48px);
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    opacity: 0.3;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    z-index: 1;
}

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

.step-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Services CTA Section */
.services-cta-section {
    background: linear-gradient(135deg, #0066CC 0%, #0088DD 50%, #00BCD4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.services-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    font-size: 18px;
    padding: 18px 48px;
}

/* ===================================
   FAQ Section
   =================================== */

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

.page-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 700px;
    margin: 16px auto 0;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-of-type {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-blue);
    display: inline-block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-blue);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-blue);
    color: white;
}

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

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

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
    padding: 0 28px;
}

.faq-answer p:first-child {
    padding-top: 8px;
}

.faq-answer p:last-child {
    padding-bottom: 24px;
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    padding: 0 28px 0 48px;
    margin-bottom: 16px;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.faq-answer ul li {
    list-style: disc;
}

.faq-answer ol li {
    list-style: decimal;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer .highlight-box {
    background: #fff9e6;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    margin: 16px 28px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-answer .highlight-box strong {
    color: #d97706;
    display: block;
    margin-bottom: 8px;
}

.faq-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    border-radius: 20px;
    text-align: center;
}

.faq-cta-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.faq-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

/* ===================================
   Application Process (Detailed)
   =================================== */

.application-process {
    background: var(--bg-light);
    padding: 100px 0;
}

.process-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.process-phase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-blue);
    transition: var(--transition-smooth);
}

.process-phase:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--bg-light);
    flex-wrap: wrap;
}

.phase-number {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.phase-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
    min-width: 200px;
}

.phase-duration {
    font-size: 14px;
    color: var(--text-medium);
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 16px;
    font-weight: 600;
}

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

.detail-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    font-size: 32px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    flex-shrink: 0;
}
/* ===================================
   Events Announcement Section
   =================================== */

.events-announcement {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--water-blue) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--section-padding); /* Added to push down the next section */
}

.events-announcement::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.events-announcement::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(50px);
}

.events-announcement .container {
    position: relative;
    z-index: 1;
}

.events-announcement-content {
    max-width: 800px;
    margin: 0 auto;
}

.events-announcement-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.events-announcement-content p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.events-announcement .btn {
    background: white;
    color: var(--primary-blue);
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.events-announcement .btn:hover {
    background: var(--bg-light);
    color: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* ===================================
   Events Page Specific Styles
   =================================== */
.events-list {
    background: var(--bg-light);
}

.event-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

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

.event-date-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    color: white;
    padding: 25px 0;
    text-align: center;
    font-family: var(--font-display);
    flex-shrink: 0; /* Prevent shrinking on smaller screens */
}

.event-month {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.event-day {
    display: block;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin: 8px 0;
}

.event-year {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    opacity: 0.8;
}

.event-details {
    padding: 30px;
    flex-grow: 1;
}

.event-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.event-meta p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.event-meta strong {
    color: var(--text-dark);
}

.event-cta {
    margin-top: 25px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
}

.event-card.event-placeholder .event-date-box {
    background: linear-gradient(135deg, #7A7A7A 0%, #A0A0A0 100%);
}

.event-card.event-placeholder .event-title,
.event-card.event-placeholder .event-meta p {
    color: var(--text-light);
}

.event-card.event-placeholder .event-cta.disabled {
    background: #CCC;
    color: #888;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.event-card.event-placeholder .event-cta.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive Adjustments for Events */
@media (min-width: 768px) {
    .event-card {
        flex-direction: row;
    }
    .event-date-box {
        width: 180px;
        min-width: 180px;
        padding: 30px 0;
    }
    .event-details {
        padding: 30px 40px;
    }
}

@media (max-width: 767px) {
    .events-announcement {
        padding: 40px 0;
    }
    .events-announcement-content h2 {
        font-size: 24px;
    }
    .events-announcement-content p {
        font-size: 16px;
    }
    .event-card {
        margin-bottom: 30px;
    }
    .event-date-box {
        padding: 20px 0;
    }
    .event-day {
        font-size: 48px;
    }
    .event-details {
        padding: 20px 25px;
    }
    .event-title {
        font-size: 20px;
    }
    .event-meta p {
        font-size: 14px;
    }
}

.registration-method {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 15px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-dark);
    clip-path: ellipse(55% 100% at 50% 0%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--water-blue);
}

.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-grid .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid .footer-column:first-child {
        grid-column: auto;
    }
}

/* ===================================
   About Page — Page Header
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a4a7a 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header .section-label {
    color: var(--water-blue);
    margin-bottom: 20px;
}

.page-header .section-label::before,
.page-header .section-label::after {
    background: linear-gradient(90deg, var(--water-blue), var(--primary-blue-light));
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

/* ===================================
   About Page — Team Full Section
   =================================== */

.team-full {
    background: var(--bg-light);
}

/* Founders grid — two cards side by side */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

/* Founder Profile — vertical card */
.founder-profile {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.founder-image {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--water-blue));
    aspect-ratio: 4 / 3;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 32px 32px;
}

.founder-content .member-badge {
    align-self: flex-start;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.founder-title {
    font-size: 15px;
    color: var(--primary-blue);
    font-weight: 500;
    margin: 0;
}

.founder-bio {
    margin-top: 6px;
}

.founder-bio p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

/* Team Grid — advisor cards */
.team-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.team-member-full {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    align-items: start;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 32px;
    transition: var(--transition-smooth);
}

.team-member-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-member-full .member-image {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--water-blue));
    aspect-ratio: 1;
}

.team-member-full .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.member-content .member-name {
    font-size: 22px;
    margin-bottom: 0;
}

.member-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-top: 4px;
}

.member-achievements {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.member-achievements p {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.6;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag {
    display: inline-block;
    background: var(--water-light);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===================================
   About Page — Commitment Section
   =================================== */

.commitment {
    background: white;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.commitment-text p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.commitment-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commitment-list li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    padding: 16px 20px 16px 52px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    position: relative;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
}

/* ===================================
   About Page — Responsive
   =================================== */

@media (max-width: 900px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founder-profile {
        flex-direction: row;
    }

    .founder-image {
        width: 200px;
        flex-shrink: 0;
        aspect-ratio: auto;
        min-height: 200px;
    }

    .team-member-full {
        grid-template-columns: 140px 1fr;
        gap: 20px;
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .founder-profile {
        flex-direction: column;
    }

    .founder-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        min-height: auto;
    }

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

    .team-member-full {
        grid-template-columns: 120px 1fr;
        padding: 20px;
    }

    .commitment-list li {
        padding-left: 44px;
    }
}
