:root {
    /* Modern Color Palette - Softer and Friendly */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --success: #10b981;
    
    /* Soft Backgrounds */
    --bg-primary: #fafafa;
    --bg-secondary: #f5f5f7;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.5);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-cool: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    
    /* Text Colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-style: italic;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.mobile-break {
    display: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.btn-secondary:hover {
    background: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Glass Card Effect */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mission Section */
.mission {
    background: var(--bg-secondary);
}

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

.mission-card {
    padding: 48px 32px;
    text-align: center;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.mission-card h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.2);
}

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

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--text-white);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}

.service-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.5;
}

.service-card.featured .service-number {
    color: var(--text-white);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.service-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card.featured .service-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

/* Results Section */
.results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
}

.results .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

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

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

.result-card {
    padding: 48px 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.result-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.result-value {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
}

.result-unit {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.9;
}

.result-unit-small {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.85;
}

.result-arrow {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin: 0 4px;
}

.result-text {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.result-card h4 {
    color: var(--text-white);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.result-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.approach-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-title {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 48px;
}

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

.approach-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-base);
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.approach-card h4 {
    color: var(--text-white);
    margin-bottom: 12px;
}

.approach-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Strengths Section */
.strengths {
    background: var(--bg-secondary);
}

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

.strength-card {
    background: var(--text-white);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.2);
}

.strength-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.strength-card h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.strength-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Team Section */
.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    padding: 48px;
    margin-bottom: 32px;
}

.team-info {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.team-avatar {
    flex-shrink: 0;
}

.team-avatar-link {
    display: block;
    text-decoration: none;
    transition: var(--transition-base);
}

.team-avatar-link:hover .team-avatar {
    transform: scale(1.05);
}

.ceo-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 3px solid var(--text-white);
}

.team-avatar-link:hover .ceo-photo {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.team-details h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition-fast);
}

.linkedin-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.team-message {
    text-align: center;
    padding: 32px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.team-message p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--text-white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.2);
}

.method-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.method-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.method-value {
    font-weight: 600;
    color: var(--text-primary);
}

.visual-card {
    padding: 48px 40px;
}

.visual-card h3 {
    margin-bottom: 32px;
    color: var(--text-primary);
}

.challenge-list {
    list-style: none;
    margin-bottom: 32px;
}

.challenge-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

/* Booking Section */
.booking {
    background: var(--bg-primary);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.booking-info {
    padding: 48px 40px;
    position: sticky;
    top: 120px;
}

.booking-info h3 {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.booking-steps {
    list-style: none;
    counter-reset: step;
    margin-bottom: 32px;
}

.booking-steps li {
    counter-increment: step;
    padding: 16px 0;
    padding-left: 48px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.booking-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.booking-details {
    background: rgba(99, 102, 241, 0.05);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.booking-details h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.booking-details ul {
    list-style: none;
}

.booking-details li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.calendar-selector {
    padding: 48px 40px;
}

.calendar-selector h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.calendar-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-sm);
}

.calendar-wrapper {
    background: var(--text-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-secondary);
}

.calendar-header h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.calendar-nav {
    background: var(--primary);
    color: var(--text-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.125rem;
    transition: var(--transition-base);
}

.calendar-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.calendar-day {
    border: 1px solid var(--bg-secondary);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.day-header {
    background: var(--bg-secondary);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.time-slots {
    padding: 8px;
    min-height: 200px;
}

.time-slot {
    padding: 8px 12px;
    margin: 4px 0;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.time-slot:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    transform: translateX(2px);
}

.time-slot.selected {
    background: var(--gradient-primary);
    color: var(--text-white);
    font-weight: 600;
    border-color: var(--primary-dark);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--bg-secondary);
}

.time-slot.unavailable:hover {
    transform: none;
    border-color: transparent;
}

.selected-times {
    padding-top: 24px;
    border-top: 2px solid var(--bg-secondary);
}

.selected-times h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.selected-slots-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selected-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.selected-slot-text {
    color: var(--text-primary);
    font-weight: 500;
}

.remove-slot {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.remove-slot:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

.no-selection {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    padding: 24px;
}

/* Contact Form */
.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    padding: 48px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.required {
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
    background: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

.form-submit {
    margin-top: 32px;
    text-align: center;
}

.form-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-message {
    margin-top: 24px;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 2px solid var(--success);
}

.form-message.error {
    display: block;
    background: rgba(236, 72, 153, 0.1);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.info-card {
    padding: 48px 40px;
}

.info-card h3 {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.challenge-box {
    margin-top: 32px;
    padding: 24px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.challenge-box h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

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

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

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-break {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-section {
        padding: 48px 24px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .team-info {
        flex-direction: column;
        text-align: center;
    }
    
    .team-expertise {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .booking-info {
        position: static;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   Pricing Section Styles
   ========================================== */

.pricing {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    padding: 120px 0;
}

.pricing-table {
    padding: 0;
    overflow-x: auto;
    margin-bottom: 48px;
    border-radius: var(--radius-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead th {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid #e8eaf6;
    vertical-align: top;
}

.feature-column {
    text-align: left;
    min-width: 200px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.plan-column {
    text-align: center;
    min-width: 250px;
    position: relative;
}

.plan-column.popular {
    background: linear-gradient(180deg, 
        rgba(99, 102, 241, 0.12) 0%, 
        rgba(99, 102, 241, 0.05) 100%);
    position: relative;
}

.popular-badge {
    /* 旧スタイル - 使用しない */
    display: none;
}

.popular-inline-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.65em;
    font-weight: 800;
    margin-left: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
    vertical-align: middle;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: popularGlow 2s ease-in-out infinite;
}

@keyframes popularGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(238, 90, 111, 0.7), 0 4px 10px rgba(0, 0, 0, 0.15);
    }
}

.plan-header {
    padding: 16px 0;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.plan-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.plan-price {
    margin-top: 16px;
    display: inline-block;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
    font-weight: 500;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e8eaf6;
    transition: background-color var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background-color: rgba(99, 102, 241, 0.02);
}

.comparison-table tbody td {
    padding: 20px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.comparison-table tbody td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.9);
}

.comparison-table tbody td.highlight {
    background: rgba(99, 102, 241, 0.08);
    font-weight: 600;
    color: var(--text-primary);
}

.divider-row td {
    padding: 16px !important;
    background: transparent !important;
    border: none !important;
}

.outcome-row td,
.target-row td {
    vertical-align: top;
    padding: 24px !important;
    background: rgba(255, 255, 255, 0.8) !important;
}

.outcome-row td.highlight,
.target-row td.highlight {
    background: rgba(99, 102, 241, 0.08) !important;
}

.outcome-content,
.target-content {
    text-align: left;
}

.outcome-content p,
.target-content p {
    margin: 0;
    padding: 6px 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
}

.outcome-content p {
    padding-left: 4px;
}

.target-content p {
    padding-left: 4px;
}

.ongoing-support {
    margin-bottom: 64px;
}

.support-card {
    padding: 48px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.support-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.support-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.support-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.support-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
    padding: 64px 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.pricing-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.pricing-cta p {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 32px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-base);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
    .pricing-table {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 900px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }
    
    .plan-header h3 {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .comparison-table thead th {
        padding: 24px 16px;
    }
    
    .comparison-table tbody td {
        padding: 16px 12px;
        font-size: 0.875rem;
    }
    
    .outcome-content p,
    .target-content p {
        font-size: 0.875rem;
        padding: 4px 0;
    }
    
    .support-card {
        padding: 32px 24px;
    }
    
    .support-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .support-header h3 {
        font-size: 1.25rem;
    }
    
    .pricing-cta {
        padding: 48px 24px;
    }
    
    .pricing-cta h3 {
        font-size: 1.5rem;
    }
    
    .pricing-cta p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popular-badge {
        display: none;
    }
    
    .popular-inline-badge {
        font-size: 0.55em;
        padding: 4px 10px;
        margin-left: 6px;
    }
    
    .plan-header h3 {
        font-size: 1.125rem;
    }
    
    .plan-subtitle {
        font-size: 0.875rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .feature-column {
        min-width: 150px;
        font-size: 0.875rem;
    }
    
    .plan-column {
        min-width: 200px;
    }
}


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