﻿

/* ===================================
   LP特化型 - インデックスページスタイル
   =================================== */

/* ===================================
   ヒーローセクション - ダイナミックフォント版
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('/img/hero-hvac-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 30%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, 
                rgba(46, 139, 87, 0.2) 0%, 
                transparent 70%);
    animation: hvacPulse 6s ease-in-out infinite;
}

@keyframes hvacPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.01);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.emergency-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF6B35 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 32px;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.6);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.emergency-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero h1 {
    font-size: clamp(32px, 6vw, 80px);  /* PCで最大80pxに拡大 */
    font-weight: 900;                    /* より太く */
    margin-bottom: 32px;                 /* マージンも調整 */
    line-height: 1.2;                    /* 行間を少し詰める */
    color: white;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
    letter-spacing: -0.03em;             /* 文字間隔を少し詰める */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8),
                 0 0 25px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    color: #FFD700;
    display: block;
    margin: 12px 0;                      /* マージン調整 */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(255, 215, 0, 0.4);
    font-weight: 900;                    /* spanも太く */
}

.hero-subtitle {
    font-size: clamp(18px, 3.5vw, 28px); /* PCで最大28pxに拡大 */
    margin-bottom: 50px;                  /* マージン調整 */
    color: white;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    line-height: 1.5;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.6);
    font-weight: 600;                     /* 少し太く */
}

.hero-subtitle strong {
    color: var(--accent-orange);
    font-weight: 800;                     /* より太く */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 幅を少し拡大 */
    gap: 32px;                           /* ギャップを拡大 */
    margin: 60px auto;                   /* マージン調整 */
    max-width: 700px;                    /* 最大幅を拡大 */
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 28px 24px;                  /* パディング拡大 */
    border-radius: 20px;                 /* 角丸拡大 */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-size: clamp(22px, 2.5vw, 32px); /* PCで最大32pxに拡大 */
    font-weight: 900;                     /* より太く */
    color: var(--primary-green);
    margin-bottom: 8px;                   /* マージン調整 */
    display: block;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: clamp(14px, 1.2vw, 18px);  /* PCで最大18pxに拡大 */
    color: var(--text-dark);
    opacity: 0.8;                          /* 少し濃く */
    font-weight: 700;                      /* より太く */
    line-height: 1.3;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(18px, 1.5vw, 22px);  /* CTAボタンも少し拡大 */
    padding: 22px 44px;                    /* パディング拡大 */
    margin-top: 50px;                      /* マージン調整 */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    box-shadow: 0 12px 45px rgba(46, 139, 87, 0.6);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;                      /* より太く */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 55px rgba(46, 139, 87, 0.7);
}

.cta-subtext {
    margin-top: 20px;                      /* マージン調整 */
    margin-bottom: 60px;
    font-size: clamp(16px, 1.2vw, 20px);  /* PCで最大20pxに拡大 */
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 600;                      /* 少し太く */
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .hero {
        background-position: center right;
    }
    
    .hero h1 {
        font-size: clamp(28px, 6vw, 65px); /* タブレットサイズ調整 */
    }
    
    .hero-subtitle {
        font-size: clamp(16px, 3vw, 24px);
    }
}

@media (max-width: 768px) {
    .hero {
        background: url('/img/hero-hvac-bg.jpg');
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero h1 {
        font-size: clamp(28px, 8vw, 48px); /* モバイルは現状維持 */
        font-weight: 800;
    }
    
    .hero-subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .stat-number {
        font-size: 20px;                   /* モバイルは現状維持 */
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
        max-width: 600px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .emergency-badge {
        margin-top: 40px;
    }
    
    .cta-subtext {
        margin-bottom: 40px;
        font-size: 16px;
    }
    
    .hero-cta {
        font-size: 18px;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(24px, 8vw, 36px); /* スマホはより小さく */
    }
    
    .emergency-badge {
        font-size: 14px;
        padding: 10px 24px;
        margin-top: 30px;
    }
    
    .cta-subtext {
        margin-bottom: 30px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 300px;
    }
}

/* ===================================
   問題提起セクション
   =================================== */
.problems {
    padding: 80px 20px;
    background: var(--gray-light);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.problem-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
    box-shadow: 0 4px 16px var(--shadow-light);
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-medium);
    border-color: var(--primary-green);
}

.problem-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.problem-list {
    list-style: none;
    color: var(--text-dark);
    text-align: left;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.problem-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

.solution-bridge {
    text-align: center;
    margin-top: 40px;
}

.bridge-content h3 {
    font-size: 28px;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 20px;
}

.bridge-arrow {
    font-size: 32px;
    color: var(--primary-green);
    animation: bounce 2s infinite;
}

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

/* ===================================
   ソリューションセクション - マーカー強調追加
   =================================== */
.solution {
    padding: 80px 20px;
    background: var(--card-bg);
}

.solution-overview {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.solution-overview h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-description {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* 黄色マーカー強調 */
.highlight-marker {
    background: linear-gradient(180deg, 
                transparent 40%, 
                #FFEB3B 40%, 
                #FFEB3B 85%, 
                transparent 85%);
    padding: 2px 6px;
    font-weight: 700;
    color: var(--text-dark);
    border-radius: 4px;
    position: relative;
    animation: markerGlow 3s ease-in-out infinite;
}

@keyframes markerGlow {
    0%, 100% { 
        background: linear-gradient(180deg, 
                    transparent 40%, 
                    #FFEB3B 40%, 
                    #FFEB3B 85%, 
                    transparent 85%);
    }
    50% { 
        background: linear-gradient(180deg, 
                    transparent 40%, 
                    #FFD600 40%, 
                    #FFD600 85%, 
                    transparent 85%);
    }
}

.highlight-large {
    color: var(--accent-orange);
    font-size: 24px;
    font-weight: 800;
    display: block;
    margin-top: 16px;
}

.mechanism-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.mechanism-card {
    background: var(--light-green);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.mechanism-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-medium);
}

.mechanism-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
    position: relative;
}

/* アイコン表示確保 */
.mechanism-icon i {
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mechanism-card h4 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 700;
}

.mechanism-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

.solution-cta {
    text-align: center;
    margin-top: 60px;
}

.detail-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(46, 139, 87, 0.3);
    border: 2px solid transparent;
}

.detail-button:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(46, 139, 87, 0.4);
}

.detail-button i:last-child {
    transition: transform 0.3s ease;
}

.detail-button:hover i:last-child {
    transform: translateX(4px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .highlight-marker {
        font-size: 16px;
        padding: 1px 4px;
    }
    
    .solution-description {
        font-size: 16px;
    }
    
    .mechanism-simple {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===================================
   実績インパクトセクション
   =================================== */
.results-impact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: white;
}

.results-impact .section-title {
    color: white;
}

.results-impact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.impact-showcase {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.showcase-main {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-main h3 {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.impact-number {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.impact-number .amount {
    color: #FFD700;
}

.impact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.detail-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 12px;
}

.detail-item .label {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-bottom: 4px;
}

.detail-item .value {
    font-size: 18px;
    font-weight: 700;
}

.usage-examples {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 32px;
}

.usage-examples h4 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.usage-item {
    background: var(--highlight-green);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.usage-item:hover {
    background: #9CCC65;
    transform: translateY(-4px);
}

.usage-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.usage-item h5 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.usage-item p {
    font-size: 14px;
    opacity: 0.9;
}

.more-cases {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px;
    margin-top: 60px;
    color: var(--text-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center; /* センタリング追加 */
}

.more-cases h4 {
    text-align: center;
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.case-item {
    background: var(--light-green);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-medium);
}

.case-type {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 4px;
}

.case-result {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 8px; /* 少し上部マージンを追加 */
}

.link-button:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   信頼性・実績セクション
   =================================== */
.trust {
    padding: 80px 20px;
    background: var(--card-bg);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.trust-item {
    text-align: center;
    background: var(--light-green);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-medium);
}

.trust-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.trust-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.company-showcase {
    text-align: center;
    margin-bottom: 60px;
}

.company-showcase h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 32px;
    font-weight: 700;
}

.company-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.company-logo {
    background: var(--company-bg);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.8;
    transition: all 0.3s ease;
    height: 60px;
    border: 1px solid var(--gray-medium);
    font-size: 14px;
}

.company-logo:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-light);
    border-color: var(--primary-green);
}

.manufacturer-info {
    background: var(--gray-light);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--gray-medium);
}

.manufacturer-info h4 {
    text-align: center;
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.manufacturer-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--gray-medium);
    text-align: center;
}

.manufacturer-card h5 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.manufacturer-card p {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 20px;
}

.manufacturer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-badge {
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* ===================================
   補助金セクション
   =================================== */
.subsidy {
    padding: 80px 20px;
    background: var(--gray-light);
}

.subsidy-highlight {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--card-bg) 100%);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 12px 40px var(--shadow-light);
    border: 1px solid var(--gray-medium);
}

.subsidy-main {
    text-align: center;
    margin-bottom: 40px;
}

.subsidy-main h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.subsidy-rate {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.subsidy-deadline {
    background: var(--accent-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.subsidy-example {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-medium);
    box-shadow: 0 4px 16px var(--shadow-light);
}

.subsidy-example h4 {
    text-align: center;
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.example-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.flow-item {
    text-align: center;
    background: var(--light-green);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-medium);
}

.flow-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 4px;
}

.flow-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.flow-value.highlight {
    color: var(--primary-green);
    font-size: 20px;
}

.flow-arrow {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
}

.flow-arrow i {
    font-size: 20px;
    margin-bottom: 4px;
}

.flow-arrow span {
    display: block;
    font-size: 12px;
}

.example-note {
    text-align: center;
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 16px;
}

.subsidy-cta {
    text-align: center;
    margin-top: 40px;
}

.urgency-message {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.urgency-message i {
    color: var(--accent-orange);
}

/* ===================================
   お問い合わせセクション
   =================================== */
.contact {
    padding: 80px 20px;
    background: #2C3E50;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-intro strong {
    color: var(--accent-orange);
}

.contact-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 32px auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    color: var(--accent-orange);
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 600;
}

.contact-form-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-alternative {
    text-align: center;
    margin-top: 40px;
}

.contact-alternative h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.phone-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-green);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.phone-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.phone-contact p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}