/* ==========================================
   MoiMoi English — Main Stylesheet
   Finnish warmth × Canadian fresh × Japanese elegance
   ========================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Primary palette — Nordic Aurora inspired */
    --aurora-1: #1a5276;
    --aurora-2: #2e86ab;
    --aurora-3: #48b5a0;
    --aurora-4: #7ecba1;
    --aurora-5: #b8e6c8;
    
    /* Warm accent — sunset/humanity */
    --warm-1: #e8935a;
    --warm-2: #f4a97d;
    --warm-3: #ffd4b8;
    --warm-4: #fff0e5;
    
    /* Neutral & text */
    --text-primary: #1e2a38;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;
    
    /* Background */
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --bg-light: #f0eeeb;
    --bg-dark: #1a2332;
    --bg-dark-2: #243247;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Noto Sans JP', 'Inter', sans-serif;
    --font-accent: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-cream);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

/* --- Section Headers --- */
.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aurora-3);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--aurora-4);
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--text-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    color: white;
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.4);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--bg-light);
}

.btn-outline:hover {
    border-color: var(--aurora-3);
    color: var(--aurora-2);
    background: rgba(72,181,160,0.06);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    gap: 2px;
    align-items: baseline;
}

.logo-moi {
    color: var(--aurora-3);
    font-family: var(--font-display);
    font-weight: 700;
}

.logo-moi2 {
    color: var(--warm-1);
    font-family: var(--font-display);
    font-weight: 700;
}

.logo-english {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 1rem;
    margin-left: 4px;
    color: var(--text-light);
}

/* Light hero: navbar defaults are dark text */
.navbar:not(.scrolled) .logo-moi {
    color: var(--aurora-3);
}

.navbar:not(.scrolled) .logo-moi2 {
    color: var(--warm-1);
}

.navbar:not(.scrolled) .logo-english {
    color: var(--text-light);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 50px;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--aurora-2);
    background: rgba(46,134,171,0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3)) !important;
    color: white !important;
    padding: 10px 24px;
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46,134,171,0.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
    border-radius: 2px;
}

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

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

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

/* ==========================================
   HERO SECTION — White / Light
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
}

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

/* Decorative background shapes */
.hero-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(72, 181, 160, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(46, 134, 171, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 90% 70%, rgba(232, 147, 90, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Center layout (no image) */
.hero-center-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 160px 24px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-centered .hero-content {
    text-align: center;
    max-width: 740px;
}

.hero-centered .hero-actions {
    justify-content: center;
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0;
}

.hero-tagline {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.tagline-fin {
    color: var(--aurora-3);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
    max-height: 520px;
}

.hero-image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-4), var(--aurora-5));
    opacity: 0.35;
    z-index: 1;
    animation: floatSoft 6s ease-in-out infinite alternate;
}

.hero-image-accent-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-2), var(--warm-3));
    opacity: 0.3;
    z-index: 1;
    animation: floatSoft 8s ease-in-out infinite alternate-reverse;
}

@keyframes floatSoft {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-12px) scale(1.04); }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-4), var(--warm-2));
    opacity: 0.3;
    z-index: -1;
}

.about-flags {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.flag-item {
    font-size: 2rem;
    background: var(--bg-white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.flag-item:hover {
    transform: translateY(-4px) scale(1.1);
}

.about-content .section-title {
    margin-top: 8px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 2;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 2;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--bg-light);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--aurora-2);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ==========================================
   PHILOSOPHY SECTION
   ========================================== */
.philosophy {
    background: var(--bg-cream);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.pillar-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aurora-2), var(--aurora-3));
    opacity: 0;
    transition: var(--transition-base);
}

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

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    margin-bottom: 24px;
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46,134,171,0.1), rgba(72,181,160,0.1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--aurora-2);
    transition: var(--transition-base);
}

.icon-circle.accent {
    background: linear-gradient(135deg, rgba(72,181,160,0.1), rgba(126,203,161,0.15));
    color: var(--aurora-3);
}

.icon-circle.warm {
    background: linear-gradient(135deg, rgba(232,147,90,0.1), rgba(244,169,125,0.12));
    color: var(--warm-1);
}

.pillar-card:hover .icon-circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    color: white;
}

.pillar-card:hover .icon-circle.accent {
    background: linear-gradient(135deg, var(--aurora-3), var(--aurora-4));
}

.pillar-card:hover .icon-circle.warm {
    background: linear-gradient(135deg, var(--warm-1), var(--warm-2));
}

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.pillar-subtitle {
    font-size: 0.85rem;
    color: var(--aurora-3);
    font-weight: 500;
    margin-bottom: 16px;
}

.pillar-card p:last-child {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.9;
}

/* Quote */
.philosophy-quote {
    text-align: center;
    padding: 48px 0 0;
}

.philosophy-quote blockquote {
    position: relative;
    padding: 40px;
}

.philosophy-quote blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--aurora-4);
    opacity: 0.4;
    line-height: 1;
}

.philosophy-quote blockquote p:first-child {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--aurora-1);
    margin-bottom: 8px;
}

.quote-ja {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */
.programs {
    background: var(--bg-white);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.program-cards.two-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.program-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--bg-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    position: relative;
}

.program-card:hover {
    border-color: var(--aurora-3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border-color: var(--aurora-2);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.program-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.program-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-light);
}

.featured-badge {
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    color: white;
}

.program-header {
    text-align: center;
    padding: 40px 32px 24px;
}

.program-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-4), var(--aurora-5));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--aurora-1);
    margin-bottom: 16px;
}

.program-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.program-header h3 .plan-fi {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--aurora-3);
}

/* Price display */
.program-price {
    text-align: center;
    padding: 16px 32px 8px;
    border-bottom: 1px solid var(--bg-light);
    margin: 0 32px 20px;
}

.price-amount {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.price-unit {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-left: 4px;
}

.program-tagline {
    font-size: 0.88rem;
    color: var(--text-light);
}

.program-body {
    padding: 0 32px 24px;
    flex: 1;
}

.program-features {
    margin-bottom: 20px;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.program-features li i {
    color: var(--aurora-3);
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.program-ideal {
    font-size: 0.82rem;
    color: var(--warm-1);
    padding: 10px 16px;
    background: var(--warm-4);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-footer {
    padding: 0 32px 32px;
}

/* ==========================================
   JOURNEY / TIMELINE SECTION
   ========================================== */
.journey {
    background: var(--bg-cream);
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--aurora-3), var(--warm-2));
    border-radius: 2px;
}

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

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

.timeline-marker {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--aurora-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.timeline-marker span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aurora-2);
}

.timeline-item:hover .timeline-marker {
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    border-color: var(--aurora-2);
}

.timeline-item:hover .timeline-marker span {
    color: white;
}

.timeline-content {
    padding-top: 12px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.9;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    background: var(--bg-white);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-stars {
    color: var(--warm-1);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-3), var(--aurora-4));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.author-detail {
    font-size: 0.82rem;
    color: var(--text-light);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--bg-light);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-base);
}

.testimonial-btn:hover {
    border-color: var(--aurora-3);
    color: var(--aurora-2);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dot.active {
    background: var(--aurora-3);
    transform: scale(1.2);
}

/* ==========================================
   FINLAND SECTION
   ========================================== */
.finland {
    background: var(--bg-cream);
}

.finland-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.finland-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 2;
    margin-bottom: 32px;
}

.finland-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.value-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--aurora-4), var(--aurora-5));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--aurora-1);
    font-size: 1.1rem;
}

.value-item h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Finland visual cards */
.finland-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.finland-fact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

.finland-fact-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-md);
}

.finland-fact-card:nth-child(2):hover {
    transform: translateY(-4px) rotate(1deg);
}

.fact-emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.finland-fact-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--bg-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--aurora-2);
}

.faq-question i {
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--aurora-3);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 0 24px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 2;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background: var(--bg-dark);
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    line-height: 2;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item > i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aurora-4);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--text-white);
    font-size: 0.85rem;
    display: block;
}

.contact-item p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.85rem !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.contact-social a:hover {
    background: var(--aurora-3);
    border-color: var(--aurora-3);
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-dark-2);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-form h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: var(--warm-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--aurora-3);
    background: rgba(255,255,255,0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23718096' fill='none' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-dark-2);
    color: white;
}

.contact-form .btn {
    margin-top: 8px;
    font-size: 1rem;
    padding: 18px 36px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
}

/* Form success message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-3), var(--aurora-4));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.form-success h3 {
    color: white;
    margin-bottom: 12px;
}

.form-success p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #0f1923;
    padding: 64px 0 32px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 16px;
}

.footer-logo {
    font-size: 1.3rem;
    display: inline-flex;
    gap: 2px;
    align-items: baseline;
}

.footer-links h4 {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: var(--transition-base);
}

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

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

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

.footer-tagline i {
    color: var(--warm-1);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim="fade-right"] {
    transform: translateX(-40px);
}

[data-anim="fade-left"] {
    transform: translateX(40px);
}

[data-anim].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Star particles in hero */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

/* ==========================================
   RESPONSIVE — Tablet
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-center-content {
        padding: 120px 24px 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 100px;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-frame {
        max-width: 340px;
        margin: 0 auto;
    }

    .pillars {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .program-cards,
    .program-cards.two-cards {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .program-card.featured {
        transform: none;
    }

    .program-card.featured:hover {
        transform: translateY(-6px);
    }

    .finland-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .finland-card-stack {
        flex-direction: row;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ==========================================
   RESPONSIVE — Mobile
   ========================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-primary) !important;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover {
        background: var(--bg-cream) !important;
        color: var(--aurora-2) !important;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-center-content {
        padding: 100px 24px 70px;
    }

    /* Hero mobile */
    .hero-grid {
        padding-top: 90px;
        padding-bottom: 60px;
        gap: 32px;
    }

    .hero-image-wrapper {
        max-width: 300px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-scroll {
        display: none;
    }

    /* About */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Finland cards */
    .finland-card-stack {
        flex-direction: column;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 32px 24px;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Timeline */
    .timeline::before {
        left: 16px;
    }

    .timeline-marker {
        width: 48px;
        height: 48px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-marker span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pillar-card {
        padding: 36px 24px;
    }
}
