/* ==========================================
   LUMINEX Solar Energy - 메인 페이지 스타일
   
   [포함 내용]
   1. BASE: Snap Scroll & 스크롤 인디케이터
   2. HERO: 비디오 배경, 통계
   3. NEWS: LUMI NEWS Section
   4. WHY: 선택 이유 6가지
   5. PROCESS: 진행과정 6단계
   6. BUSINESS: 사업분야 6개
   7. TESTIMONIALS: 고객 후기
   8. CONTACT: 연락처 정보
   9. RESPONSIVE: 반응형 디자인
   
   [사용 페이지]
   메인 페이지 (index.php)만 사용
   ========================================== */





/* ==========================================
   1. BASE - SNAP SCROLL & 스크롤 인디케이터
   ========================================== */

/* ===== Snap Scroll Sections ===== */
html {
    scroll-snap-type: y mandatory;
}

body {
    scroll-snap-type: y mandatory;
}

.section {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section::-webkit-scrollbar {
    width: 0;
    display: none;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: fixed;
    bottom: 3vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5vw;
    opacity: 1;
    transition: var(--transition);
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-text {
    font-size: 0.7vw;
    letter-spacing: 0.3em;
    color: var(--text-white);
    font-weight: 500;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
}

.scroll-arrow span {
    width: 1.5vw;
    height: 2px;
    background: var(--text-white);
    animation: scrollDown 1.5s infinite;
}

.scroll-arrow span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Footer Adjustments ===== */
.footer {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 20vh;
}





/* ==========================================
   2. HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== Video Background ===== */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(15, 23, 42, 0.7) 100%);
}

/* ===== Hero Content ===== */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 50vw;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4vw;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.4vw 1vw;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1vw;
    font-size: 0.65vw;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-icon {
    font-size: 0.8vw;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.2vw;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.7vw;
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
}

.title-line {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.9vw;
    margin-bottom: 1.5vw;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    gap: 3vw;
    justify-content: center;
    margin-bottom: 1.5vw;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1vw 1.5vw;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-family: var(--font-primary);
    font-size: 2.5vw;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    display: inline-block;
}

.hero-stat-suffix {
    font-family: var(--font-primary);
    font-size: 1.5vw;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 0.2vw;
}

.hero-stat-label {
    font-size: 0.75vw;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.4vw;
    font-weight: 500;
}

/* ===== Hero Buttons ===== */
.hero-buttons {
    display: flex;
    gap: 1vw;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}





/* ==========================================
   3. NEWS SECTION (LUMI NEWS)
   ========================================== */

.news-section {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    padding: 0.5vw 0;
    background:
        linear-gradient(rgba(248, 250, 252, 0.1), rgba(248, 250, 252, 0.95)),
        url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1920&q=80') center/cover no-repeat;
}

.news-section .section-header {
    margin-bottom: 1vw;
}

/* ===== News Grid ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8vw;
    margin-bottom: 1vw;
}

/* ===== News Card ===== */
.news-card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
}

.news-card.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.news-card:nth-child(1) { animation-delay: 0s; }
.news-card:nth-child(2) { animation-delay: 0.1s; }
.news-card:nth-child(3) { animation-delay: 0.1s; }
.news-card:nth-child(4) { animation-delay: 0.2s; }
.news-card:nth-child(5) { animation-delay: 0.2s; }
.news-card:nth-child(6) { animation-delay: 0.3s; }

.news-card.visible:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ===== News Thumbnail (1:1 정사각형) ===== */
.news-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.news-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card.visible:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    font-size: 2vw;
}

/* ===== News Badge ===== */
.news-badge {
    position: absolute;
    top: 0.5vw;
    left: 0.5vw;
    padding: 0.2vw 0.5vw;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 0.6vw;
    font-weight: 600;
    border-radius: 8px;
    z-index: 2;
}

/* ===== News Overlay ===== */
.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 158, 11, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.news-card.visible:hover .news-overlay {
    opacity: 1;
}

.news-overlay svg {
    color: var(--text-white);
    width: 1.2vw;
    height: 1.2vw;
}

/* ===== News CTA ===== */
.news-cta {
    text-align: center;
    margin-top: 0.8vw;
}

.news-cta .btn {
    padding: 0.6vw 1.3vw;
    font-size: 0.7vw;
}

/* ===== News Empty State ===== */
.news-empty {
    text-align: center;
    padding: 2vw 0;
    color: var(--text-light);
    font-size: 0.75vw;
}





/* ==========================================
   4. WHY SECTION (선택 이유)
   ========================================== */

.why-section {
    background: var(--bg-white);
    display: flex;
    align-items: center;
    padding: 0.5vw 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&q=80') center/cover no-repeat;
}

/* ===== Why Grid ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6vw;
}

/* ===== Why Card ===== */
.why-card {
    background: var(--bg-light);
    padding: 0.8vw;
    border-radius: 8px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.why-card:nth-child(1) { animation-delay: 0s; }
.why-card:nth-child(2) { animation-delay: 0.1s; }
.why-card:nth-child(3) { animation-delay: 0.2s; }
.why-card:nth-child(4) { animation-delay: 0.3s; }
.why-card:nth-child(5) { animation-delay: 0.4s; }
.why-card:nth-child(6) { animation-delay: 0.5s; }

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 0.4vw;
}

.card-icon svg {
    width: 2vw;
    height: 2vw;
}

.card-title {
    font-size: 0.85vw;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.4vw;
}

.card-description {
    font-size: 0.65vw;
    color: var(--text-light);
    line-height: 1.5;
}





/* ==========================================
   5. PROCESS SECTION (진행과정 6단계)
   ========================================== */

.process-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    display: flex;
    align-items: center;
    padding: 0.5vw 0;
    background:
        linear-gradient(rgba(30, 58, 138, 0.1), rgba(30, 64, 175, 0.95)),
        url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1920&q=80') center/cover no-repeat;
}

.process-section .section-header {
    color: var(--text-white);
}

.process-section .title-small {
    color: var(--accent-color);
}

.process-section .title-main {
    color: var(--text-white);
}

.process-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Process Timeline ===== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.6vw;
    margin-top: 0.8vw;
}

/* ===== Process Step ===== */
.process-step {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6vw;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.process-step.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0s; }
.process-step:nth-child(2) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(4) { animation-delay: 0.3s; }
.process-step:nth-child(5) { animation-delay: 0.4s; }
.process-step:nth-child(6) { animation-delay: 0.5s; }

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 1.3vw;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 0.3vw;
}

.step-content {
    margin-bottom: 0.4vw;
}

.step-title {
    font-size: 0.75vw;
    font-weight: 700;
    margin-bottom: 0.2vw;
}

.step-description {
    font-size: 0.6vw;
    opacity: 0.8;
    line-height: 1.4;
}

.step-icon {
    color: var(--accent-color);
}

.step-icon svg {
    width: 1.3vw;
    height: 1.3vw;
}





/* ==========================================
   6. BUSINESS SECTION (사업분야 6개)
   ========================================== */

.business-section {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    padding: 0.5vw 0;
    background:
        linear-gradient(rgba(248, 250, 252, 0.1), rgba(248, 250, 252, 0.95)),
        url('https://images.unsplash.com/photo-1559302504-64aae6ca6b6d?w=1920&q=80') center/cover no-repeat;
}

/* ===== Business Grid ===== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6vw;
}

/* ===== Business Card ===== */
.business-card {
    background: var(--bg-white);
    padding: 1vw;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.business-card.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.business-card:nth-child(1) { animation-delay: 0s; }
.business-card:nth-child(2) { animation-delay: 0.1s; }
.business-card:nth-child(3) { animation-delay: 0.2s; }
.business-card:nth-child(4) { animation-delay: 0.3s; }
.business-card:nth-child(5) { animation-delay: 0.4s; }
.business-card:nth-child(6) { animation-delay: 0.5s; }

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-number {
    font-family: var(--font-primary);
    font-size: 2.2vw;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 0.4vw;
    right: 0.8vw;
    line-height: 1;
}

.business-title {
    font-size: 0.9vw;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.4vw;
}

.business-description {
    font-size: 0.65vw;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.6vw;
}

.business-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3vw;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.65vw;
    transition: var(--transition);
}

.business-link:hover {
    gap: 0.6vw;
    color: var(--primary-dark);
}

.business-link svg {
    width: 0.9vw;
    height: 0.9vw;
}





/* ==========================================
   7. TESTIMONIALS SECTION (고객 후기)
   ========================================== */

.testimonials-section {
    background: var(--bg-white);
    display: flex;
    align-items: center;
    padding: 0.5vw 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1920&q=80') center/cover no-repeat;
}

/* ===== Testimonials Grid ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6vw;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
    background: var(--bg-light);
    padding: 1vw;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:nth-child(5) { animation-delay: 0.4s; }
.testimonial-card:nth-child(6) { animation-delay: 0.5s; }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 0.9vw;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 0.68vw;
    color: var(--text-dark);
    line-height: 1.6;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    padding-top: 0.6vw;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 0.75vw;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.15vw;
}

.author-info {
    font-size: 0.6vw;
    color: var(--text-light);
}





/* ==========================================
   8. CONTACT SECTION (연락처 정보)
   ========================================== */

.contact-section {
    padding: 0.5vw 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1920&q=80') center/cover no-repeat;
}

.contact-content {
    width: 100%;
    text-align: center;
}

/* ===== Contact Info Grid ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
    margin: 2vw 0;
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Contact Info Card ===== */
.contact-info-card {
    background: var(--bg-white);
    padding: 1.5vw;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8vw;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    color: var(--text-white);
}

.info-icon svg {
    width: 1.8vw;
    height: 1.8vw;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
}

.info-label {
    font-size: 0.65vw;
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    font-size: 1vw;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ===== Contact CTA ===== */
.contact-cta {
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
}

.contact-note {
    font-size: 0.68vw;
    color: var(--text-light);
}





/* ==========================================
   9. RESPONSIVE DESIGN
   ========================================== */

/* ===== Tablet (1024px 이하) ===== */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero-content {
        max-width: 80vw;
    }

    .hero-title {
        font-size: 7vw;
    }

    .hero-subtitle {
        font-size: 2vw;
    }

    .hero-stats {
        gap: 2vw;
    }

    .hero-stat-item {
        padding: 1.5vw 2vw;
    }

    .hero-stat-number {
        font-size: 4vw;
    }

    .hero-stat-suffix {
        font-size: 2.5vw;
    }

    .hero-stat-label {
        font-size: 1.2vw;
    }

    /* Why Section */
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3vw;
    }

    .card-icon svg {
        width: 6vw;
        height: 6vw;
    }

    .card-title {
        font-size: 2.5vw;
    }

    .card-description {
        font-size: 1.5vw;
    }

    /* Process Section */
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 3vw;
    }

    .step-number {
        font-size: 5vw;
    }

    .step-title {
        font-size: 2vw;
    }

    .step-description {
        font-size: 1.3vw;
    }

    .step-icon svg {
        width: 4vw;
        height: 4vw;
    }

    /* Business Section */
    .business-grid {
        grid-template-columns: 1fr;
        gap: 3vw;
    }

    .business-title {
        font-size: 2.5vw;
    }

    .business-description {
        font-size: 1.5vw;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2vw;
    }

    .testimonial-rating {
        font-size: 1.5vw;
    }

    .testimonial-text {
        font-size: 1.2vw;
    }

    .author-name {
        font-size: 1.3vw;
    }

    .author-info {
        font-size: 1vw;
    }

    /* Contact Section */
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2vw;
        max-width: 100%;
    }

    .contact-info-card {
        padding: 2vw;
        flex-direction: column;
        text-align: center;
        gap: 1.5vw;
    }

    .info-icon {
        width: 7vw;
        height: 7vw;
    }

    .info-icon svg {
        width: 3.5vw;
        height: 3.5vw;
    }

    .info-label {
        font-size: 1.5vw;
    }

    .info-value {
        font-size: 2vw;
    }

    .contact-note {
        font-size: 1.5vw;
    }
}

/* ===== Mobile (768px 이하) ===== */
@media (max-width: 768px) {
    /* Snap Scroll */
    html {
        scroll-snap-type: y mandatory;
    }

    .section {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        scroll-snap-align: start;
        padding: 0;
        overflow: hidden;
    }

    /* Hero Section */
    .hero-content {
        max-width: 90vw;
    }

    .hero-badge {
        padding: 1.5vw 3vw;
        font-size: 2vw;
        margin-bottom: 3vw;
    }

    .badge-icon {
        font-size: 2.5vw;
    }

    .hero-title {
        font-size: 7vw;
        gap: 0.5vw;
        margin-bottom: 2vw;
    }

    .hero-subtitle {
        font-size: 2.8vw;
        margin-bottom: 2.5vw;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2vw;
        margin-bottom: 3vw;
    }

    .hero-stat-item {
        padding: 2vw 2.5vw;
    }

    .hero-stat-number {
        font-size: 5vw;
    }

    .hero-stat-suffix {
        font-size: 2.5vw;
    }

    .hero-stat-label {
        font-size: 2vw;
        margin-top: 0.5vw;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 2vw;
        width: 100%;
    }

    /* Why Section */
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2vw;
    }

    .why-card {
        padding: 2.5vw;
    }

    .card-icon svg {
        width: 6vw;
        height: 6vw;
    }

    .card-title {
        font-size: 2.5vw;
        margin-bottom: 0.8vw;
    }

    .card-description {
        font-size: 1.8vw;
    }

    /* Process Section */
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2vw;
    }

    .process-step {
        padding: 2.5vw;
    }

    .step-number {
        font-size: 4vw;
        margin-bottom: 1vw;
    }

    .step-title {
        font-size: 2.5vw;
        margin-bottom: 0.8vw;
    }

    .step-description {
        font-size: 1.8vw;
    }

    .step-icon svg {
        width: 4vw;
        height: 4vw;
    }

    /* Business Section */
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw;
    }

    .business-card {
        padding: 2.5vw;
    }

    .business-number {
        font-size: 8vw;
        top: 1.5vw;
        right: 2.5vw;
    }

    .business-title {
        font-size: 3vw;
        margin-bottom: 1vw;
    }

    .business-description {
        font-size: 2.2vw;
        margin-bottom: 1.5vw;
    }

    .business-link {
        font-size: 2.2vw;
    }

    .business-link svg {
        width: 3vw;
        height: 3vw;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2vw;
    }

    .testimonial-card {
        padding: 2vw;
        gap: 1.2vw;
    }

    .testimonial-rating {
        font-size: 2.5vw;
    }

    .testimonial-text {
        font-size: 1.8vw;
        line-height: 1.5;
    }

    .author-name {
        font-size: 2vw;
    }

    .author-info {
        font-size: 1.5vw;
    }

    /* Contact Section */
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2vw;
        max-width: 100%;
    }

    .contact-info-card {
        padding: 2.5vw;
        flex-direction: column;
        text-align: center;
        gap: 1.5vw;
    }

    .info-icon {
        width: 8vw;
        height: 8vw;
        flex-shrink: 0;
    }

    .info-icon svg {
        width: 4vw;
        height: 4vw;
    }

    .info-label {
        font-size: 1.8vw;
    }

    .info-value {
        font-size: 2.5vw;
    }

    .contact-note {
        font-size: 2vw;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 5vw;
    }

    .scroll-text {
        font-size: 2vw;
    }

    .scroll-arrow span {
        width: 4vw;
    }
}



/* ===== NEWS SECTION RESPONSIVE ===== */
@media (max-width: 1200px) {
    .news-section .section-header {
        margin-bottom: 0.8vw;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1vw;
        margin-bottom: 0.8vw;
    }

    .news-thumbnail {
        padding-bottom: 100%;
    }

    .news-badge {
        font-size: 1.2vw;
        padding: 0.4vw 0.8vw;
    }

    .news-overlay svg {
        width: 3vw;
        height: 3vw;
    }

    .news-cta {
        margin-top: 0.8vw;
    }

    .news-cta .btn {
        padding: 0.8vw 1.8vw;
        font-size: 1.2vw;
    }
}

@media (max-width: 1024px) {
    .news-section .section-header {
        margin-bottom: 0.6vw;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8vw;
        margin-bottom: 0.6vw;
    }

    .news-thumbnail {
        padding-bottom: 100%;
    }

    .news-cta {
        margin-top: 0.6vw;
    }

    .news-cta .btn {
        padding: 0.7vw 1.5vw;
        font-size: 1.1vw;
    }
}

@media (max-width: 768px) {
    .news-section .section-header {
        margin-bottom: 1vw;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1vw;
        margin-bottom: 1vw;
    }

    .news-thumbnail {
        padding-bottom: 100%;
    }

    .news-badge {
        top: 1vw;
        left: 1vw;
        padding: 0.5vw 1vw;
        font-size: 1.5vw;
    }

    .news-overlay svg {
        width: 4vw;
        height: 4vw;
    }

    .news-cta {
        margin-top: 1vw;
    }

    .news-cta .btn {
        padding: 1.2vw 2.5vw;
        font-size: 1.8vw;
    }

    .news-placeholder {
        font-size: 6vw;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8vw;
    }

    .news-thumbnail {
        padding-bottom: 100%;
    }
}