/* Cyberpunk E-Sports Design System */
:root {
    --cyber-black: #06090f;
    --cyber-blue: #0A142F;
    --cyber-gold: #FFD24D;
    --cyber-gold-glow: rgba(255, 210, 77, 0.4);
    --cyber-neon: #00f3ff;
    --cyber-purple: #bd00ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #f0f2f5;
    --text-dim: #94a3b8;
}

/* Home Wrapper */
.home-page {
    background-color: var(--cyber-black);
    color: var(--text-white);
    overflow-x: hidden;
}

/* 1) Premium Services - Bento & Grid */
.premium-services-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-label {
    color: var(--cyber-gold);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title-large {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

/* Quick Links Grid */
.quick-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.quick-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 20px;
    text-align: center;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.quick-card:hover {
    border-color: var(--cyber-gold);
    background: rgba(255, 210, 77, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 210, 77, 0.1);
}

.quick-card i {
    font-size: 2.5rem;
    color: var(--cyber-gold);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.quick-card:hover i {
    transform: scale(1.1);
}

.quick-card span {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
}

/* Split Service Block */
.split-service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #0d111a;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.split-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--cyber-gold);
    font-family: 'Orbitron', sans-serif;
}

.split-content p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.1rem;
}

.split-visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.split-visual .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Integrated Cards */
.integrated-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.luxury-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.luxury-card:hover {
    border-color: rgba(255, 210, 77, 0.4);
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
}

.luxury-card h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.luxury-card ul {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.luxury-card ul li {
    color: rgba(255, 255, 255, 0.7);
    /* Slightly brighter than text-dim for clarity */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.luxury-card ul li i {
    color: var(--cyber-gold);
    font-size: 0.8rem;
}

.luxury-card .btn {
    align-self: flex-start;
}

/* 2) Benefits Section - Bento Grid */
.benefits-section {
    padding: 120px 0;
    background: #05070a;
    position: relative;
    overflow: hidden;
}

.benefits-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card:hover {
    border-color: var(--cyber-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 210, 77, 0.1);
}

/* Specific Card Layouts */
.bento-card.main {
    grid-column: span 2;
    grid-row: span 2;
    justify-content: flex-start;
}

.bento-card.skill {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card.security {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card.value {
    grid-column: span 2;
    grid-row: span 1;
}

/* Card Elements */
.bento-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    transition: transform 0.8s ease;
}

.bento-card:hover .bento-card-bg {
    transform: scale(1.1);
    opacity: 0.25;
}

.bento-tag {
    position: relative;
    z-index: 2;
    background: rgba(255, 210, 77, 0.1);
    border: 1px solid var(--cyber-gold);
    color: var(--cyber-gold);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.bento-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.bento-card .num {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 950;
    color: var(--cyber-gold);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 20px;
    transition: opacity 0.4s ease;
}

.bento-card:hover .num {
    opacity: 0.3;
}

.bento-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
}

.bento-card.main h3 {
    font-size: 2.2rem;
}

.bento-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-list {
    list-style: none;
    margin-top: 30px;
}

.bento-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.bento-list li i {
    color: var(--cyber-gold);
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--cyber-gold);
    margin-bottom: 20px;
    display: block;
}

.bento-icon-large {
    font-size: 4rem;
    color: var(--cyber-gold);
    opacity: 0.8;
}

/* Bento Value Specific */
.bento-card.value .flex-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bento-card.value .text-area {
    flex: 1;
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .benefits-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 350px;
    }

    .bento-card.main {
        grid-column: span 2 !important;
        height: auto;
    }

    .bento-card.value {
        grid-column: span 2 !important;
        height: auto;
    }
}

@media (max-width: 768px) {
    .benefits-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card {
        grid-column: span 1 !important;
        height: auto;
        padding: 30px;
    }

    .bento-card.main h3 {
        font-size: 1.8rem;
    }
}

/* 3) News Magazine Layout */
.news-magazine-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Featured Side */
.featured-card {
    position: relative;
    display: block;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
}

.featured-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 20%, rgba(6, 9, 15, 0.95) 90%);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 50px;
    width: 100%;
    z-index: 2;
}

.news-tag {
    display: inline-block;
    background: var(--cyber-gold);
    color: var(--cyber-black);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    line-height: 1.2;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 90%;
}

.news-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.featured-card:hover {
    border-color: var(--cyber-gold);
    transform: translateY(-8px);
}

.featured-card:hover .featured-thumb img {
    transform: scale(1.05);
}

/* List Side */
.news-list-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-mini-card {
    display: flex;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    align-items: center;
}

.mini-thumb {
    width: 120px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-content {
    flex: 1;
}

.mini-tag {
    color: var(--cyber-gold);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-content h4 {
    color: #fff;
    font-size: 1.05rem;
    margin: 5px 0 8px;
    line-height: 1.4;
    font-family: 'Noto Sans KR', sans-serif;
}

.mini-date {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.news-mini-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cyber-gold);
    transform: translateX(10px);
}

@media (max-width: 992px) {
    .news-magazine-layout {
        grid-template-columns: 1fr;
    }
}

/* 4) Review Testimonial Grid */
.review-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--cyber-gold);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 210, 77, 0.1);
    border: 1px solid var(--cyber-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-gold);
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.user-status {
    font-size: 0.75rem;
    color: var(--cyber-gold);
    font-weight: 600;
    opacity: 0.8;
}

.rating-stars {
    color: var(--cyber-gold);
    font-size: 0.8rem;
}

.testimonial-body h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Noto Sans KR', sans-serif;
}

.testimonial-body p {
    color: var(--text-dim);
    line-height: 1.7;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-tag {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .review-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* 5) Infinity Banner */
.infinity-banner {
    background: var(--cyber-gold);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 100px 0;
    transform: rotate(-1.5deg) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 210, 77, 0.15);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--cyber-black);
    text-transform: uppercase;
}

.marquee-text span {
    margin: 0 40px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* 6) Champion Skill Guides */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.video-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 210, 77, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-black);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.video-card:hover {
    border-color: var(--cyber-gold);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.video-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-category {
    font-size: 0.7rem;
    color: var(--cyber-gold);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.video-info h4 {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    font-family: 'Noto Sans KR', sans-serif;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* 7) FAQ Redesign - Split Layout */
.faq-split-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: flex-start;
}

.faq-visual-side {
    position: sticky;
    top: 150px;
}

.faq-glow-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-glow-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 210, 77, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.faq-glow-box .main-icon {
    font-size: 4rem;
    color: var(--cyber-gold);
    margin-bottom: 30px;
    display: block;
    position: relative;
    z-index: 1;
}

.faq-glow-box h3 {
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.faq-glow-box p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.faq-glow-box .btn {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Accordion Side */
.faq-accordion-refined {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-refined {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.faq-head {
    padding: 25px 35px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.q-icon {
    font-family: 'Orbitron', sans-serif;
    color: var(--cyber-gold);
    font-weight: 900;
    font-size: 1.1rem;
}

.faq-head h4 {
    flex: 1;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-head i {
    color: var(--text-dim);
    transition: transform 0.4s ease;
}

.faq-body {
    padding: 0 35px 30px 75px;
    display: none;
    line-height: 1.8;
}

.faq-body p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* Active State */
.faq-item-refined.active {
    background: rgba(255, 210, 77, 0.03);
    border-color: var(--cyber-gold);
}

.faq-item-refined.active .faq-head i {
    transform: rotate(180deg);
    color: var(--cyber-gold);
}

.faq-item-refined.active .faq-body {
    display: block;
}

.faq-item-refined:hover:not(.active) {
    border-color: rgba(255, 210, 77, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

/* Responsive FAQ */
@media (max-width: 992px) {
    .faq-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-visual-side {
        position: static;
    }

    .faq-glow-box {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .faq-head {
        padding: 20px;
    }

    .faq-body {
        padding: 0 20px 25px 20px;
    }

    .q-icon {
        display: none;
    }
}

/* 8) Final CTA */
.final-cta {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(rgba(6, 9, 15, 0.85), rgba(6, 9, 15, 0.85)), url('../assets/lolstar/slidebg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 60px auto 0;
}

/* 9) SEO Magazine Layout */
.seo-magazine-section {
    padding: 120px 0;
    background: #05070a;
}

.seo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.seo-header-minimal {
    margin-bottom: 50px;
}

.cyber-badge {
    display: inline-block;
    background: rgba(255, 210, 77, 0.1);
    color: var(--cyber-gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.seo-header-minimal h2 {
    font-size: 2.2rem;
    color: #fff;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
}

.seo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    position: relative;
    max-height: 600px;
    overflow: hidden;
    transition: max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-content-wrapper.expanded {
    max-height: 5000px;
}

.seo-main-column {
    position: relative;
}

.seo-article {
    color: var(--text-dim);
    line-height: 1.8;
}

.seo-article h3 {
    color: #fff;
    font-size: 1.6rem;
    margin: 40px 0 20px;
}

.seo-article h4 {
    color: var(--cyber-gold);
    font-size: 1.35rem;
    margin: 30px 0 15px;
}

.seo-article p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.seo-article strong {
    color: var(--cyber-gold);
}

.seo-article ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.seo-article li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.seo-article li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyber-gold);
}

.seo-highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--cyber-gold);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 16px 16px 0;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.seo-highlight-box i {
    font-size: 2rem;
    color: var(--cyber-gold);
}

.seo-highlight-box h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.seo-side-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seo-summary-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
}

.seo-summary-card h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.summary-list {
    list-style: none;
}

.summary-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.summary-list li i {
    color: var(--cyber-gold);
}

.seo-info-banner {
    background: linear-gradient(135deg, var(--cyber-gold), #b38b00);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    color: var(--cyber-black);
}

.seo-info-banner i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.seo-info-banner p {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.4;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
}

.seo-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, #05070a 10%, transparent);
    z-index: 5;
    transition: opacity 0.5s ease;
}

.seo-content-wrapper.expanded .seo-fade-overlay {
    opacity: 0;
    pointer-events: none;
}

.seo-action-area {
    margin-top: 50px;
    text-align: center;
}

.seo-expand-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    padding: 15px 40px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.seo-expand-btn:hover {
    border-color: var(--cyber-gold);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .seo-content-wrapper {
        grid-template-columns: 1fr;
    }

    .seo-side-column {
        display: none;
    }
}

/* Common Classes for Sections */
.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.margin-top {
    margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {

    .quick-service-grid,
    .integrated-cards,
    .post-grid,
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-service-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .quick-service-grid,
    .integrated-cards,
    .post-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .benefit-trigger {
        padding: 25px;
    }

    .benefit-content {
        padding: 0 25px 30px 25px;
        grid-template-columns: 1fr;
    }

    .split-content {
        padding: 40px 30px;
    }
}