/* ===== CSS Variables ===== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0f;
    --bg-card: #0d0d14;
    --bg-card-hover: #12121c;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    --accent-primary: #FF6B35;
    --accent-primary-light: #ff9d7a;
    --accent-teal: #14b8a6;
    --accent-teal-light: #2dd4bf;

    --gradient-primary: linear-gradient(135deg, #FF6B35, #FF8F6B);
    /* Subtle orange gradient */
    --gradient-primary-soft: rgba(255, 107, 53, 0.1);
    --gradient-orange: linear-gradient(135deg, #FF6B35, #ff8c61);
    --gradient-teal: linear-gradient(135deg, #0d9488, #14b8a6);

    --glow-primary: 0 0 40px rgba(255, 107, 53, 0.4);
    --glow-teal: 0 0 60px rgba(20, 184, 166, 0.3);

    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(255, 107, 53, 0.5);

    --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-width: 1200px;
    --section-padding: 120px;
    --border-radius: 16px;
    --border-radius-sm: 8px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Proximity: 강제하지 않고 가까울 때만 부드럽게 붙음 (자연스러운 스크롤) */
    /* Scroll Snap 제거: 기본 스크롤 동작으로 복귀 */
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}



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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-normal);
}

.btn-glow:hover::before {
    opacity: 0.6;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: #FF3300;
    /* Logo Color Match */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(255, 51, 0, 0.2);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.navbar.scrolled .logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-menu a {
    color: #ffffff;
    font-weight: 600;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, #FF6B35, #FF8F5A);
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.navbar.scrolled .nav-cta {
    background: #ffffff;
    color: #FF3300 !important;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.navbar.scrolled .nav-cta:hover {
    background: rgba(255, 107, 53, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 50%, #dce6f0 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./images/hero-bg.png') center/cover no-repeat;
    opacity: 1;
    filter: none;
    z-index: 1;
}

.hero-bg::after {
    display: none;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255, 200, 150, 0.2) 0%, rgba(255, 180, 120, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    animation: glow-float 8s ease-in-out infinite;
}

@keyframes glow-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 20px) scale(1.1);
    }
}

/* Hero Decorative 3D Elements */
.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.deco-ring {
    top: 10%;
    left: 5%;
    width: 200px;
    height: auto;
    opacity: 0.8;
    animation: float-ring 6s ease-in-out infinite;
}

.deco-sphere {
    bottom: 15%;
    left: 8%;
    width: 100px;
    height: auto;
    opacity: 0.7;
    animation: float-sphere 8s ease-in-out infinite;
}

@keyframes float-ring {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-sphere {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Entrance Animations */
.hero-title {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.case-cards {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(28px, 4.7vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, #FF9F4A 0%, #FF6B35 50%, #E63500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
    display: inline-block;
    padding-bottom: 4px;
    /* 그림자 잘림 방지 */
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: #555555;
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 400;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #c8e66e, #a8d848);
    border: none;
    color: #1a1a1a;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(168, 216, 72, 0.3);
}

.btn-hero:hover {
    background: linear-gradient(135deg, #d4ef7a, #b8e858);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(168, 216, 72, 0.4);
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    top: 50%;
    right: calc(25% - 50px);
    transform: translateY(-50%);
    animation: bounce-vertical 2s infinite;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce-vertical {

    0%,
    100% {
        transform: translateY(50%);
    }

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

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

/* Case Study Cards */
.case-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.case-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.45) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 24px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Frosted Texture Overlay */
.case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.case-card * {
    position: relative;
    z-index: 1;
}

.case-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes cardGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.2);
    }
}

.case-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.case-label {
    font-size: 18px;
    font-weight: 700;
    color: #FF6B35;
}

.case-desc {
    font-size: 15px;
    color: #666666;
}

.case-comparison {
    display: flex;
    align-items: center;
    gap: 24px;
}

.case-before,
.case-after {
    flex: 1;
}

.case-before {
    text-align: left;
}

.case-after {
    text-align: left;
}

.case-period {
    font-size: 15px;
    color: #000000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.case-metric {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    min-width: 60px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.metric-value.highlight {
    background: linear-gradient(135deg, #FF5E00 0%, #D93600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 80, 0, 0.25));
    font-weight: 800;
    display: inline-block;
    /* transform 등을 위해 */
}

.case-arrow {
    flex-shrink: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrow-pulse 0.7s ease-in-out infinite;
}

.arrow-body {
    width: 25px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.9));
    border-radius: 2px;
    margin-right: -1px;
}

.arrow-head {
    font-size: 16px;
    color: #FF6B35;
}

@keyframes arrow-pulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

/* Case Cards Responsive */
@media (max-width: 768px) {
    .case-card {
        padding: 20px 24px;
    }

    .case-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .case-arrow {
        transform: rotate(90deg);
        width: 100%;
        padding: 10px 0;
    }

    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .metric-value {
        font-size: 24px;
    }
}

/* ===== Stats Section ===== */
/* ===== Stats Section ===== */
/* ===== Stats Section (Deep Dark Minimalist) ===== */
/* Ambient Glow Removed per user request - FORCED */
.stats::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.stats {
    padding: 120px 0;
    /* 배경 이미지 적용 (Gemini_Generated_Image_wkl9dpwkl9dpwkl9.png) */
    background: url('images/Gemini_Generated_Image_wkl9dpwkl9dpwkl9.png') no-repeat center center / cover;
    background-color: #050510;
    /* 이미지 로드 전 폴백 */
    position: relative;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.stats::after {
    display: none;
}

@keyframes ambient-pulse {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.stats .section-title {
    font-size: clamp(28px, 4.7vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    /* Sharp contrast */
}

.stats .section-desc {
    color: rgba(255, 255, 255, 0.6) !important;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* Tighter gap for clean layout */
    max-width: 900px;
    margin: 0 auto;
}

/* Minimalist Stat Card */
.stat-card {
    position: relative;
    text-align: left;
    padding: 36px 32px;
    /* 배경 불투명도 조절: Glassmorphism (Less transparent) */
    background: rgba(13, 18, 50, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* 은은한 블루 테두리 */
    border-radius: 20px;
    backdrop-filter: blur(12px);
    overflow: hidden;

    /* Animation Initial State */
    opacity: 0;
    transition: all 0.4s ease-out;
}

/* Left Column Cards */
.stat-card:nth-child(odd) {
    transform: translateX(-30px);
}

/* Right Column Cards */
.stat-card:nth-child(even) {
    transform: translateX(30px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-card:hover {
    background: rgba(20, 30, 80, 0.95);
    /* 호버 시 더 진하게 */
    border-color: rgba(60, 130, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 50, 255, 0.15);
}

.stat-icon-wrapper {
    height: 72px;
    width: 72px;
    margin-bottom: 20px;
    /* 간격 살짝 줄임 */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.stat-icon-img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: none;
}

/* New Sub Title (예: YEOLJEUNG PLANNING 01) */
.stat-sub-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: 'Noto Sans KR', sans-serif;
    /* 깔끔한 고딕 */
}

.stat-value {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    line-height: 1;
    text-shadow: none;
}

.stat-unit {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-left: 4px;
    vertical-align: middle;
}

.stat-label {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    /* 가독성을 위해 밝기 상향 */
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--glow-primary);
}

.service-card.featured {
    border-color: var(--accent-primary);
    background: #ffffff;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.service-icon {
    margin-bottom: 24px;
}

/* ===== Services Section (Bright Theme) ===== */
.services {
    padding: var(--section-padding) 0;
    /* User requested Bright Background */
    background: #f8f9fa;
    position: relative;
    z-index: 10;
}

.services .section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.services .section-desc {
    color: #555555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: #ffffff;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Service icon removed replaced by img */

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111111;
}

.service-desc {
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #555555;
    margin-bottom: 8px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    color: #d94e1e;
    text-decoration: underline;
}

/* ===== Results Section ===== */
.results {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.result-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.result-client {
    font-weight: 700;
}

.result-period {
    font-size: 13px;
    color: var(--text-muted);
}

.growth-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.growth-label {
    font-size: 13px;
    color: var(--text-muted);
}

.growth-change {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.before {
    color: var(--text-muted);
}

.arrow {
    color: var(--accent-teal);
}

.after {
    color: var(--accent-teal);
    font-weight: 700;
}

.growth-percent {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
}

.results .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ===== Reviews Section ===== */
/* ===== Reviews Section (Bright Theme) ===== */
.reviews {
    padding: var(--section-padding) 0;
    background: #f8f9fa;
    /* Bright Background */
    overflow: hidden;
}

.reviews .section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.reviews .section-desc {
    color: #555555;
}

.reviews-slider {
    position: relative;
    margin-bottom: 32px;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    padding: 36px;
    background: #ffffff;
    /* Apple-style subtle border */
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    /* Soft, diffused shadow */
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #333;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 80px;
    line-height: 1;
    font-family: serif;
    color: rgba(255, 107, 53, 0.1);
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    /* Elevated shadow on hover */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.review-content {
    margin-bottom: 24px;
}

.review-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    color: #fff;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #111111;
}

.author-company {
    font-size: 13px;
    color: #888888;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #111111;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.slider-dots .dot.active {
    width: 24px;
    background: var(--accent-primary);
    border-radius: 4px;
}

/* ===== Pricing Section ===== */
/* ===== Pricing Section ===== */
.pricing {
    padding: var(--section-padding) 0;
    background: #ffffff;
    /* User confirmed white background */
}

/* Force dark text for visibility on white background */
.pricing .section-title,
.pricing .section-desc,
.pricing .pricing-name,
.pricing .pricing-desc,
.pricing .price-unit,
.pricing .pricing-features li {
    color: #111111;
}

.pricing .section-desc {
    color: #555555;
}

.pricing .pricing-features li {
    color: #444444;
}

/* Fix invisible price amount on white background */
.pricing .price-amount {
    color: #111111;
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    /* User requested Shadow: Adding depth */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05), 4px 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 900;
    letter-spacing: -2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    position: relative;
    padding: 40px;
    background: #f8f9fa;
    /* Light card background */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    /* Inside top-right corner */
    right: 24px;
    left: auto;
    transform: none;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    line-height: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing .section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Removed inline-block to fix layout issue */
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
}

.pricing-card .btn {
    width: 100%;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15), transparent 70%);
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Fixed CTA Button ===== */
.fixed-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
}

.fixed-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.fixed-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 24px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Form ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .results-showcase,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        transition: right var(--transition-normal);
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .stats-grid,
    .services-grid,
    .results-showcase,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .footer-details {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fixed-cta span {
        display: none;
    }

    .fixed-cta {
        padding: 16px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .stat-value {
        font-size: 36px;
    }

    .modal-content {
        padding: 24px;
    }
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%) !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: #ffffff;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .price-amount,
.pricing-card.featured .price-unit,
.pricing-card.featured .pricing-features li {
    color: #111111 !important;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--accent-primary) !important;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 107, 53, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured .pricing-badge {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.pricing-header {
    margin-bottom: 16px;
    text-align: center;
}

.pricing-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: #666666;
}

.pricing-price {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.price-unit {
    font-size: 15px;
    color: #888888;
    font-weight: 500;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card.featured .pricing-features {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: #555555;
    margin-bottom: 14px;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
    font-size: 14px;
}

.pricing-card .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card .btn-outline {
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
    color: #ffffff;
    border: none;
}

.pricing-card .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.pricing-card.featured .btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
}

.pricing-card.featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        order: -1;
    }
}