/* Global Styles */
:root {
    --primary-color: #1a2b4b;
    /* Dark Navy for Trust */
    --primary-light: #2c426e;
    --accent-green: #2ecc71;
    --accent-blue: #3498db;
    --accent-purple: #9b59b6;
    --text-color: #333;
    --text-light: #666;
    --bg-light-gray: #f8f9fa;
    --bg-dark: #111;
    --white: #ffffff;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-danger {
    color: #e74c3c;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #eee;
}

/* Header */
.header {
    position: absolute;
    /* Changed from fixed to absolute */
    top: -50px;
    /* Move up 50px */
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1px 0 29px 0;
    /* Shift up 14px (Top 15->1, Bottom 15->29) */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2.2rem;
    /* Increased size */
    font-weight: 800;
    color: var(--white);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 1.2rem;
    /* Increased from default (approx 1rem) by 20% */
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.nav-list a:hover {
    color: var(--white);
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Hero Section */
.hero {
    margin-top: 0;
    /* Remove margin to go behind header */
    height: 100vh;
    /* Full screen height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 20px;
    /* Add side margin for mobile */
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
    /* Switch text to white */
}

.hero-badge {
    display: inline-block;
    background: var(--accent-green);
    /* Pop color on dark bg */
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    /* White text */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.1);
    /* Glass effect */
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text-box p {
    color: white;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Rolling Banner */
/* Rolling Banner */
.hero-banner-wrapper {
    position: absolute;
    bottom: 0;
    /* Align to bottom */
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 3;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-banner-track {
    display: flex;
    width: fit-content;
    animation: scrollBanner 20s linear infinite;
    gap: 80px;
    align-items: center;
}

.hero-banner-track img {
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

/* Specific resize for Naver */
.hero-banner-track img.banner-naver {
    max-height: 40px;
    /* 50% size */
}

/* Specific filter for Instagram (Make full white) */
.hero-banner-track img.banner-invert {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Specific filter for YouTube (Black Text -> White, Red Icon -> Red) 
   Logic: Invert(1) turns Black to White, Red to Cyan. Hue-rotate(180deg) turns Cyan back to Red. */
.hero-banner-track img.banner-youtube {
    filter: invert(1) hue-rotate(180deg);
    opacity: 1;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section-gray {
    background-color: var(--bg-light-gray);
}

.section-dark {
    background-color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 50px;
}

/* Positioning Section */
.positioning-card.main-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 50px;
    border-left: 5px solid var(--primary-color);
}

.positioning-card h3 {
    font-size: 1.5rem;
    line-height: 1.5;
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* =========================================
   Comparison Section (Premium Infographic)
   ========================================= */

.comparison-section {
    position: relative;
    overflow: hidden;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.comp-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comp-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Failure Card Styles */
.failure-card {
    border-top: 5px solid #ff6b6b;
    background: linear-gradient(to bottom, #fffafa, #fff);
}

.fail-icon {
    font-size: 2rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

/* Success Card Styles */
.success-card {
    border-top: 5px solid var(--primary-color);
    background: linear-gradient(to bottom, #f0f7ff, #fff);
}

.success-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(26, 75, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.card-header h3 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Timeline Components */
.timeline-container {
    position: relative;
    padding-left: 20px;
    flex: 1;
}

.timeline-line {
    position: absolute;
    left: 29px;
    /* align with dots */
    top: 10px;
    bottom: 50px;
    width: 2px;
}

.fail-line {
    background: linear-gradient(to bottom, #ffcccc, transparent);
}

.success-line {
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-green));
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
}

.step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 25px;
    z-index: 2;
    background: white;
    border: 3px solid #ccc;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    /* Prevent shrinking */
}

.fail-dot {
    border-color: #ffcfcf;
}

.success-dot {
    border-color: var(--primary-color);
}

.step-content {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
}

.step-content.muted {
    opacity: 0.6;
}

.step-content.danger-text {
    color: #e03131;
    font-weight: 800;
}

.step-content.highlight-text-step {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.25rem;
}

.highlight-dot {
    background: var(--accent-green);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}

.danger-dot {
    background: #ff6b6b;
    border-color: #c92a2a;
}

/* Micro Animations */
.micro-anim-graph {
    margin-left: auto;
    width: 50px;
    height: 30px;
}

.graph-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.graph-line {
    stroke: var(--accent-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawGraph 2s ease infinite;
}

@keyframes drawGraph {
    0% {
        stroke-dashoffset: 120;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.micro-anim-drain {
    margin-left: auto;
    color: #ff6b6b;
    font-weight: bold;
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.card-footer-text {
    margin-top: 30px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
}

/* Mobile Tabs */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }

    .comp-grid {
        grid-template-columns: 1fr;
    }

    .comp-tabs-wrapper {
        justify-content: center;
        margin-bottom: 20px;
        gap: 10px;
    }

    .comp-tab {
        padding: 10px 25px;
        border-radius: 20px;
        border: none;
        background: #eee;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .comp-tab.active {
        background: var(--primary-color);
        color: white;
    }

    /* Tab Logic CSS */
    .comp-card {
        display: none;
        /* Hidden by default on mobile */
    }

    .comp-card.active-card {
        display: flex;
        animation: fadeIn 0.5s;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-cross {
    color: #ff6b6b;
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.icon-circle {
    color: #2ecc71;
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.comparison-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.4;
}

/* Modern Flow Steps */
.flow-steps-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.step-modern {
    padding: 12px 20px;
    background: #f1f3f5;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #495057;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-modern.bad-step {
    background: #ffe3e3;
    color: #e03131;
}

.step-modern.danger-step {
    background: #c92a2a;
    color: white;
}

.arrow-modern {
    color: #adb5bd;
    font-weight: bold;
}

/* Modern Check List */
.check-list-modern {
    margin-top: 20px;
}

.check-list-modern li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.check-list-modern li .check-icon {
    color: #2ecc71;
    margin-right: 15px;
    font-size: 1.2rem;
    font-weight: 900;
}

.highlight-item {
    background: #fff !important;
    border: 1px solid #2ecc71;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.15);
    font-weight: 800;
}

.good-summary {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 600;
}

/* =========================================
   Strategy Section (3-Block Structure)
   ========================================= */

.section-strategy {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.strategy-block {
    margin-bottom: 140px;
    position: relative;
}

.strategy-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1f36;
    letter-spacing: -0.02em;
}

/* Block 1: Positioning (Video Background) */
.positioning-block {
    position: relative;
    padding: 80px 0;
}

.strategy-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    max-height: 400px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
    filter: blur(10px) grayscale(100%);
    overflow: hidden;
    background: #f0f4f8;
    /* Fallback */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 1));
}

.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 60px;
    display: inline-block;
    margin-top: 40px;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #3b4c68;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.highlight-card strong {
    color: var(--primary-color);
    font-weight: 800;
}

/* Block 2: Structure Flow (Visual System v2) */
.flow-container-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Connection Line & Animation */
.flow-connection-line {
    position: absolute;
    top: 56px;
    /* Center of 32px icon + padding */
    left: 80px;
    right: 80px;
    height: 2px;
    background: #edf2f7;
    z-index: 0;
}

.light-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateY(-50%);
    filter: blur(2px);
    animation: traveling-dot 3s ease-in-out infinite;
}

@keyframes traveling-dot {
    0% {
        left: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.flow-node-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 180px;
    text-align: center;
}

.node-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.node-icon {
    color: #a0aec0;
    transition: all 0.5s ease;
}

.flow-node-v2:hover .node-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.node-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: scale(0.8);
}

.flow-node-v2:hover .node-ring {
    animation: ring-expand 1.5s ease-out infinite;
}

@keyframes ring-expand {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.flow-node-v2 .node-content {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.node-content .step-num {
    display: block;
    position: static;
    /* Override absolute positioning */
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.node-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 6px;
}

.node-content p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.4;
}

/* Block 3: Growth Engine Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.showcase-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(46, 75, 255, 0.12);
}

.card-thumbnail {
    height: 160px;
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.card-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    transition: opacity 0.3s;
}

.showcase-card:hover .card-thumbnail {
    background-position: center 20%;
    /* Slight pan effect */
}

.card-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(46, 75, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.card-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3748;
    line-height: 1.35;
    transition: transform 0.3s;
}

.showcase-card:hover .card-content h4 {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

/* Trust Bar */
.platform-trust-bar {
    text-align: center;
    border-top: 1px solid #edf2f7;
    padding-top: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-text {
    font-size: 0.9rem;
    color: #a0aec0;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Space between logos */
    flex-wrap: wrap;
    height: auto;
    padding: 20px 0;
}

.trust-logo-item {
    height: 240px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.trust-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}



.closing-statement {
    margin-top: 50px;
}

.closing-statement p {
    font-size: 1.25rem;
    color: #2c3e50;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .flow-nodes-container {
        flex-direction: column;
    }

    .flow-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .execution-grid {
        grid-template-columns: 1fr;
    }
}

.service-card.highlight ul li::before {
    color: var(--accent-green);
}

/* Response for new grid */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin Section */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.admin-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-item.item-highlight {
    background: var(--accent-green);
    color: var(--primary-color);
    font-weight: 800;
    border: none;
}

.admin-message {
    font-size: 1.4rem;
    font-weight: 300;
}

/* Process Section */
#process {
    background: linear-gradient(rgba(26, 43, 75, 0.92), rgba(26, 43, 75, 0.95)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
    color: white;
    padding: 120px 0;
}

#process .section-title {
    color: white;
    margin-bottom: 10px;
}

#process .section-subtitle {
    color: var(--accent-green);
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect base */
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    /* Alignment change */
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    /* Green tint */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--accent-green);
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: var(--accent-green);
    color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
}

.step-card:hover .step-num {
    color: rgba(255, 255, 255, 0.15);
}

.step-content-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Response for new grid */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 30px 25px;
        flex-direction: row;
        /* Horizontal layout on mobile */
        align-items: center;
        gap: 20px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content-wrapper {
        flex-grow: 1;
    }

    .step-num {
        display: none;
        /* Hide big number on mobile for clean look */
    }

    .step-content-wrapper h4 {
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .step-desc {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* KPI Section */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.kpi-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.kpi-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.kpi-item p {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-head {
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.pricing-card.green .pricing-head {
    background: var(--accent-green);
}

.pricing-card.blue .pricing-head {
    background: var(--accent-blue);
}

.pricing-card.purple .pricing-head {
    background: var(--accent-purple);
}

.pricing-head h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-head .price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-head .desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.pricing-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ccc;
}

.pricing-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.pricing-footer .target {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Special Section */
.special-list {
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
}

.special-list li {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.special-list li .chk {
    color: var(--accent-blue);
    margin-right: 15px;
}

/* Results Section Animation */
#results {
    position: relative;
    overflow: hidden;
}

.results-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    /* Subtle */
}

.rising-bar {
    position: absolute;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to top, var(--accent-blue), transparent);
    border-radius: 10px 10px 0 0;
    opacity: 0.5;
    animation: riseUp 3s ease-out infinite alternate;
}

.rising-bar.bar-1 {
    left: 10%;
    height: 20%;
    animation-duration: 4s;
    animation-delay: 0s;
}

.rising-bar.bar-2 {
    left: 30%;
    height: 40%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.rising-bar.bar-3 {
    left: 50%;
    height: 30%;
    animation-duration: 3.5s;
    animation-delay: 0.5s;
}

.rising-bar.bar-4 {
    left: 70%;
    height: 50%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
}

.rising-bar.bar-5 {
    left: 90%;
    height: 25%;
    animation-duration: 3.8s;
    animation-delay: 0.2s;
}

.rising-graph-line {
    position: absolute;
    bottom: 50px;
    left: -10%;
    width: 120%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200' fill='none'%3E%3Cpath d='M0 200 L0 150 Q250 100 500 150 T1000 50 L1000 200 Z' fill='url(%23paint0_linear)' opacity='0.3'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='500' y1='0' x2='500' y2='200' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%233498db'/%3E%3Cstop offset='1' stop-color='%233498db' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    opacity: 0.4;
    animation: flowGraph 10s linear infinite;
}

@keyframes riseUp {
    0% {
        transform: scaleY(0.8);
        opacity: 0.3;
    }

    100% {
        transform: scaleY(1.2);
        opacity: 0.6;
    }
}

@keyframes flowGraph {
    0% {
        transform: translateX(0) scaleY(1);
    }

    50% {
        transform: translateX(20px) scaleY(1.1);
    }

    100% {
        transform: translateX(0) scaleY(1);
    }
}

/* Ensure content stays on top */
#results .container {
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(26, 43, 75, 0.9), rgba(26, 43, 75, 0.9)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
}

/* =========================================
   NEW SECTIONS STYLES
   ========================================= */

/* Utilities for new sections */
.row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.reverse-mobile {
    flex-direction: row-reverse;
}

.items-center {
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
    text-align: center;
}

.relative-z2 {
    position: relative;
    z-index: 2;
}

.text-light {
    color: #cbd5e0;
}

.badge-custom {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-custom.blue {
    background: var(--accent-blue);
}

.badge-custom.purple {
    background: var(--accent-purple);
}

/* 1. Outdoor Section */
.section-outdoor {
    background: #111;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.outdoor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1565514020176-db70408542cd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.2;
    filter: grayscale(100%);
}

.led-sign-anim {
    background: #222;
    border: 4px solid #333;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.neon-text {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    /* Off state */
    text-shadow: none;
    animation: neonNetwork 3s infinite;
}

@keyframes neonNetwork {

    0%,
    30%,
    34%,
    38% {
        color: #333;
        text-shadow: none;
    }

    32%,
    36%,
    40%,
    100% {
        color: #ff0055;
        text-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055, 0 0 40px #ff0055;
    }
}

.glow-border img {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
}

/* 2. Local Connection Section */
.section-local {
    background: white;
}

.connection-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    /* Reduced specific height for graphic container */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conn-node {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    border: 2px solid #eee;
    font-weight: 700;
    font-size: 0.9rem;
}

.conn-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.online-node {
    border-color: var(--accent-blue);
}

.offline-node {
    border-color: var(--primary-color);
}

.conn-line {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #eee;
    z-index: 1;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulseTravel 2s infinite ease-in-out;
    z-index: 3;
}

@keyframes pulseTravel {
    0% {
        left: 50px;
        opacity: 0;
    }

    20% {
        opacity: 1;
        scale: 1.2;
    }

    80% {
        opacity: 1;
        scale: 1.2;
    }

    100% {
        left: 250px;
        opacity: 0;
    }
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #4a5568;
}

/* 3. Media Interior (Switch Animation) */
.section-media-interior {
    background: #000;
    position: relative;
    padding: 160px 0;
    /* Increased height by approx 1.5x */
}

.media-switch-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 50px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Full Screen Video Background */
.media-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-video-fullscreen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darken video for text readability */
    z-index: 1;
}

/* Ensure content sits on top */
.section-media-interior {
    position: relative;
    background: #000;
}

.section-media-interior .container {
    position: relative;
    z-index: 2;
}

.svg-icon {
    width: 32px;
    height: 32px;
    stroke: var(--accent-purple);
    /* Or Use white if desired context */
    stroke-width: 2;
}

/* =========================================
   FACTORY HUB ANIMATION STYLES
   ========================================= */
.factory-hub-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    /* Circular boundary for cleaner debugging if needed */
    /* border: 1px dashed rgba(255,255,255,0.1); */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Core */
.hub-core {
    position: relative;
    width: 140px;
    height: 140px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-magenta);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.5), inset 0 0 20px rgba(255, 0, 85, 0.3);
}

.core-text {
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.2;
    z-index: 2;
    text-shadow: 0 0 5px var(--accent-magenta);
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-magenta);
    opacity: 0;
    animation: corePulse 2s infinite;
}

@keyframes corePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Orbital Nodes */
.hub-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    transition: all 0.3s ease;
}

/* Node Icons */
.factory-hub-container .node-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    z-index: 5;
    position: relative;
    animation: nodeFloat 3s infinite ease-in-out;
}

/* Node Content (Text) */
.factory-hub-container .node-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(5px);
    opacity: 0.6;
    /* Dimmed by default */
    transform: translateY(10px);
    transition: all 0.3s;
}

.hub-node:hover .node-content {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.factory-hub-container .node-content h4 {
    color: var(--accent-cyan);
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.factory-hub-container .node-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.factory-hub-container .node-content li {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
}

/* Hexagon Positioning (Radius ~ 220px) */
/* 
   Angles: 
   1: -90deg (Top)
   2: -30deg (Top Right)
   3: 30deg (Bottom Right)
   4: 90deg (Bottom)
   5: 150deg (Bottom Left)
   6: 210deg (Top Left)
*/

.node-1 {
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

/* Top */
.node-4 {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

/* Bottom */

.node-2 {
    top: 25%;
    right: 0;
}

/* Top Right Approx */
.node-3 {
    bottom: 25%;
    right: 0;
}

/* Bottom Right Approx */
.node-5 {
    bottom: 25%;
    left: 0;
}

/* Bottom Left Approx */
.node-6 {
    top: 25%;
    left: 0;
}

/* Top Left Approx */


/* Connecting Lines (Pseudo-elements) */
.hub-node::before {
    content: '';
    position: absolute;
    top: 30px;
    /* Center of icon */
    left: 50%;
    width: 2px;
    height: 100px;
    /* Adjust based on distance to center */
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    z-index: -1;
    opacity: 0.3;
    transform-origin: top center;
}

/* Adjust lines rotation to point to center */
/* Simplified for now without complex trig, just visual cues */

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Sequential Animation highlight */
.node-icon {
    animation: neonCycle 6s infinite;
}

.node-1 .node-icon {
    animation-delay: 0s;
}

.node-2 .node-icon {
    animation-delay: 1s;
}

.node-3 .node-icon {
    animation-delay: 2s;
}

.node-4 .node-icon {
    animation-delay: 3s;
}

.node-5 .node-icon {
    animation-delay: 4s;
}

.node-6 .node-icon {
    animation-delay: 5s;
}

@keyframes neonCycle {

    0%,
    20% {
        border-color: var(--accent-magenta);
        box-shadow: 0 0 20px var(--accent-magenta);
        transform: scale(1.1);
    }

    25%,
    100% {
        border-color: var(--accent-cyan);
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        transform: scale(1);
    }
}

/* Mobile Responsiveness for Hub */
@media (max-width: 768px) {
    .factory-hub-container {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
    }

    .hub-core {
        grid-column: span 2;
        margin: 0 auto 30px;
    }

    .hub-node {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .hub-node::before {
        display: none;
    }

    /* Hide lines on mobile */

    .node-content {
        opacity: 1;
        transform: none;
    }
}

/* StoreFront Sample Grid */
.storefront-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* =========================================
   ROLLING TICKER STYLES
   ========================================= */
.rolling-banner-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    margin-top: 30px;
    /* Fade edges mask */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.rolling-track {
    display: flex;
    gap: 60px;
    /* Space between logos */
    width: max-content;
    animation: scrollTicker 20s linear infinite;
}

.rolling-track img {
    height: 50px;
    /* Adjust based on logo size */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.rolling-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
        /* Move 1/3 if tripled */
    }
}

/* Pause on hover */
.rolling-banner-container:hover .rolling-track {
    animation-play-state: paused;
}

.sf-item {
    flex: 1;
    /* Equal width */
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.sf-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-magenta);
}

.sf-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item:hover .svg-icon {
    stroke: #fff;
    filter: drop-shadow(0 0 5px var(--accent-purple));
}

.before-state {
    opacity: 1;
    animation: fadeOutState 4s infinite alternate;
}

.after-state {
    opacity: 0;
    animation: fadeInState 4s infinite alternate;
}

@keyframes fadeOutState {

    0%,
    45% {
        opacity: 1;
    }

    55%,
    100% {
        opacity: 0;
    }
}

@keyframes fadeInState {

    0%,
    45% {
        opacity: 0;
    }

    55%,
    100% {
        opacity: 1;
    }
}

.state-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    z-index: 2;
}

.state-label.active {
    background: var(--accent-purple);
}

.media-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ben-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefit-item h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-item p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* 4. Global Ecommerce */
.section-global {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.global-bg-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') center/contain no-repeat;
    opacity: 0.05;
}

.global-platform-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.platform-group {
    flex: 1;
}

.platform-group h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.flag-icons {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.pf-badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.pf-badge.shopee {
    background: #ee4d2d;
}

.pf-badge.tiktok {
    background: #000;
}

.pf-badge.naver {
    background: #03c75a;
}

.pf-badge.coupang {
    background: #e43530;
}

.pf-desc {
    color: #718096;
    font-size: 0.95rem;
}

.platform-divider {
    width: 1px;
    background: #eee;
}

/* Mobile Adjustments for New Sections */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 30px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    /* Image on top for Local section in mobile? usually text top.. let's standard column */

    /* Revert reverse-mobile logic to standard column for mobile to ensure consistency */
    .reverse-mobile {
        flex-direction: column;
    }

    .section-title {
        font-size: 24px;
    }

    .media-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .global-platform-grid {
        flex-direction: column;
        gap: 40px;
    }

    .platform-divider {
        width: 100%;
        height: 1px;
    }

    .media-switch-container {
        height: 250px;
    }

    .col-image img {
        max-width: 100%;
        border-radius: 15px;
    }

    /* Expanded Local Mobile */
    .local-data-grid {
        grid-template-columns: 1fr;
    }

    .stats-circles {
        gap: 15px;
    }

    .stat-circle {
        width: 90px;
        height: 90px;
    }

    .stat-val {
        font-size: 1.1rem;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup-col {
        margin-bottom: 30px;
    }
}

/* =========================================
   EXPANDED LOCAL SECTION STYLES
   ========================================= */

/* 1. Service Data Grid */
.local-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Changed from 1fr 0.8fr to equal sizing */
    gap: 30px;
}

.data-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
}

.data-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.data-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
}

/* Stats Circles */
.stats-circles {
    display: flex;
    justify-content: center;
    /* Changed from space-around */
    align-items: center;
    gap: 40px;
    /* Increased gap for 2 items */
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-circle:hover {
    transform: scale(1.05);
}

.blue-circle {
    background: #3498db;
}

.sky-circle {
    background: #5faee3;
}

.dark-circle {
    background: #2c3e50;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Pie Charts */
.target-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px;
}

.chart-box {
    text-align: center;
}

.pie-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-center {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 2;
    color: #4a5568;
}

/* CSS Pie Charts (Conic Gradients) */
.female-pie {
    background: conic-gradient(#3498db 0% 71%,
            #cbd5e0 71% 100%);
}

.age-pie {
    background: conic-gradient(#2ecc71 0% 95%,
            #cbd5e0 95% 100%);
}

/* 2. Portfolio Ticker */
.portfolio-ticker-section {
    background: #2c3e50;
    padding: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.ticker-title {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: tickerMove 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes tickerMove {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

    /* Move half width since we duplicated content */
}

/* 3. Product Info Grid */
.product-info-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Wider table, narrower phone */
    gap: 40px;
    align-items: center;
}

/* Phone Mockup (CSS) */
.phone-frame {
    width: 230px;
    /* Reduced from 260px */
    height: 460px;
    /* Reduced from 520px */
    background: #1a1a1a;
    border-radius: 30px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 4px solid #444;
}

.phone-screen {
    background: #f1f5f9;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: white;
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.app-top-bar {
    width: 40%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 10px;
}

.app-menu-bar {
    width: 100%;
    height: 30px;
    background: #e2e8f0;
    border-radius: 4px;
}

.app-body {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.app-grid-icon {
    height: 50px;
    /* Reduced from 60px */
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.app-banner-highlight {
    grid-column: span 2;
    height: 70px;
    /* Reduced from 80px */
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    animation: pulseBanner 2s infinite;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

@keyframes pulseBanner {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.banner-tag {
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.app-banner-highlight p {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.app-list-item {
    grid-column: span 2;
    height: 40px;
    background: white;
    border-radius: 8px;
    margin-top: 5px;
}

/* Spec Table */
.dict-specs-col {
    padding-left: 20px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table th {
    text-align: left;
    padding: 15px 0;
    width: 120px;
    color: #718096;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.spec-table td {
    text-align: left;
    padding: 15px 0;
    font-weight: 700;
    color: #2d3748;
    border-bottom: 1px solid #eee;
}

.highlight-val {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: #111;
    color: #666;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .positioning-grid,
    .admin-grid,
    .process-steps,
    .kpi-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .header-container {
        justify-content: flex-start;
        padding-left: 0;
    }

    .logo img {
        height: 180px !important;
        /* 20% larger than 150px */
        width: auto;
    }

    .hero {
        align-items: flex-start !important;
        padding-top: 170px;
        /* Reduced from 240px to move content up */
        /* Space for logo + gap */
    }

    .hero-content {
        margin-top: 0 !important;
        padding-bottom: 0;
        text-align: center;
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }

    /* Spacing Updates */
    .hero-badge {
        margin-bottom: 20px;
        /* Slight reduction */
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        /* Reduced from 30px */
        line-height: 1.3;
    }

    .hero-subtitle {
        margin-bottom: 25px;
        /* Reduced from 35px */
    }

    .hero-text-box {
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        padding: 0;
        margin-bottom: 0;
    }

    .nav {
        display: none;
    }

    /* CTA Positioning */
    .hero-cta {
        flex-direction: column;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 40px;
        /* Reduced from 80px */
    }

    .btn-cta-highlight {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
        padding: 18px 20px;
        font-size: 1.2rem;
        border-radius: 50px;
    }

    .positioning-grid,
    .admin-grid,
    .process-steps,
    .kpi-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

    .nav-list {
        display: none;
    }

    /* 3. Horizontal Scroll Fixes */
    /* Service Data Stats */
    .stats-circles {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
    }

    .stat-circle {
        flex: 0 0 auto;
        /* Prevent shrinking */
        scroll-snap-align: center;
    }

    /* 3. Horizontal Scroll Fixes -> Fit to Screen Fixes */
    /* Service Data Stats */
    .stats-circles {
        flex-wrap: wrap;
        /* Stack/Wrap instead of scroll */
        overflow-x: visible;
        justify-content: center;
        /* Center alignment */
        padding-bottom: 0;
        gap: 15px;
        /* Tighter gap */
    }

    .stat-circle {
        flex: 0 0 auto;
        width: 100px;
        /* Smaller size to fit */
        height: 100px;
    }

    .stat-val {
        font-size: 1.2rem;
        /* Smaller font */
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Target Data (Pie Charts) */
    .target-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pie-chart {
        width: 100px;
        /* Smaller */
        height: 100px;
    }

    .chart-center {
        width: 70px;
        height: 70px;
        font-size: 0.75rem;
    }

    /* Banner Package Table */
    .dict-specs-col {
        padding-left: 0;
        width: 100%;
        display: block;
        overflow-x: hidden;
    }

    /* Stacked Layout for Mobile Readability */
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
    }

    .spec-table {
        border-top: 2px solid #333;
        /* Strong top border */
    }

    /* Row Styling */
    .spec-table tr {
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
        padding: 15px 5px;
        background: #fff;
    }

    /* Label (Header) */
    .spec-table th {
        text-align: left;
        color: #888;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0 0 5px 0;
        border: none;
        width: auto;
        /* Reset width */
    }

    /* Value (Data) */
    .spec-table td {
        text-align: left;
        padding: 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: #111;
        word-break: keep-all;
        line-height: 1.4;
    }

    .spec-table .highlight-val {
        color: #0047FF;
        /* Ensure highlight color pops */
    }
}



/* =========================================
   Mobile Optimization (Strict Rules)
   ========================================= */

@media (max-width: 768px) {

    /* Global Text Rules */
    body {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .word-group {
        display: inline-block;
        white-space: nowrap;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-break: keep-all;
    }

    /* Typography Updates */
    h3,
    .block-title,
    .section-title {
        font-size: 22px !important;
        /* Slightly larger than 18px for main section titles for hierarchy */
        line-height: 1.4;
    }

    h4,
    .card-content h4 {
        font-size: 18px !important;
        font-weight: 700;
        line-height: 1.5;
    }

    p,
    .hero-subtitle,
    .section-subtitle,
    .card-content p {
        font-size: 14px !important;
        line-height: 1.65;
    }

    /* Utilities */
    .mobile-only {
        display: block !important;
    }

    .desktop-visible {
        display: none;
    }

    .desktop-visible.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .mobile-hide {
        display: none !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 26px !important;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .hero-text-box {
        display: none;
        /* Simplify for mobile if needed, or keep */
    }

    /* Sticky CTA */
    .hero-cta.sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid #eee;
        z-index: 2000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
    }

    .btn-full-mobile {
        width: 100%;
        display: block;
        text-align: center;
        padding: 14px 0;
        font-size: 16px;
    }

    /* Positioning Section (Accordion) */
    .positioning-card.main-card {
        padding: 25px;
        text-align: center;
    }

    .mobile-main-text {
        font-size: 18px;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .accordion-toggle {
        font-size: 14px;
        color: var(--primary-color);
        font-weight: 600;
        padding: 10px;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin-top: 10px;
        background: #f8f9fa;
    }

    /* Growth System (Vertical Timeline) */
    .flow-container-v2 {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 20px 0;
    }

    .flow-connection-line {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, #edf2f7 0%, #edf2f7 100%);
    }

    .light-dot {
        display: none;
        /* Hide horizontal animation on mobile */
    }

    .flow-node-v2 {
        width: 100%;
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 0 20px;
        gap: 20px;
    }

    .node-icon-wrapper {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        /* Prevent shrinking */
        margin-bottom: 0;
    }

    .node-content {
        flex-grow: 1;
    }

    /* .node-ring keeps desktop animation */

    /* Growth Engine Cards */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-card {
        flex-direction: column;
        /* Stack image and text */
    }

    .card-content h4 {
        white-space: normal;
        /* Allow wrap but keep-all handles it */
        min-height: auto;
    }

    /* Prevent vertical stacking */
    .card-content {
        padding: 20px;
    }

    /* Platform Trust Bar */
    .trust-logos {
        gap: 20px;
    }

    .trust-logo-item {
        height: 30px !important;
        /* Scale down for mobile row */
        opacity: 0.8;
        filter: grayscale(0%);
        /* Show color on mobile by default or keep grayscale? User said "Reveal color on hover" but mobile has no hover. Let's keep partial opacity */
    }

    /* Section Spacing */
    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .strategy-block {
        margin-bottom: 56px;
    }

    .pricing-card {
        margin-bottom: 25px;
        /* Spacing for cards */
    }
}

/* =========================================
   CONTACT FORM SECTION STYLES
   ========================================= */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    color: #333;
}

.form-title {
    color: #1a1f36;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4f8;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    color: #4a5568;
    font-size: 0.95rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #333;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.contact-info-box {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.text-accent-green {
    color: #2ecc71;
}

.opacity-80 {
    opacity: 0.8;
}

/* Mobile Adjustments for Contact Form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 25px;
        margin-top: 30px;
    }

    .cta-section {
        padding: 60px 0;
        text-align: left !important;
        /* Override previous center alignment */
    }
}

/* =========================================
   TEAM SECTION STYLES
   ========================================= */
.section-team {
    background: #f8f9fa;
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    width: 100%;
    overflow: hidden;
    background: #eef2f7;
    position: relative;
    padding-top: 20px;
    /* Slight padding depending on how nukki looks */
}

.team-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px 20px;
}

.team-role {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    background: rgba(52, 152, 219, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2d3748;
}

.team-career {
    text-align: left;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.6;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
}

.team-career p {
    margin-bottom: 5px;
    position: relative;
    padding-left: 10px;
}

.team-career p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cbd5e0;
}

/* Mobile Responsiveness for Team */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-img-wrapper {
        height: 300px;
    }

    .team-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Ensure nukki is fully visible */
        object-position: bottom;
    }
}

/* =========================================
   GLOBAL MARKETING SECTION STYLES
   ========================================= */
.section-global {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Optional Background Decoration for 'Global' feel */
.section-global::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.badge-global {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.global-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(118, 75, 162, 0.2);
}

.global-card.highlight-global {
    background: linear-gradient(135deg, #fff 0%, #fef9f9 100%);
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.global-icon-box {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.global-card:hover .global-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.global-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2d3748;
}

.global-card p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    word-break: keep-all;
}

.global-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px dashed #cbd5e0;
}

.global-banner p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 700;
    color: #a0aec0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-logos span {
    position: relative;
}

.platform-logos span:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -18px;
    color: #e2e8f0;
}

/* Mobile Responsiveness for Global Section */
@media (max-width: 992px) {
    .global-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .global-grid {
        grid-template-columns: 1fr;
    }

    .section-global {
        padding: 80px 0;
    }
}

/* =========================================
   NEW CTA & BUTTON STYLES
   ========================================= */

/* Highlight Button (Eye-catching) */
.btn-cta-highlight {
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    /* Vibrant Orange-Red */
    border: none;
    box-shadow: 0 5px 15px rgba(221, 36, 118, 0.4);
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-cta-highlight:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(221, 36, 118, 0.6);
}

.btn-cta-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-cta-highlight:hover::after {
    left: 100%;
}

/* Mid-Page CTA Section */
.section-mid-cta {
    background: #1a2b4b;
    /* Dark Navy matches brand */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mid-cta-box {
    position: relative;
    z-index: 2;
}

.cta-title-mid {
    color: white;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

.cta-title-mid strong {
    font-weight: 800;
    font-size: 2.4rem;
    display: block;
    margin-top: 15px;
}

.highlight-yellow {
    color: #f1c40f;
    font-weight: 700;
}

.section-mid-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-mid-cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Pulse Effect for Button */
.pulse-effect {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 36, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(221, 36, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(221, 36, 118, 0);
    }
}

@media (max-width: 768px) {
    .cta-title-mid {
        font-size: 1.5rem;
    }

    .cta-title-mid strong {
        font-size: 1.8rem;
    }

    /* Utility: Mobile Break */
    .mobile-br {
        display: block;
    }
}

/* Desktop default for mobile-br */
@media (min-width: 769px) {
    .mobile-br {
        display: none;
    }
}

/* Mobile Adjustment for Product Info Grid */
@media (max-width: 768px) {
    .product-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   Global Marketing Video Gallery
   ========================================= */
.section-global {
    padding: 100px 0;
    /* Reverted to standard padding */
}

.global-video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-top: 177%;
    /* 9:16 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
}

.gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-video {
    transform: scale(1.05);
}

.badge-global {
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.platform-logos span {
    color: #999;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 15px;
}

/* Mobile Gallery */
@media (max-width: 992px) {
    .global-video-gallery {
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 columns on tablet? or switch to 1? usually 1 on mobile */
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .global-video-gallery {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 30px;
        padding: 0 20px;
    }
}

/* =========================================
   Mobile Comparison Tabs Positioning
   ========================================= */
.comp-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* =========================================
   Team Profile Backgrounds
   ========================================= */
/* =========================================
   Team Profile Backgrounds
   ========================================= */
.team-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* NEW: Increase height and use Flexbox */
    min-height: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push content to bottom */
}

/* Improve text readability on image backgrounds */
.team-info {
    position: relative;
    z-index: 2;
    /* NEW: Gradient transparency adjustment */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%);
    padding: 30px 20px 20px;
    /* More padding on top */
    width: 100%;
    min-height: 340px;
    /* Standardize height for alignment */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Ensure specific elements pop */
.team-card .team-role {
    color: #2ecc71 !important;
    /* Accent Green */
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid rgba(46, 204, 113, 0.5);
    font-size: 0.9rem;
    font-weight: 800;
}

.team-card .team-name {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.team-card .team-career p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* Specific Background Images */
.team-card-ceo {
    background-image: url('이지민 프로필.png');
}

.team-card-cmo {
    background-image: url('배현궁 프로필.png');
}

.team-card-coo {
    background-image: url('조현준 프로필.png');
}

.team-card-cdo {
    background-image: url('이성균 프로필.png');
}

/* Hover Effects */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card:hover .team-info {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 30%, black 100%);
}