/* Spoqa Han Sans Neo Font Faces */
@font-face {
    font-family: 'Spoqa Han Sans Neo';
    src: url('assets/fonts/SpoqaHanSansNeo_TTF_original/SpoqaHanSansNeo-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spoqa Han Sans Neo';
    src: url('assets/fonts/SpoqaHanSansNeo_TTF_original/SpoqaHanSansNeo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spoqa Han Sans Neo';
    src: url('assets/fonts/SpoqaHanSansNeo_TTF_original/SpoqaHanSansNeo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spoqa Han Sans Neo';
    src: url('assets/fonts/SpoqaHanSansNeo_TTF_original/SpoqaHanSansNeo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spoqa Han Sans Neo';
    src: url('assets/fonts/SpoqaHanSansNeo_TTF_original/SpoqaHanSansNeo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spoqa Han Sans Neo', 'sans-serif';
}

:root {
    --orange: #ff6b35;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Spoqa Han Sans Neo', 'sans-serif';
    background: #000000;
    min-height: 100vh;
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Animated Bubbles Background */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.6;
    animation: float 40s infinite ease-in-out;
}

.bubble-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    top: -10%;
    left: -5%;
    animation-duration: 50s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    top: 30%;
    right: -10%;
    animation-duration: 55s;
    animation-delay: -8s;
}

.bubble-3 {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    bottom: -5%;
    left: 20%;
    animation-duration: 60s;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(100px, -80px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(-80px, 100px) scale(0.85) rotate(180deg);
    }
    75% {
        transform: translate(120px, 60px) scale(1.1) rotate(270deg);
    }
}

.glass-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-features-card.glass-card {
    overflow: visible;
}

.main-features-card.glass-card::before,
.main-features-card.glass-card::after {
    display: none;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3),
        transparent,
        rgba(255, 255, 255, 0.1)
    );
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}


/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-pattern {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-pattern svg {
    width: 100%;
    height: 100%;
}

.logo a {
    gap: 0.35rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--orange), var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkle {
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--purple), var(--blue));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--purple);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
    overflow: hidden;
}

.countdown-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    pointer-events: none;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    width: 100%;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1.8rem;
    flex: 0 0 auto;
    min-width: 110px;
    max-width: 130px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.countdown-number {
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.3rem;
    flex-shrink: 0;
}

.countdown-description {
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .countdown-item {
        padding: 1.2rem 1.4rem;
        min-width: 90px;
        max-width: 110px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.2rem;
    }
    
    .countdown-description {
        font-size: 0.9rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 4rem 3rem;
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--purple), var(--blue));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
}

/* Sections */
.section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.cards-grid > * {
    display: flex;
    min-height: 0;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 2.5rem;
    text-align: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 0;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--orange), var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Pricing */
.pricing-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pricing-slider {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.2rem;
    gap: 0;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-slider input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-option {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
    border-radius: 50px;
    user-select: none;
}

.slider-indicator {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    height: calc(100% - 0.4rem);
    width: calc(50% - 0.2rem);
    background: linear-gradient(135deg, var(--orange), var(--purple), var(--blue));
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.pricing-slider input[type="radio"]:checked + .slider-option {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.pricing-slider input[type="radio"]#monthly:checked ~ .slider-indicator {
    transform: translateX(0);
}

.pricing-slider input[type="radio"]#yearly:checked ~ .slider-indicator {
    transform: translateX(100%);
}

.dashboard-range-container {
    margin-top: 0.5rem;
}

.dashboard-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.dashboard-range-slider {
    position: relative;
    margin-top: 0.25rem;
    height: 24px;
}

.dashboard-range-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    border-radius: 999px;
    background: rgba(55, 65, 81, 0.95); /* gray-700 */
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.dashboard-range-selection {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    border-radius: 999px;
    background: rgba(156, 163, 175, 0.9); /* inner bar */
}

.dashboard-range-slider input[type="range"] {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
}

.dashboard-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(209, 213, 219, 0.95);
    border: 1px solid #4b5563;
    cursor: pointer;
    pointer-events: auto;
    margin-top: -6px;
}

.dashboard-range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.dashboard-range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #4b5563;
    background: rgba(209, 213, 219, 0.95);
    cursor: pointer;
}

.dashboard-range-slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
}

.dashboard-range-slider input[type="range"]::-ms-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(209, 213, 219, 0.95);
    border: 1px solid #4b5563;
    cursor: pointer;
}

.dashboard-range-slider input[type="range"]::-ms-track {
    height: 6px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.main-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.main-features-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.main-features-card p {
    text-align: left;
    margin-top: 1rem;
}

.main-features-card .btn {
    margin-top: auto;
}

.main-features-card.featured {
    border: 2px solid var(--purple);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--purple));
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    box-sizing: border-box;
}

.main-features-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
    border: none;
    border-top: none;
    border-bottom: none;
}

.currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--orange), var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.main-features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    border: none;
    border-top: none;
}

.main-features-list li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.main-features-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    border-radius: 4px;
}

.main-features-item:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 1rem;
    transform: translateX(5px);
}

.main-features-item:active {
    transform: translateX(3px);
}

.pricing-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 2rem;
    font-style: italic;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 2rem;
    align-items: stretch;
}

.company-info-card {
    grid-column: span 1;
}

.social-links-card-wide {
    grid-column: span 1;
}

.anyerp-download-card-wide {
    grid-column: span 2;
}

.anyerp-download-card-full {
    grid-column: span 3;
}

.resources-grid > * {
    display: flex;
    min-height: 0;
}

.resource-card {
    padding: 2.5rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.resource-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex: 1;
}

.anyerp-download-card {
    display: flex;
    flex-direction: column;
}

.anyerp-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.anyerp-download-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.anyerp-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1.5rem 0;
    transition: all 0.25s ease;
}

.anyerp-column + .anyerp-column {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.anyerp-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.anyerp-icon-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
}

.anyerp-column.anyerp-basic .anyerp-icon {
    background: linear-gradient(135deg, #ff6b35, #8b5cf6);
}

.anyerp-column.anyerp-pro .anyerp-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.anyerp-column.anyerp-support .anyerp-icon {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.anyerp-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.anyerp-column:hover .anyerp-icon {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

.anyerp-column:hover .anyerp-label {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .anyerp-download-grid {
        grid-template-columns: 1fr;
    }

    .anyerp-download-grid-3 {
        grid-template-columns: 1fr;
    }

    .anyerp-column + .anyerp-column {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }
}

.social-links-card {
    display: flex;
    flex-direction: column;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.social-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1.5rem 0;
    transition: all 0.25s ease;
}

.social-column + .social-column {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
}

.social-icon-n {
    font-size: 1.6rem;
    font-weight: 800;
    color: #03c75a; /* Naver green */
}

.social-column.social-facebook .social-icon {
    background: rgba(24, 119, 242, 0.15);
}

.social-column.social-facebook .social-icon i {
    font-size: 1.6rem;
    color: #1877f2;
}

.social-column.social-company .social-icon {
    background: rgba(255, 255, 255, 0.06);
}

.social-column.social-company .social-icon svg {
    width: 24px;
    height: 24px;
}

.social-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.social-column:hover .social-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-column:hover .social-label {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-grid-3 {
        grid-template-columns: 1fr;
    }

    .social-column + .social-column {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }
}

.resource-link {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.resource-link:hover {
    transform: translateX(5px);
    color: var(--blue);
}

.company-info-card {
    display: flex;
    flex-direction: column;
}

.company-info-card h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.company-info-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 1rem;
    padding: 1.5rem 0;
}

.company-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.75rem;
}

.company-info-icon svg {
    width: 32px;
    height: 32px;
}

.company-info-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.company-info-link:hover .company-info-icon {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

.company-info-link:hover .company-info-label {
    color: rgba(255, 255, 255, 1);
}

.footer {
    position: relative;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    box-shadow: 
        0 -4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo .logo-pattern {
    width: 28px;
    height: 28px;
}

.footer-logo .logo-pattern svg {
    display: none;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .bubble-1 {
        width: 400px;
        height: 400px;
        top: -5%;
        left: -8%;
    }

    .bubble-2 {
        width: 450px;
        height: 450px;
        top: 35%;
        right: -12%;
    }

    .bubble-3 {
        width: 380px;
        height: 380px;
        bottom: -3%;
        left: 15%;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .main-features-card.featured {
        transform: scale(1);
    }

    .cards-grid,
    .main-features-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .company-info-card,
    .social-links-card-wide,
    .anyerp-download-card-wide,
    .anyerp-download-card-full {
        grid-column: span 1;
    }

    .main-features-grid {
        grid-template-columns: 1fr;
        place-items: center;
    }

    .main-features-card {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .main-features-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-features-card {
        max-width: 400px;
        width: 100%;
    }

    .footer {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .footer-content {
        padding: 0 1rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .footer {
        padding: 1.5rem 0.75rem;
    }

    .footer-content {
        padding: 0 0.75rem;
    }

    .main-features-card {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .statistics-row-1 {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .statistics-row-1 .statistics-card:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        margin: 1.5rem auto 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .statistics-row-1,
    .statistics-row-2 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .statistics-card {
        padding: 1.5rem !important;
        width: 100% !important;
    }
    
    .statistics-number {
        font-size: 2.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .statistics-label {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .statistics-card {
        padding: 1.25rem !important;
    }
    
    .statistics-number {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .statistics-label {
        font-size: 0.9rem !important;
    }
}
