@charset "utf-8";

/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    --primary-color: #00D18B;
    --primary-dark: #00B87A;
    --text-color: #191F28;
    --text-light: #4E5968;
    --bg-light: #F9F9FB;
    --white: #ffffff;
    --header-height: 70px;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    word-break: keep-all;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =========================================
   2. Global Typography & Utilities
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    /* Pill shape */
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 209, 139, 0.2);
}

.btn-outline {
    background: white;
    border: 1px solid #e5e8eb;
    color: var(--text-color);
}

.btn-outline:hover {
    background: #f4f6f8;
    border-color: #d1d6db;
}

/* Store Badge Hover Effect */
.store-badge {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-3px) scale(1.02);
    opacity: 0.9;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* =========================================
   3. Animations
   ========================================= */

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Lift */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Pulse Animation (for Pro Plan) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 209, 139, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 209, 139, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 209, 139, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Float Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Marquee Animation (Partners) */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}