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

:root {
    /* カラーパレット - 温かみと信頼感 */
    --primary-color: #FF8C69;        /* コーラルオレンジ - 温かみ */
    --primary-dark: #E6704E;
    --primary-light: #FFB09D;
    
    --secondary-color: #5FB4A0;      /* ティールグリーン - 安心感 */
    --secondary-dark: #4A9A88;
    --secondary-light: #7FC9B8;
    
    --accent-color: #FFD166;         /* ウォームイエロー - 明るさ */
    
    --text-dark: #2C3E50;
    --text-medium: #546E7A;
    --text-light: #7C8B95;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-cream: #FFF8F3;
    --bg-soft: #F3F6F9;
    
    --border-color: #E0E7ED;
    --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);
    
    /* タイポグラフィ */
    --font-primary: 'Noto Sans JP', 'Zen Maru Gothic', sans-serif;
    --font-heading: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    
    /* スペーシング */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* ボーダー */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* トランジション */
    --transition: all 0.3s ease;
}

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

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

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-image {
    width: 60px;
    height: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--font-heading);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-medium);
    display: block;
    margin-top: -0.25rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-link.cta-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
}

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

.nav-link.cta-nav:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 248, 243, 0.92) 0%, rgba(243, 246, 249, 0.88) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    animation: fadeInUp 1s ease;
}
}

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

.hero-title-main {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-subtitle strong {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--text-medium);
    font-size: 2rem;
    text-decoration: none;
}

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

/* ============================================
   Problems Section
   ============================================ */
.problems {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.problem-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.family-concerns {
    border-top: 4px solid var(--secondary-color);
}

.parent-concerns {
    border-top: 4px solid var(--primary-color);
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.problem-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.family-concerns .problem-header i {
    color: var(--secondary-color);
}

.problem-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

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

.problem-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.problem-list li:hover {
    background: var(--bg-cream);
}

.problem-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.problem-list span {
    flex: 1;
    line-height: 1.8;
}

.solution-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.solution-box h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.solution-box p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--bg-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

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

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.feature-card > *:not(.feature-image) {
    padding: 0 var(--spacing-lg);
}

.feature-card > *:last-child {
    padding-bottom: var(--spacing-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: calc(var(--spacing-md) * -1) auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.feature-points {
    text-align: left;
    background: var(--bg-cream);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
}

.feature-point {
    margin-bottom: 1rem;
}

.feature-point:last-child {
    margin-bottom: 0;
}

.feature-point strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

/* ============================================
   Services Gallery Section
   ============================================ */
.services-gallery {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: var(--spacing-md);
    transform: translateY(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(255, 140, 105, 0.95), rgba(95, 180, 160, 0.85));
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    padding: var(--spacing-xl) 0;
    background: var(--bg-soft);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.reason-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.reason-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 140, 105, 0.1);
    line-height: 1;
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.reason-icon i {
    font-size: 2.5rem;
    color: white;
}

.reason-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.reason-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.reason-points {
    list-style: none;
    padding: var(--spacing-md);
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
}

.reason-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.reason-points li:last-child {
    margin-bottom: 0;
}

.reason-points i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* ============================================
   Plan Examples Section
   ============================================ */
.plan-examples {
    padding: var(--spacing-xl) 0;
    background: var(--bg-cream);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.example-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.example-card.highlighted {
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 140, 105, 0.3);
}

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

.example-header {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    padding: var(--spacing-md);
    text-align: center;
    color: white;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #FFE699);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.contract-info {
    margin-top: var(--spacing-sm);
    padding: 0.75rem;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    text-align: center;
}

.contract-info small {
    color: var(--text-medium);
    font-size: 0.875rem;
}

.contract-info i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.contract-period {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    text-align: center;
}

.contract-period p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.contract-period i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.example-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.example-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.example-header h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.example-situation {
    font-size: 0.9rem;
    opacity: 0.9;
}

.example-content {
    padding: var(--spacing-md);
}

.example-needs,
.example-plan,
.example-result {
    margin-bottom: var(--spacing-md);
}

.example-needs h4,
.example-plan h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.example-needs h4::before {
    content: '💭';
    font-size: 1.25rem;
}

.example-plan h4::before {
    content: '📋';
    font-size: 1.25rem;
}

.example-needs ul {
    list-style: none;
    padding-left: 0;
}

.example-needs li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.example-needs li:last-child {
    border-bottom: none;
}

.plan-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.plan-label {
    flex: 1;
    color: var(--text-medium);
}

.plan-price {
    font-weight: 600;
    color: var(--primary-color);
}

.plan-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: white;
}

.total-price {
    font-size: 1.5rem;
}

.example-result {
    background: var(--bg-cream);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--secondary-color);
}

.example-result i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.example-result p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.plan-note {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.plan-note i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* ============================================
   Customer Voice Section
   ============================================ */
.customer-voice {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.voice-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.voice-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.voice-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.voice-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voice-avatar i {
    font-size: 2.5rem;
    color: white;
}

.voice-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.voice-meta {
    font-size: 0.875rem;
    color: var(--text-light);
}

.voice-rating {
    margin-bottom: var(--spacing-sm);
}

.voice-rating i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-right: 0.25rem;
}

.voice-content h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.voice-text {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.voice-service {
    background: var(--bg-cream);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.voice-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-soft));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.voice-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.basic-plan {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-soft));
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.plan-price {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-left: 0.5rem;
}

.price-tax {
    display: block;
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.plan-features {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.plan-features h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.plan-features ul {
    list-style: none;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.plan-features i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.options-section {
    background: var(--bg-soft);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.options-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.options-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.options-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--spacing-md);
}

.options-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.options-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.options-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.options-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.options-table tbody tr:hover {
    background: var(--bg-cream);
}

.options-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ============================================
   Flow Section
   ============================================ */
.flow {
    padding: var(--spacing-xl) 0;
    background: var(--bg-cream);
}

.flow-steps {
    max-width: 700px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: -0.5rem 0;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: var(--font-primary);
}

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

.faq-q-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: var(--spacing-md);
    background: var(--bg-white);
}

.faq-item.active .faq-answer {
    display: flex;
    gap: 1rem;
    animation: fadeIn 0.3s ease;
}

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

.faq-a-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer p {
    flex: 1;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ============================================
   Mission Section
   ============================================ */
.mission {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--bg-soft), var(--bg-cream));
}

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

.mission-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.mission-lead {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-dark);
    font-weight: 500;
}

.mission-stories {
    margin-bottom: var(--spacing-lg);
}

.mission-story {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.mission-story h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-story h3 i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.mission-story p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.mission-story p:last-child {
    margin-bottom: 0;
}

.mission-story strong {
    color: var(--primary-color);
    font-weight: 600;
}

.mission-commitment {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.mission-commitment h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.commitment-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.commitment-item:hover {
    background: var(--bg-cream);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.commitment-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.commitment-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.commitment-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.mission-closing {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.mission-quote {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    margin-bottom: var(--spacing-md);
}

.mission-signature {
    font-size: 1.125rem;
    opacity: 0.9;
    font-style: italic;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--bg-cream);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 3rem;
    color: white;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.contact-method p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
}

.contact-method .btn {
    margin-top: auto;
    width: 100%;
}

.phone-hours {
    color: var(--text-medium);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-privacy {
    margin-bottom: var(--spacing-md);
}

.form-privacy label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    display: block;
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-logo-image {
    width: 50px;
    height: auto;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

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

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.scroll-to-top i {
    font-size: 1.25rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 50px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-bg-image {
        object-position: 60% center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .voice-header {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-quote {
        font-size: 1.25rem;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-md);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .options-table {
        font-size: 0.875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 45px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .hero-title-main {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .problem-card {
        padding: var(--spacing-md);
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   Tablet Responsive (769px - 1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}