/* ==========================================
   グローバルスタイル
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
    /* メインカラー - 信頼感を表すブルー系 */
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    
    /* アクセントカラー - 温かみを表すオレンジ系 */
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    
    /* セカンダリーカラー - 住宅業界らしい温かみ */
    --secondary-color: #059669;
    --secondary-light: #10b981;
    
    /* テキストカラー */
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #6b7280;
    
    /* 背景カラー */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    
    /* ボーダー・シャドウ */
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.grecaptcha-badge {
    visibility: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.75;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    @media (max-width: 480px) {
        padding: 0 15px;
    }
}

.pc {
    display: block;
    @media (max-width: 480px) {
        display: none;
    }
}

.tab {
    display: none;
    @media (max-width: 768px) {
        display: block;
    }
}

.sp {
    display: none;
    @media (max-width: 480px) {
        display: block;
    }
}

/* ==========================================
   ヘッダー
   ========================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    @media (max-width: 500px) {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.logo-text {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
}

.header-logos {
    text-decoration: none;
    display: block;
}

.header-logos-img {
    max-width: 200px;
    @media (max-width: 768px) {
        max-width: 140px;
    }
}

.header-logos-img:first-of-type {
    padding-right: 0.5rem;
}

.header-cta {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    @media (max-width: 500px) {
        margin-top: 1rem;
    }
}

.header-cta:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   ファーストビュー
   ========================================== */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: var(--bg-white);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
    @media (max-width: 480px) {
        padding: 60px 0 100px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(251, 191, 36, 0.9);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    @media (max-width: 768px) {
        font-size: 36px;
    }
    @media (max-width: 480px) {
        font-size: 28px;
    }
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
    @media (max-width: 768px) {
        font-size: 16px;
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    @media (max-width: 768px) {
        flex-direction: column;
        gap: 20px;
    }
}

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

.stat-value {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value span {
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.stat-note {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-top: 4px;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    @media (max-width: 768px) {
        flex-direction: column;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* ==========================================
   ボタン
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-note {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    @media (max-width: 480px) {
        padding: 16px 28px;
        font-size: 16px;
    }
}

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

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

.btn-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    font-size: 20px;
    padding: 20px 40px;
    box-shadow: var(--shadow-xl);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
}

.btn-wrap {
    display: flex;
    flex-wrap: wrap;
}

/* ==========================================
   セクション共通
   ========================================== */
section {
    padding: 100px 0;
    @media (max-width: 768px) {
        padding: 40px 0;
    }
    @media (max-width: 480px) {
        padding: 40px 0;
    }
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.3;
    @media (max-width: 768px) {
        font-size: 30px;
    }
    @media (max-width: 480px) {
        font-size: 26px;
    }
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    line-height: 1.8;
}

.contact-section .section-subtitle {
    @media (max-width: 480px) {
      font-size: 16px;
    }
}

/* ==========================================
   社長メッセージ
   ========================================== */
.president-message {
    background-color: var(--bg-light);
    padding: 100px 0 60px;
    @media (max-width: 768px) {
        padding: 40px 0 40px;
    }
}

.message-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.message-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 35px 50px;
    text-align: center;
    @media (max-width: 480px) {
        padding: 30px 20px;
    }
}

.president-title h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.6;
    @media (max-width: 480px) {
        font-size: 22px;
    }
}

.president-subtitle {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
    opacity: 0.95;
}

.message-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px 40px 20px;
    align-items: start;
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    @media (max-width: 480px) {
        padding: 20px;
    }
}

.president-photo-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    @media (max-width: 768px) {
        height: 280px;
    }
}

.president-photo {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.president-photo-placeholder i {
    font-size: 100px;
    margin-bottom: 20px;
}

.president-photo-placeholder p {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
}

.president-photo-placeholder span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.message-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.9;
}

.message-text p {
    margin-bottom: 15px;
}

.message-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
}

.message-highlight {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
    font-size: 17px;
    line-height: 2;
    position: relative;
}

.message-highlight i.fa-quote-left {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 24px;
    color: var(--accent-color);
    opacity: 0.3;
}

.message-highlight i.fa-quote-right {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 24px;
    color: var(--accent-color);
    opacity: 0.3;
}

.message-content-full {
    width: 100%;
    padding: 1px 40px 40px;
    text-align: center;
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        padding: 1px 30px 30px;
    }
    @media (max-width: 480px) {
        padding: 1px 20px 20px;
    }
}

.message-text-full {
    width: 100%;
}

.message-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: right;
}

.message-emphasis {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 25px;
    @media (max-width: 768px) {
        font-size: 16px;
        line-height: 1.8;
    }
}

.message-emphasis strong {
    color: #dc3545;
    font-weight: 700;
}

.message-cta {
    margin-top: 35px;
    margin-bottom: 0;
    text-align: center;
}

/* ==========================================
   課題セクション
   ========================================== */
.pain-points {
    background-color: var(--bg-white);
    padding: 100px 0;
    @media (max-width: 768px) {
        padding: 40px 0;
    }
    @media (max-width: 480px) {
        padding: 40px 0;
    }
}

.pain-points .section-title {
        @media (max-width: 768px) {
           font-size: 32px;
        }
        @media (max-width: 480px) {
           font-size: 23px;
        }
    }

/* ==========================================
   Market Reality セクション
   ========================================== */
.market-reality {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    @media (max-width: 768px) {
        padding: 40px 0;
    }
}

.reality-intro {
    text-align: center;
    margin-bottom: 50px;
}

.title-emphasis {
    color: #dc3545;
    font-size: 1.1em;
}

.reality-lead {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    @media (max-width: 768px) {
        font-size: 16px;
    }
}

.emphasis-text {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1em;
}

.reality-question {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--text-dark);
    padding: 25px 40px;
    border-radius: 12px;
    margin: 50px auto;
    max-width: 900px;
    box-shadow: var(--shadow-xl);
    @media (max-width: 768px) {
        padding: 20px 25px;
    }
}

.question-text {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    @media (max-width: 768px) {
        font-size: 18px;
    }
}

.question-text i {
    color: #dc3545;
    margin-right: 12px;
    font-size: 24px;
}

.reality-tasks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.task-category {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.task-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 20px 25px;
    position: relative;
}

.category-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 900;
    opacity: 0.3;
}

.category-header h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header i {
    font-size: 22px;
}

.task-list {
    padding: 20px 25px;
    background-color: var(--bg-white);
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.task-item:last-child {
    border-bottom: none;
}

.task-item i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.reality-conclusion {
    margin-top: 60px;
}

.conclusion-box {
    background-color: var(--bg-white);
    border-left: 5px solid #dc3545;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    @media (max-width: 768px) {
        padding: 30px 25px;
    }
}

.conclusion-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    @media (max-width: 768px) {
        font-size: 17px;
    }
}

.conclusion-text i {
    color: #dc3545;
    margin-right: 10px;
}

.conclusion-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
    text-align: center;
    margin: 0;
    @media (max-width: 768px) {
        font-size: 20px;
    }
}

/* ==========================================
   課題セクション
   ========================================== */
.pain-points {
    background-color: var(--bg-white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 60px;
    @media (max-width: 480px) {
        grid-template-columns: 1fr;
    }
}

.pain-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pain-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.pain-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.pain-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

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

/* ==========================================
   ソリューション
   ========================================== */
.solution {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
}

.solution-intro {
    margin-bottom: 60px;
}

/* ==========================================
   経営的メリット・ベネフィット
   ========================================== */
.economic-benefits {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-radius: 16px;
    padding: 50px 60px;
    margin-bottom: 80px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
    border: 2px solid #fbbf24;
    @media (max-width: 768px) {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    @media (max-width: 480px) {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    @media (max-width: 768px) {
        display: block;
        text-align: center;
    }
}

.benefit-badge i {
    font-size: 18px;
}

.benefit-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    @media (max-width: 768px) {
        font-size: 22px;
        line-height: 1.5;
    }
}

.benefit-title i {
    color: var(--accent-color);
    margin-right: 8px;
}

.benefit-title strong {
    color: #dc3545;
    background: linear-gradient(transparent 60%, #fef3c7 60%);
}

.benefit-lead {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
    @media (max-width: 768px) {
        font-size: 16px;
    }
}

.benefit-lead strong {
    color: #dc3545;
    font-weight: 700;
}

.benefit-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.comparison-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: var(--shadow-lg);
}

.comparison-item.traditional {
    border-left: 5px solid #ef4444;
}

.comparison-item.msp {
    border-left: 5px solid #10b981;
}

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.comparison-item.traditional .comparison-icon {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #dc2626;
}

.comparison-item.msp .comparison-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.comparison-item h4 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.comparison-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

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

.comparison-item.traditional .comparison-list i {
    color: #ef4444;
    font-size: 16px;
}

.comparison-item.msp .comparison-list i {
    color: #10b981;
    font-size: 16px;
    font-weight: 700;
}

.comparison-arrow {
    font-size: 40px;
    color: var(--accent-color);
    @media (max-width: 768px) {
        display: none;
    }
}

.benefit-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--bg-white);
}

.highlight-item h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

/* ==========================================
   ブリッジコピー（実績への橋渡し）
   ========================================== */
.solution-bridge {
    position: relative;
    margin: -30px auto 50px;
    padding: 60px 50px;
    text-align: center;
    z-index: 10;
    @media (max-width: 768px) {
        padding: 40px 20px;
        margin: -20px auto 40px;
    }
    @media (max-width: 480px) {
        margin: -20px auto 10px;
    }
}

.bridge-question {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    @media (max-width: 768px) {
        font-size: 18px;
        padding: 14px 30px;
    }
}

.bridge-question i {
    font-size: 28px;
    @media (max-width: 768px) {
        font-size: 22px;
    }
}

.bridge-answer {
    background-color: var(--bg-white);
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto 30px;
    @media (max-width: 768px) {
        padding: 30px 25px;
    }
}

.bridge-answer p {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
    @media (max-width: 768px) {
        font-size: 16px;
        line-height: 1.8;
    }
}

.bridge-answer strong {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.05em;
    background: linear-gradient(transparent 60%, #fef3c7 60%);
}

.bridge-arrow {
    font-size: 48px;
    color: var(--accent-color);
    animation: bounce 2s infinite;
    @media (max-width: 768px) {
        font-size: 36px;
    }
}

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

.solution-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    @media (max-width: 1000px) {
        grid-template-columns: 1fr;
    }
}

.solution-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.5;
    @media (max-width: 768px) {
        text-align: center;
    }
}

.solution-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

.solution-cycle {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.cycle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.cycle-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.cycle-item {
    position: absolute;
    background-color: var(--bg-white);
    border: 3px solid var(--accent-color);
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    @media (max-width: 1000px) {
        font-size: 14px;
        padding: 10px 20px;
    }
    @media (max-width: 480px) {
        font-size: 12px;
        padding: 10px 15px;
    }
}

.cycle-1 { top: 0%; left: 50%; transform: translateX(-50%); }
.cycle-2 { top: 19%; right: 10%; }
.cycle-3 { top: 50%; right: 0%; transform: translateY(-50%); }
.cycle-4 { bottom: 19%; right: 10%; }
.cycle-5 { bottom: 0%; left: 50%; transform: translateX(-50%); }
.cycle-6 { top: 50%; left: 0%; transform: translateY(-50%); }
.cycle-7 { bottom: 19%; left: 10%; font-size: 12px; padding: 15px 10px; 
@media (max-width: 768px) {font-size: 12px; padding: 10px 10px;}
@media (max-width: 480px) {font-size: 11px; padding: 10px 5px;}
}
.cycle-8 { top: 19%; left: 10%; }

/* ==========================================
   サービス内容
   ========================================== */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    @media (max-width: 480px) {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-md);
}

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

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 5px 16px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 700;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}

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

/* ==========================================
   成功事例
   ========================================== */
.case-studies {
    background-color: var(--bg-white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    @media (max-width: 480px) {
        grid-template-columns: 1fr;
    }
}

.case-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

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

.case-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.case-result {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.case-number {
    color: var(--accent-color);
    font-size: 32px;
}

.case-details p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-gray);
}

.case-details strong {
    color: var(--text-dark);
    font-weight: 700;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.case-stat {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.case-stat .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-stat .stat-icon i {
    font-size: 32px;
    color: var(--bg-white);
}

.case-stat .stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.case-stat .stat-label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ==========================================
   CTAセクション
   ========================================== */
.cta-section {
    padding: 80px 0;
}

.cta-seminar {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    color: var(--bg-white);
    scroll-margin-top: 60px;
}

.cta-diagnosis {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--bg-white);
    margin-bottom: 24px;
    line-height: 1.3;
    @media (max-width: 768px) {
        font-size: 32px;
    }
}

.cta-title i {
    margin-right: 12px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: left;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
}

.cta-feature i {
    color: var(--bg-white);
    font-size: 20px;
    flex-shrink: 0;
}

.cta-button-wrapper {
    margin-top: 40px;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* AI活用バッジ */
.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 16px;
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.ai-badge i {
    margin-right: 8px;
}

/* セミナー内容 + AI活用デモの2カラムレイアウト */
.seminar-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.seminar-features-section .cta-features {
    margin: 0;
}

/* AI活用デモセクション */
.ai-demo-section {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ai-demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ai-demo-header i {
    font-size: 24px;
    color: #fbbf24;
}

.ai-demo-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
    margin: 0;
}

.ai-demo-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Before/After画像比較スライダー */
.image-comparison-slider {
    width: 100%;
}

.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
}

.comparison-after,
.comparison-before {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
}

.comparison-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
}

.handle-line {
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.handle-circle i {
    font-size: 14px;
    color: var(--text-dark);
}

.comparison-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

.label-before {
    color: var(--bg-white);
    background-color: rgba(239, 68, 68, 0.8);
    padding: 6px 16px;
    border-radius: 20px;
}

.label-after {
    color: var(--bg-white);
    background-color: rgba(34, 197, 94, 0.8);
    padding: 6px 16px;
    border-radius: 20px;
}

/* セミナーカリキュラムセクション */
.seminar-curriculum-section {
    margin: 40px 0;
}

.seminar-curriculum-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 30px;
    text-align: center;
    @media (max-width: 768px) {
        font-size: 20px;
    }
}

.seminar-curriculum-section .cta-features {
    max-width: 600px;
    margin: 0 auto;
}

.seminar-curriculum-section .cta-feature {
    justify-content: center;
}

/* ワンポイントAI活用講座セクション */
.ai-special-section {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251, 191, 36, 0.4);
    @media (max-width: 768px) {
        padding: 25px 20px;
    }
}

.ai-special-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    @media (max-width: 768px) {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.ai-special-title i {
    color: #fbf224;;
    font-size: 20px;
}

.ai-special-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 左側：テキスト説明 */
.ai-special-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-special-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    @media (max-width: 768px) {
        font-size: 15px;
    }
}

.ai-special-description {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    @media (max-width: 768px) {
        font-size: 13px;
    }
}

/* 右側：Before/After画像 */
.ai-special-images {
    display: flex;
    align-items: center;
    gap: 20px;
    @media (max-width: 768px) {
        flex-direction: column;
        gap: 15px;
    }
}

.ai-image-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-image-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-white);
    text-align: center;
    padding: 6px 12px;
    border-radius: 6px;
}

.ai-image-item:first-child .ai-image-label {
    background-color: rgba(239, 68, 68, 0.85);
}

.ai-image-item:last-child .ai-image-label {
    background-color: rgba(34, 197, 94, 0.85);
}

.ai-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: block;
}

.ai-image-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    @media (max-width: 768px) {
        transform: rotate(90deg);
    }
}

.ai-image-arrow i {
    font-size: 28px;
    color: var(--bg-white);
    @media (max-width: 768px) {
        font-size: 24px;
    }
}

/* セミナー申込ボタンの強調表示 */
.btn-seminar-highlight {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.btn-seminar-highlight:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5) !important;
}

/* ==========================================
   お問い合わせ
   ========================================== */
.contact-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

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

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-method {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    @media (max-width: 768px) {
        grid-template-columns: 1fr;
    }
    @media (max-width: 480px) {
        padding: 50px 15px;
    }
}

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

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.method-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.contact-method h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-method p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ==========================================
   モーダル
   ========================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 50px auto;
    padding: 50px;
    border-radius: 16px;
    max-width: 700px;
    position: relative;
    box-shadow: var(--shadow-xl);
    @media (max-width: 768px) {
        padding: 30px 20px;
        margin: 20px;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.modal-content h2 i {
    color: var(--accent-color);
    margin-right: 12px;
}

.modal-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.modal-form {
    /* フォームスタイルは共通 */
}

/* ==========================================
   フォーム
   ========================================== */
.form-group {
    margin-bottom: 25px;
}

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

.required {
    color: #ef4444;
    font-size: 12px;
    margin-left: 5px;
}

.optional {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.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(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
}


.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    text-align: center;
}

.wpcf7 input.submit {
    display: block;
    margin: 30px auto 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0a7c58 0%, #0aa16f 100%);
    border: 2px solid #059669;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.wpcf7 input.submit:hover {
    background: linear-gradient(135deg, #0c6146 0%, #05714d 100%);
    border: 2px solid #013927;
}

.thanks_box {
   text-align: center;
   margin-bottom: 100px;
   margin-top:60px;
}
.thanks_box p {
   line-height: 1.6;
   padding-top: 16px;
}

/* ==========================================
   フッター
   ========================================== */
.footer {
    background-color: #1f2937;
    color: var(--bg-white);
    padding: 70px 0 40px;
}

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

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section h3::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../img/ento-owl/grand_logo_l.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
}

.footer-section-2 h3::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../img/ento-owl/ento-owl_logo_l_w.webp');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
}

.footer-section-3 h3::before {
  content: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
  width: 0;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.footer-links a {
    color: var(--accent-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-philosophy {
    font-style: italic;
    opacity: 0.8;
    margin: 20px 0 10px;
    font-size: 15px;
}

.footer-location {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
    opacity: 0.85;
}

.footer-services {
    list-style: none;
}

.footer-services li {
    padding: 10px 0;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-services li a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-services li a:hover {
    color: #74a7f9;
    transform: translateX(5px);
}


.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 14px;
}
