/* ==========================================================================
   SINO BRIDGE - OFFICIAL STYLESHEET
   Aesthetics: Luxury Premium, Dual-Theme (Dark Home, Light Subs), Glassmorphism, Pretendard & Playfair Display Typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Global Custom Properties & Color System
   -------------------------------------------------------------------------- */
:root {
    /* Brand Color Tokens */
    --color-primary: #7A1518;        /* Crimson Red */
    --color-primary-light: #9A2528;  /* Bright Accent Red */
    --color-accent-gold: #C9A96E;    /* Elegant Premium Gold */
    --color-gold-hover: #D4BC8A;     /* Bright Gold for Hover */
    
    /* Dark Theme Palette (Main Page) - Pure Dark Apple Style */
    --color-dark-bg: #000000;        /* Pure Dark Black */
    --color-dark-sec: #121212;       /* Sleek Charcoal Card Background */
    --color-dark-border: #1F1F1F;    /* Border color for dark theme */
    --color-text-light: #FFFFFF;     /* Pure White Text */
    --color-text-muted-light: #86868b; /* Apple Muted Gray */
    
    /* Light Theme Palette (Subpages) */
    --color-cream-bg: #FAF7F2;       /* Soft Premium Cream */
    --color-white: #FFFFFF;
    --color-light-border: #E5DDD0;   /* Warm Gray Border */
    --color-text-dark: #111111;      /* Deep Black Text */
    --color-text-gray: #68686e;      /* Subtitle Gray */
    --color-text-muted-dark: #86868b; /* Inactive/Muted Gray */

    /* Global UI Configs */
    --font-primary: 'Outfit', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', sans-serif;
    --font-serif: 'DM Serif Display', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.65);
    --shadow-gold: 0 0 20px rgba(201, 169, 110, 0.25);
}

/* --------------------------------------------------------------------------
   02. Base & Reset Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-gold);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-hover);
}

/* Helper Utilities */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

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

.highlight-gold {
    color: var(--color-accent-gold);
}

/* --------------------------------------------------------------------------
   03. Typography & Section Headers
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

/* Common Section Header Styling */
.section-tag {
    display: inline-block;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    word-break: keep-all;
}

/* Light theme colors for sub-headers */
.light-page .section-title {
    color: var(--color-text-dark);
}

.header-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-gold);
    margin: 0 auto 24px;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted-light);
    max-width: 680px;
    margin: 0 auto;
    word-break: keep-all;
}

.light-page .section-subtitle {
    color: var(--color-text-gray);
}

/* --------------------------------------------------------------------------
   04. Navigation Header (Sticky, Glassmorphism)
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-dark-border);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

/* In light pages, scroll header has cream glassmorphism */
.light-mode-active .main-header.scrolled {
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-light-border);
}

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

.main-header.scrolled .header-container {
    padding: 12px 24px;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.logo-sino {
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.logo-bridge {
    color: var(--color-accent-gold);
}

/* Logo Text adapts to Light Subpages */
.light-mode-active .logo-sino {
    color: var(--color-text-dark);
}

.light-mode-active .main-header.scrolled .logo-sino {
    color: var(--color-text-dark);
}

/* Desktop Nav Menu */
.desktop-nav {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted-light);
    padding: 8px 0;
    position: relative;
}

.light-mode-active .nav-link {
    color: var(--color-text-gray);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

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

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

.nav-link.active {
    color: var(--color-accent-gold);
    font-weight: 600;
}

/* Cta Button in Header */
.cta-nav {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background-color: var(--color-primary-light);
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.3);
}

/* Navigation Arrow for Dropdowns */
.nav-arrow {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 2px;
    transition: var(--transition-fast);
}

/* Dropdown Menu System */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    min-width: 160px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

/* Dropdown in light page scrolled */
.light-mode-active .dropdown-menu {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    text-align: center;
}

.light-mode-active .dropdown-menu a {
    color: var(--color-text-gray);
}

.dropdown-menu a:hover {
    background-color: rgba(184, 148, 60, 0.1);
    color: var(--color-accent-gold);
}

/* Mobile Menu Hamburger button */
.mobile-menu-toggle {
    display: none;
    color: var(--color-text-light);
    font-size: 1.75rem;
    padding: 4px;
}

.light-mode-active .mobile-menu-toggle {
    color: var(--color-text-dark);
}

/* --------------------------------------------------------------------------
   05. Mobile Navigation Drawer & Sidebar Overlay
   -------------------------------------------------------------------------- */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--color-dark-bg);
    border-left: 1px solid var(--color-dark-border);
    box-shadow: var(--shadow-lg);
    z-index: 1020;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close {
    color: var(--color-text-light);
    font-size: 1.5rem;
}

.mobile-nav {
    flex-grow: 1;
}

.mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-muted-light);
    padding: 10px 0;
}

.mobile-link.active {
    color: var(--color-accent-gold);
    font-weight: 700;
}

/* Mobile Collapsible Submenu */
.mobile-collapsible-trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-muted-light);
    padding: 10px 0;
    text-align: left;
}

.collapsible-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.mobile-collapsible-trigger.active .collapsible-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding-left: 16px;
    border-left: 1px solid var(--color-dark-border);
    display: none;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.mobile-submenu.open {
    display: flex;
}

.mobile-cta {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-top: 10px;
}

.drawer-footer {
    border-top: 1px solid var(--color-dark-border);
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
}

.drawer-tel {
    margin-top: 4px;
    font-weight: 600;
    color: var(--color-accent-gold);
}

/* --------------------------------------------------------------------------
   06. SPA Route Transition Base
   -------------------------------------------------------------------------- */
.spa-page {
    display: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spa-page.active-page {
    display: block;
    opacity: 1;
}

/* Premium Light Theme pages default reset override */
.light-page {
    background-color: var(--color-cream-bg);
    color: var(--color-text-dark);
}

/* --------------------------------------------------------------------------
   07. [HOME] Hero Section (Parallax visual focus)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('gwangan_bridge_night.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.85) 40%, 
        rgba(139, 26, 26, 0.15) 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(184, 148, 60, 0.15);
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 24px;
    word-break: keep-all;
}

.hero-title .highlight-gold {
    position: relative;
}

.hero-title .highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(184, 148, 60, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted-light);
    margin-bottom: 40px;
    word-break: keep-all;
}

.hero-subtitle span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    box-shadow: 0 8px 24px rgba(139, 26, 26, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-text-light);
    color: var(--color-text-light);
}

.btn-outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-dark-bg);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-accent-gold);
    color: var(--color-dark-bg);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Scroll Down Mouse Anim */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted-light);
    font-size: 0.8rem;
    pointer-events: none;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted-light);
    border-radius: var(--radius-full);
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-accent-gold);
    border-radius: var(--radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.5s infinite;
}

.arrow-down {
    animation: arrow-bounce-anim 1.5s infinite;
}

@keyframes scroll-wheel-anim {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
    100% { top: 8px; opacity: 1; }
}

@keyframes arrow-bounce-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* --------------------------------------------------------------------------
   08. [HOME] Stats Section (Count-up)
   -------------------------------------------------------------------------- */
.stats-section {
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
    border-bottom: 1px solid var(--color-dark-border);
}

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

.stats-grid .stat-card:nth-child(1) {
    grid-column: span 2;
}
.stats-grid .stat-card:nth-child(2) {
    grid-column: span 1;
}
.stats-grid .stat-card:nth-child(3) {
    grid-column: span 1;
}
.stats-grid .stat-card:nth-child(4) {
    grid-column: span 2;
}

.stat-card {
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.35);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number-wrapper {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-prefix {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-muted-light);
    margin-right: 6px;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 2px;
}

.stat-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
}

/* --------------------------------------------------------------------------
   09. [HOME] Services Section
   -------------------------------------------------------------------------- */
.services-summary-section {
    background-color: #0d0d0d; /* Extra deep dark */
}

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-summary-card {
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-summary-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 26, 26, 0.1);
    border: 1px solid rgba(139, 26, 26, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.service-icon-box i {
    width: 28px;
    height: 28px;
}

.service-summary-card:hover .service-icon-box {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.step-num {
    position: absolute;
    top: -12px;
    right: -12px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    background-color: var(--color-dark-bg);
    border: 1px solid var(--color-dark-border);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    line-height: 1.7;
    word-break: keep-all;
}

/* --------------------------------------------------------------------------
   10. [HOME] Compound Loop Section (Viral Cycle)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   10. [HOME] Compound Loop Section (Apple Sticky Scroll & Phone Mockup)
   -------------------------------------------------------------------------- */
.loop-section {
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
    position: relative;
    padding-bottom: 0;
}

.section-container.header-only {
    padding-bottom: 20px;
}

.apple-scroll-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 400vh; /* Scroll height */
}

.apple-scroll-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    overflow: hidden;
}

/* Left side: scrolling text columns */
.scroll-text-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
    z-index: 5;
    padding-left: 20px;
}

.scroll-text-block {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateY(40px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.6s;
    width: 100%;
    pointer-events: none;
}

.scroll-text-block.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateY(0);
    pointer-events: auto;
}

.scroll-text-block .step-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.scroll-text-block h3 {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.scroll-text-block .desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted-light);
    word-break: keep-all;
}

/* Right side: sticky phone column */
.scroll-phone-col {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 4;
}

.phone-mockup-wrapper {
    position: relative;
    width: 300px;
    height: 600px;
    perspective: 1000px;
}

.phone-device {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    border: 11px solid #1c1c1e;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 0 12px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #1c1c1e;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 10;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #09090a;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.screen-content.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* Mockup Apps General Styles */
.mock-app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: var(--font-primary);
}

.mock-app .app-header {
    height: 54px;
    padding: 22px 16px 8px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
}

.mock-app .app-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* App 1: Xiaohongshu (Rednote) */
.rednote-app .search-bar {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.7rem;
    color: #8e8e93;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rednote-app .search-bar i {
    width: 12px;
    height: 12px;
}

.rednote-app .post-card {
    background: #1c1c1e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rednote-app .post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rednote-app .post-info {
    padding: 12px;
}

.rednote-app .post-info .badge {
    background: rgba(255, 36, 66, 0.15);
    color: #ff2442;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.rednote-app .post-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 6px;
}

.rednote-app .post-info .likes {
    font-size: 0.65rem;
    color: #8e8e93;
}

/* App 2: Menu App */
.menu-app .brand-title {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

.menu-app .menu-mock {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.menu-app .menu-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    padding-bottom: 6px;
    letter-spacing: 1px;
}

.menu-app .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.menu-app .menu-item h5 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
}

.menu-app .menu-item p {
    font-size: 0.6rem;
    color: #8e8e93;
    margin-top: 1px;
}

.menu-app .menu-item .price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-gold);
}

/* App 3: Pay App */
.pay-app .pay-title {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8e8e93;
    letter-spacing: 1px;
}

.pay-app .pay-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 20px;
}

.pay-app .pay-logo-group {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.pay-app .pay-logo {
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.pay-app .alipay-text {
    color: #00a3ee;
    border: 1px solid rgba(0, 163, 238, 0.3);
    background: rgba(0, 163, 238, 0.05);
}

.pay-app .wechat-text {
    color: #09bb07;
    border: 1px solid rgba(9, 187, 7, 0.3);
    background: rgba(9, 187, 7, 0.05);
}

.pay-app .qr-code-box {
    position: relative;
    width: 130px;
    height: 130px;
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.pay-app .qr-code-box i {
    width: 100% !important;
    height: 100% !important;
    color: #000000;
}

.pay-app .qr-scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00a3ee;
    box-shadow: 0 0 8px #00a3ee;
    animation: qr-scan-anim 2.5s linear infinite;
}

@keyframes qr-scan-anim {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

.pay-app .pay-desc {
    font-size: 0.65rem;
    color: #8e8e93;
    line-height: 1.4;
    text-align: center;
    margin-top: 24px;
}

/* App 4: Trigger App */
.trigger-app .trigger-title {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8e8e93;
}

.trigger-app .welcome-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trigger-app .pop-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--color-accent-gold);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.trigger-app .pop-header i {
    width: 10px;
    height: 10px;
}

.trigger-app img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trigger-app .trigger-card {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.trigger-app .trigger-card h5 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 4px;
}

.trigger-app .trigger-card p {
    font-size: 0.6rem;
    color: #d1d1d6;
    line-height: 1.35;
}

/* App 5: Upload App */
.upload-app .upload-title {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8e8e93;
}

.upload-app .upload-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-app .upload-pic {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
}

.upload-app .upload-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-app .verified-tag {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #34c759;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.upload-app .verified-tag i {
    width: 8px;
    height: 8px;
}

.upload-app .upload-text h6 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.upload-app .upload-text p {
    font-size: 0.65rem;
    color: #d1d1d6;
    line-height: 1.3;
}

.upload-app .upload-text .tags {
    color: #ff2442;
    margin-top: 4px;
    font-weight: 600;
}

.upload-app .btn-publish {
    background: #ff2442;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 8px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(255, 36, 66, 0.3);
}

.upload-app .btn-publish i {
    width: 10px;
    height: 10px;
}

/* App 6: Algorithm App */
.algorithm-app .alg-title {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8e8e93;
}

.algorithm-app .viral-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.algorithm-app .stat-bubble {
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.algorithm-app .stat-bubble i {
    color: #30d158;
    width: 20px;
    height: 20px;
}

.algorithm-app .stat-bubble h5 {
    font-size: 0.65rem;
    color: #8e8e93;
    font-weight: 500;
}

.algorithm-app .stat-bubble span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #30d158;
}

.algorithm-app .user-nodes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.algorithm-app .user-node {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.algorithm-app .user-node.parent {
    width: 36px;
    height: 36px;
    background: var(--color-accent-gold);
    color: #000000;
}

.algorithm-app .user-node.parent i {
    width: 16px;
    height: 16px;
}

.algorithm-app .arrow-down {
    color: #48484a;
    margin: 4px 0;
    animation: bounce-arrow 1.5s infinite ease-in-out;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.algorithm-app .arrow-down i {
    width: 12px;
    height: 12px;
}

.algorithm-app .children {
    display: flex;
    gap: 12px;
}

.algorithm-app .user-node.child {
    width: 28px;
    height: 28px;
    background: #1c1c1e;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: #8e8e93;
}

.algorithm-app .user-node.child i {
    width: 12px;
    height: 12px;
}

/* Mobile inline screen - hidden on desktop */
.mobile-inline-screen {
    display: none;
}


/* --------------------------------------------------------------------------
   11. [HOME] Packages & Pricing Section (Gold highlight, glow)
   -------------------------------------------------------------------------- */
.pricing-section {
    background-color: #0d0d0d;
    border-top: 1px solid var(--color-dark-border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 40px;
}

/* Bento pricing grid container styling */
.pricing-grid.bento-pricing {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
}

.price-card {
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: scale(1.015);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.25);
}

.bento-cell-basic {
    grid-column: span 1;
}

.bento-cell-recommended {
    grid-column: span 2;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
}

.price-recommended-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-recommended-right {
    flex: 0.9;
    border-left: 1px solid var(--color-dark-border);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-benefit-card {
    grid-column: span 1;
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.bento-benefit-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.1);
}

.bento-benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.bento-benefit-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-muted-light);
    word-break: keep-all;
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-wrapper i {
    width: 22px;
    height: 22px;
}

.benefit-icon-wrapper.gold-tint {
    background: rgba(201, 169, 110, 0.1);
    color: var(--color-accent-gold);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.benefit-icon-wrapper.green-tint {
    background: rgba(48, 209, 88, 0.1);
    color: #30d158;
    border: 1px solid rgba(48, 209, 88, 0.2);
}

.benefit-icon-wrapper.red-tint {
    background: rgba(250, 36, 66, 0.1);
    color: #ff2442;
    border: 1px solid rgba(250, 36, 66, 0.2);
}

/* Standard Recommended Card Styling */
.price-card.recommended {
    border: 2.5px solid var(--color-accent-gold);
    box-shadow: var(--shadow-gold);
}

.price-card.recommended:hover {
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.3);
}

.rec-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent-gold);
    color: var(--color-dark-bg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.price-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-dark-border);
    padding-bottom: 30px;
}

.bento-cell-recommended .price-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
    margin-bottom: 24px;
    word-break: keep-all;
}

.price-amount-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount-block .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent-gold);
}

.price-amount-block .amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-light);
    line-height: 1;
}

/* Sale Discount structure inside header */
.original-price {
    font-size: 1.1rem;
    color: var(--color-text-muted-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.discounted-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.launch-sale-tag {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-left: 8px;
    vertical-align: middle;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.price-features li span {
    line-height: 1.4;
    word-break: keep-all;
}

.price-features li.feat-bold {
    color: var(--color-text-light);
    font-weight: 600;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Promotion Banner */
.pricing-banner {
    max-width: 1000px;
    margin: 40px auto 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(139, 26, 26, 0.8) 100%);
    border-radius: var(--radius-md);
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-md);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
}

.banner-icon i {
    width: 22px;
    height: 22px;
}

.banner-txt h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-white);
}

.banner-txt p {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.8);
}

.banner-btn {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.banner-btn:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-dark-bg);
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   12. [HOME] CTA Call To Action (Wine Red Solid)
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    background-color: var(--color-primary);
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 26, 26, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.cta-section .section-container {
    position: relative;
    z-index: 2;
    padding: 120px 24px;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    word-break: keep-all;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(250, 247, 242, 0.85);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
    word-break: keep-all;
}

/* --------------------------------------------------------------------------
   13. Subpages Common Layout Template (Hero, badge)
   -------------------------------------------------------------------------- */
.sub-hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1549692520-acc6669e2f0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    text-align: center;
}

.sub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.sub-hero .section-container {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.sub-hero-badge {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: 12px;
}

.sub-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   14. [ABOUT] Story, Quote, Vision, and Comparison
   -------------------------------------------------------------------------- */
.about-story-section {
    background-color: var(--color-cream-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.story-content .story-label {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.story-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-body p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    text-align: justify;
    word-break: keep-all;
}

/* Story Quote Card */
.story-quote-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    color: var(--color-accent-gold);
    margin-bottom: 20px;
}

.quote-icon i {
    width: 36px;
    height: 36px;
}

.story-quote-card blockquote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    word-break: keep-all;
}

.story-quote-card cite {
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 700;
    color: var(--color-text-gray);
    display: block;
    margin-bottom: 16px;
}

.quote-signature {
    display: flex;
    gap: 20px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary);
    border-top: 1px solid var(--color-light-border);
    padding-top: 16px;
}

/* Vision Mission Cards */
.about-vision-section {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-light-border);
    border-bottom: 1px solid var(--color-light-border);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-card {
    background-color: var(--color-cream-bg);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-gold);
}

.v-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.v-icon-box i {
    width: 24px;
    height: 24px;
}

.vision-card h3 {
    font-size: 1.35rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.vision-card p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    word-break: keep-all;
}

/* Differentiation side-by-side */
.diff-section {
    background-color: var(--color-cream-bg);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diff-side {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.diff-side-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-light-border);
    padding-bottom: 16px;
}

.diff-side-header i {
    width: 28px;
    height: 28px;
}

.diff-left .diff-side-header {
    color: var(--color-primary-light);
}

.diff-right .diff-side-header {
    color: var(--color-accent-gold);
}

.diff-side-header h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.diff-list li strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.diff-list li p {
    font-size: 0.88rem;
    color: var(--color-text-gray);
    word-break: keep-all;
}

/* Company profile Table Card */
.profile-section {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-light-border);
}

.profile-card {
    background-color: var(--color-cream-bg);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.profile-left {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-left .p-sub {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.profile-left h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.profile-left p {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    margin-bottom: 40px;
}

.profile-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-accent-gold);
    letter-spacing: 0.1em;
}

.profile-right {
    padding: 60px 50px;
    background-color: var(--color-white);
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table th, 
.profile-table td {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-light-border);
    font-size: 0.92rem;
}

.profile-table th {
    font-weight: 600;
    color: var(--color-text-dark);
    width: 140px;
    text-align: left;
    vertical-align: top;
}

.profile-table td {
    color: var(--color-text-gray);
    word-break: keep-all;
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   15. [DIRECTIONS] Map Frame and Transit Info
   -------------------------------------------------------------------------- */
.directions-section {
    background-color: var(--color-cream-bg);
}

.directions-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.map-container-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    padding: 12px;
    min-height: 480px;
    box-shadow: var(--shadow-md);
}

.interactive-map-frame {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

/* Map glass floating card overlay */
.map-glass-card {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-light-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 20px;
    max-width: 280px;
}

.map-marker-pin {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.map-glass-card h4 {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.map-glass-card p {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 14px;
}

.transit-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transit-header .badge-red {
    display: inline-block;
    background-color: rgba(139, 26, 26, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.transit-header h2 {
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.address-text {
    font-size: 1.05rem;
    color: var(--color-text-gray);
    margin-bottom: 30px;
}

.transit-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.transit-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.transit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transit-icon i {
    width: 20px;
    height: 20px;
}

.transit-icon.metro { background-color: rgba(184, 148, 60, 0.1); color: var(--color-accent-gold); }
.transit-icon.bus { background-color: rgba(139, 26, 26, 0.1); color: var(--color-primary); }
.transit-icon.car { background-color: rgba(107, 100, 86, 0.1); color: var(--color-text-gray); }

.transit-detail h3 {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.transit-detail p {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    line-height: 1.5;
    word-break: keep-all;
}

.transit-note {
    background-color: rgba(184, 148, 60, 0.05);
    border-left: 3px solid var(--color-accent-gold);
    padding: 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    display: flex;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--color-text-gray);
    line-height: 1.5;
}

.transit-note i {
    color: var(--color-accent-gold);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* --------------------------------------------------------------------------
   16. [BOARD] Interactive Notice Table & Control Elements
   -------------------------------------------------------------------------- */
.board-section {
    background-color: var(--color-cream-bg);
}

.board-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.board-total {
    font-size: 0.95rem;
    color: var(--color-text-gray);
}

.board-total strong {
    color: var(--color-primary);
}

.board-search-box {
    display: flex;
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--shadow-sm);
}

.board-search-box input {
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 0.88rem;
    flex-grow: 1;
    color: var(--color-text-dark);
}

.board-search-box button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0 16px;
    transition: var(--transition-fast);
}

.board-search-box button:hover {
    background-color: var(--color-primary-light);
}

/* Table Design */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.board-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.board-table th, 
.board-table td {
    padding: 20px 24px;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--color-light-border);
}

.board-table th {
    background-color: var(--color-cream-bg);
    font-weight: 700;
    color: var(--color-text-dark);
}

.board-table tbody tr {
    cursor: pointer;
    transition: var(--transition-fast);
}

.board-table tbody tr:hover {
    background-color: rgba(184, 148, 60, 0.04);
}

.board-table tbody tr:last-child td {
    border-bottom: none;
}

.col-num { width: 80px; text-align: center; }
.col-title { font-weight: 600; color: var(--color-text-dark); }
.col-date { width: 140px; color: var(--color-text-muted-dark); }
.col-views { width: 100px; text-align: center; color: var(--color-text-muted-dark); }

.table-empty-row {
    text-align: center !important;
    padding: 50px 0 !important;
    color: var(--color-text-muted-dark);
}

/* Pagination */
.board-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pag-btn,
.pag-num {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    background-color: var(--color-white);
    color: var(--color-text-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.pag-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pag-btn:not(:disabled):hover,
.pag-num:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    background-color: rgba(184, 148, 60, 0.05);
}

.pag-num.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   17. [FAQ] Accordion Panels
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--color-cream-bg);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background-color: var(--color-white);
    gap: 16px;
}

.faq-badge {
    background-color: rgba(139, 26, 26, 0.08);
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.15rem;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-dark);
    flex-grow: 1;
    word-break: keep-all;
}

.faq-icon-arrow {
    color: var(--color-text-muted-dark);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
    color: var(--color-accent-gold);
}

/* Slide Panel Animation */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--color-cream-bg);
}

.faq-answer-content {
    padding: 30px;
    border-top: 1px solid var(--color-light-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-answer-content p {
    font-size: 0.92rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    word-break: keep-all;
}

/* --------------------------------------------------------------------------
   18. [CONTACT] Premium Grid Forms
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-cream-bg);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Left Info Column */
.contact-info-panel {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

.badge-accent {
    display: inline-block;
    background-color: rgba(184, 148, 60, 0.15);
    color: var(--color-accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.contact-info-header h2 {
    font-size: 1.75rem;
    line-height: 1.35;
    margin-bottom: 16px;
    word-break: keep-all;
}

.contact-info-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    margin-bottom: 40px;
    word-break: keep-all;
}

.contact-list-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    width: 44px;
    height: 44px;
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    color: var(--color-accent-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    width: 20px;
    height: 20px;
}

.row-txt h4 {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.row-txt p {
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
    margin-bottom: 2px;
}

.row-txt .email-link {
    font-weight: 600;
    color: var(--color-accent-gold);
}

/* Right Input Forms */
.contact-form-panel {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
}

.premium-form h3 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.form-lead {
    font-size: 0.88rem;
    color: var(--color-text-gray);
    margin-bottom: 30px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--color-primary-light);
    margin-left: 2px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.92rem;
    border: 1px solid var(--color-light-border);
    background-color: var(--color-cream-bg);
    color: var(--color-text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* Custom Select Dropdown Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-text-muted-dark);
    width: 18px;
    height: 18px;
}

/* Validation Status Indicators */
.form-group.has-error input, 
.form-group.has-error select, 
.form-group.has-error textarea {
    border-color: var(--color-primary-light);
    background-color: rgba(181, 32, 32, 0.03);
}

.field-error-msg {
    display: none;
    font-size: 0.78rem;
    color: var(--color-primary-light);
    margin-top: 6px;
    font-weight: 500;
}

.form-group.has-error .field-error-msg {
    display: block;
}

/* Form Submit Loading Button */
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-spinner {
    display: none;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    border-top-color: var(--color-white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-submit.loading .btn-spinner {
    display: block;
}

/* --------------------------------------------------------------------------
   19. Footer Styling
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--color-dark-bg);
    color: var(--color-text-muted-light);
    border-top: 1px solid var(--color-dark-border);
}

.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-accent-gold);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.brand-tagline {
    font-size: 0.9rem;
    margin-bottom: 24px;
    word-break: keep-all;
}

.footer-sns {
    display: flex;
    gap: 16px;
}

.footer-sns a {
    width: 40px;
    height: 40px;
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    color: var(--color-text-muted-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-sns a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: flex;
    gap: 60px;
}

.footer-link-col h4 {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-link-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-col a {
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
}

.footer-link-col a:hover {
    color: var(--color-accent-gold);
}

/* Legal Notice block in footer */
.footer-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.footer-legal-notice {
    background-color: var(--color-dark-sec);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 40px;
}

.footer-legal-notice p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--color-text-muted-light);
    word-break: keep-all;
}

.legal-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent-gold);
    vertical-align: text-top;
    margin-right: 6px;
    display: inline-block;
}

.footer-legal-notice strong {
    color: var(--color-text-light);
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-dark-border);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.company-details {
    font-size: 0.78rem;
    line-height: 1.8;
}

.company-details p {
    margin-bottom: 4px;
}

.company-details span {
    margin: 0 4px;
}

.company-details span:first-child {
    margin-left: 0;
}

.footer-copyright {
    font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   20. [MODAL] Pop-up Overlays (Notice details, success check)
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Standard Detail Modal */
.modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    width: 90%;
    max-width: 680px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.modal-box.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 24px 30px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-badge {
    background-color: rgba(139, 26, 26, 0.08);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.modal-close-btn {
    color: var(--color-text-muted-dark);
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--color-primary);
}

.modal-content {
    padding: 0 30px 30px;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    word-break: keep-all;
}

.modal-meta {
    font-size: 0.82rem;
    color: var(--color-text-gray);
    display: flex;
    gap: 20px;
}

.modal-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-light-border);
    margin: 20px 0;
}

.modal-body-text {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.7;
    word-break: keep-all;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-body-text p {
    margin-bottom: 16px;
}

.modal-body-text strong {
    color: var(--color-text-dark);
}

.modal-footer {
    background-color: var(--color-cream-bg);
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--color-light-border);
}

/* Success Form Feedback Modal */
.success-modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    padding: 50px 40px 40px;
    text-align: center;
    transition: var(--transition-smooth);
}

.success-modal-box.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    color: var(--color-accent-gold);
    margin: 0 auto 24px;
}

.success-icon-wrapper i {
    width: 100%;
    height: 100%;
}

.success-modal-box h2 {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.success-lead {
    font-size: 0.88rem;
    color: var(--color-text-gray);
    margin-bottom: 30px;
    word-break: keep-all;
}

.success-receipt-details {
    background-color: var(--color-cream-bg);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 30px;
    text-align: left;
}

.success-receipt-details h4 {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-light-border);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.success-receipt-details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.success-receipt-details li {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    display: flex;
    justify-content: space-between;
}

.success-receipt-details li strong {
    color: var(--color-text-dark);
}

/* --------------------------------------------------------------------------
   21. Scroll & View Animation Triggers (.animate-fade-in)
   -------------------------------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   22. Responsive Breakpoint Media Queries (Responsive Mobile to Desktop 1920)
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid .stat-card:nth-child(1),
    .stats-grid .stat-card:nth-child(4) {
        grid-column: span 1 !important;
    }
    
    /* Bento pricing tablet reset */
    .pricing-grid.bento-pricing {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .pricing-grid.bento-pricing .price-card,
    .pricing-grid.bento-pricing .bento-benefit-card {
        grid-column: span 1 !important;
    }
    
    .pricing-grid.bento-pricing .bento-cell-recommended {
        flex-direction: column;
        gap: 24px;
    }
    
    .pricing-grid.bento-pricing .price-recommended-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-dark-border);
        padding-top: 24px;
    }
    
    .services-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container-box {
        min-height: 400px;
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header menu toggle displays on tablet/mobile */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Apple Scroll Mobile Fallback */
    .apple-scroll-container {
        height: auto !important;
    }
    
    .apple-scroll-wrapper {
        position: relative !important;
        height: auto !important;
        flex-direction: column !important;
        gap: 20px !important;
        overflow: visible !important;
        display: block !important;
        padding: 0 16px !important;
    }
    
    .scroll-text-col {
        width: 100% !important;
        height: auto !important;
        padding-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    
    .scroll-text-block {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 32px 24px !important;
        background: var(--color-dark-sec);
        border: 1px solid var(--color-dark-border);
        border-radius: var(--radius-lg) !important;
        pointer-events: auto !important;
    }
    
    .scroll-phone-col {
        display: none !important;
    }
    
    /* Mobile inline screen styles */
    .mobile-inline-screen {
        display: block !important;
        margin-top: 24px;
        background: #09090a;
        border: 1px solid var(--color-dark-border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        width: 100%;
        max-width: 290px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8), 0 10px 25px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-inline-screen .mock-app {
        height: auto !important;
        min-height: 250px;
    }
    
    .mobile-inline-screen .mock-app .app-header {
        height: auto !important;
        padding: 14px 16px 8px !important;
    }
    
    .mobile-inline-screen .mock-app .app-body {
        padding: 12px !important;
        overflow: visible !important;
    }
    
    .mobile-inline-screen .rednote-app .post-card img {
        height: 140px !important;
    }
    
    .mobile-inline-screen .pay-app .qr-code-box {
        width: 110px !important;
        height: 110px !important;
        margin: 10px auto !important;
    }
    
    .mobile-inline-screen .trigger-app img {
        height: 100px !important;
    }
    
    .mobile-inline-screen .upload-app .upload-pic {
        height: 90px !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .stats-grid .stat-card {
        padding: 36px 24px !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .banner-btn {
        width: 100%;
        text-align: center;
    }
    
    .about-vision-section .vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .diff-section .diff-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .profile-card {
        grid-template-columns: 1fr;
    }
    
    .profile-left {
        padding: 40px 30px;
    }
    
    .profile-right {
        padding: 40px 30px;
    }
    
    .board-control-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .board-search-box {
        max-width: none;
    }
    
    .col-date, .col-views {
        display: none;
    }
    
    .faq-trigger {
        padding: 20px 24px;
    }
    
    .faq-answer-content {
        padding: 20px 24px;
    }
    
    .footer-top-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links-grid {
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card {
        padding: 40px 24px;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        padding: 40px 24px;
    }
}

/* --------------------------------------------------------------------------
   Premium Ken-Burns Background Slideshow
   -------------------------------------------------------------------------- */
.hero-section {
    background-image: none !important;
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transform: scale(1.08);
    transition: opacity 1.2s cubic-bezier(0.42, 0, 0.58, 1), transform 4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.0);
}

/* ==========================================================================
   23. Walk-in Section (Offline conversion) Styling
   ========================================================================== */
.walkin-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    border-top: 1px solid var(--color-dark-border);
    padding: 100px 0;
}

/* Background Ambient Glows */
.walkin-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    filter: blur(140px);
    mix-blend-mode: screen;
}

.glow-gold {
    background: radial-gradient(circle, var(--color-accent-gold) 0%, transparent 70%);
    top: -50px;
    left: -150px;
    animation: float-glow-1 20s ease-in-out infinite alternate;
}

.glow-crimson {
    background: radial-gradient(circle, var(--color-accent-crimson) 0%, transparent 70%);
    bottom: -50px;
    right: -150px;
    animation: float-glow-2 20s ease-in-out infinite alternate;
}

@keyframes float-glow-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes float-glow-2 {
    0% { transform: translate(0, 0) scale(1.15); }
    100% { transform: translate(-60px, -40px) scale(0.9); }
}

.walkin-grid-container {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

/* SVG Connecting Flow Lines */
.walkin-connector-lines {
    position: absolute;
    top: 150px; /* Aligns with middle of square image on desktop */
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
    z-index: 3;
}

.connector-line {
    position: absolute;
    height: 2px;
    width: calc(100% / 3 * 0.09 + 25px); /* Responsive gap width overlay */
}

/* Adjust connector positions based on grid structure on desktop */
.line-1-to-2 {
    left: calc(33.333% - 15px);
    width: 30px;
}

.line-2-to-3 {
    left: calc(66.666% - 15px);
    width: 30px;
}

.pulse-path {
    stroke-dasharray: 20 80;
    stroke-dashoffset: 100;
    animation: energy-flow 2.5s linear infinite;
}

@keyframes energy-flow {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

.walkin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.walkin-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Shine sweep hover effect */
.walkin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    z-index: 3;
    transition: none;
    pointer-events: none;
}

.walkin-card:hover::before {
    left: 150%;
    transition: left 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.walkin-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(1.5deg) rotateY(0.8deg);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(201, 169, 110, 0.12);
}

.walkin-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--color-dark-border);
    position: relative;
}

.walkin-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.walkin-card:hover .walkin-image-container img {
    transform: scale(1.04);
}

/* Scanner Reticle Overlay */
.scanner-reticle {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reticle-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--color-accent-gold);
}

.reticle-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.reticle-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.reticle-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.reticle-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.walkin-card:hover .scanner-reticle {
    opacity: 0.85;
    transform: scale(0.97);
}

/* Floating Digital Tags on Image */
.digital-tag {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.68rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: opacity 0.3s ease;
}

.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent-gold);
    animation: tag-pulse-anim 1.6s infinite ease-in-out;
}

@keyframes tag-pulse-anim {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Laser Scanning Line for Card 2 */
.laser-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
    box-shadow: 0 0 15px var(--color-accent-gold), 0 0 5px var(--color-accent-gold);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.walkin-card[data-step="2"]:hover .laser-scanner-line {
    opacity: 1;
    animation: lidar-scan-anim 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes lidar-scan-anim {
    0% { top: 5%; }
    50% { top: 95%; }
    100% { top: 5%; }
}

/* Floating Reward Coupon on Card 3 */
.floating-coupon {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 4;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.95), rgba(139, 0, 21, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    animation: coupon-float-anim 3.5s ease-in-out infinite;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.floating-coupon i {
    width: 13px;
    height: 13px;
}

@keyframes coupon-float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Content Box & Typography */
.walkin-content-box {
    padding: 30px 24px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Big Outline Number in Background */
.step-num-bg {
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-size: 7rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.012);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transition: color 0.6s ease, -webkit-text-stroke 0.6s ease;
}

.walkin-card:hover .step-num-bg {
    color: rgba(201, 169, 110, 0.025);
    -webkit-text-stroke: 1px rgba(201, 169, 110, 0.06);
}

.card-icon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 22px;
    height: 22px;
    color: var(--color-accent-gold);
    opacity: 0.85;
    transition: transform 0.6s ease;
}

.walkin-card:hover .card-icon {
    transform: rotate(12deg) scale(1.1);
}

.walkin-step-num {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--color-accent-gold);
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.walkin-content-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.walkin-content-box p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-muted-light);
    word-break: keep-all;
    position: relative;
    z-index: 2;
}

/* Walk-in Tip Box (Glassmorphic Redesign) */
.walkin-tip-box {
    position: relative;
    background: rgba(201, 169, 110, 0.02);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 25px;
    overflow: hidden;
    z-index: 2;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.walkin-tip-box:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(201, 169, 110, 0.05);
}

.tip-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.tip-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.tip-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-gold);
    animation: tip-lightbulb-anim 2s ease-in-out infinite alternate;
}

@keyframes tip-lightbulb-anim {
    0% { filter: drop-shadow(0 0 2px rgba(201, 169, 110, 0.2)); opacity: 0.8; }
    100% { filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.8)); opacity: 1; }
}

.tip-content {
    position: relative;
    z-index: 1;
}

.tip-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-muted-light);
    word-break: keep-all;
    margin: 0;
}

.tip-content strong {
    color: var(--color-white);
    font-weight: 600;
}

/* Walk-in responsive styles */
@media (max-width: 1024px) {
    .walkin-grid-container {
        margin-bottom: 40px;
    }
    
    .walkin-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .walkin-connector-lines {
        display: none !important;
    }
    
    .walkin-tip-box {
        flex-direction: column;
        padding: 30px 24px;
        text-align: center;
        gap: 15px;
    }
    
    .tip-icon-box {
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Staggered Apple-Style Scroll Reveal for Walk-in section
   -------------------------------------------------------------------------- */
/* Cancel the fade-in/slide-up transition on the outer walkin-section container */
section.walkin-section.scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Also cancel transition on the grid container itself */
.walkin-grid-container.scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Initial hidden state for the cards inside the reveal container */
.walkin-grid-container.scroll-reveal .walkin-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed state for the cards */
.walkin-grid-container.revealed .walkin-card {
    opacity: 1;
    transform: translateY(0);
}

/* Initial hidden state for connector lines */
.walkin-grid-container.scroll-reveal .connector-line {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed state for connector lines with delays */
.walkin-grid-container.revealed .connector-line.line-1-to-2 {
    opacity: 1;
    transition-delay: 0.8s;
}

.walkin-grid-container.revealed .connector-line.line-2-to-3 {
    opacity: 1;
    transition-delay: 1.1s;
}

/* Staggered delays for cards (Desktop only) */
@media (min-width: 1025px) {
    .walkin-grid-container.revealed .walkin-card:nth-child(1) {
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
                    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s !important;
    }
    .walkin-grid-container.revealed .walkin-card:nth-child(2) {
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
                    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s !important;
    }
    .walkin-grid-container.revealed .walkin-card:nth-child(3) {
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s,
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s,
                    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s !important;
    }
}

/* Staggered delays for cards (Mobile/Tablet) */
@media (max-width: 1024px) {
    .walkin-grid-container.scroll-reveal .walkin-card {
        transform: translateY(30px);
    }
    .walkin-grid-container.revealed .walkin-card:nth-child(1) {
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
                    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s !important;
    }
    .walkin-grid-container.revealed .walkin-card:nth-child(2) {
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
                    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s !important;
    }
    .walkin-grid-container.revealed .walkin-card:nth-child(3) {
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
                    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s,
                    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s !important;
    }
}

/* ==========================================================================
   INTERACTIVE DOCUMENT PREVIEW MODAL STYLING
   ========================================================================== */

/* Glassmorphism modal container */
.doc-modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: rgba(20, 20, 25, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-white);
    overflow: hidden;
}

.doc-modal-box.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    visibility: visible;
}

/* Close button style */
.doc-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.doc-modal-close:hover {
    background: rgba(255, 36, 66, 0.1);
    border-color: rgba(255, 36, 66, 0.3);
    color: #FF2442;
    transform: rotate(90deg);
}

/* Modal Header */
.doc-modal-header {
    padding: 32px 32px 16px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.doc-modal-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #FFF 0%, #AAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.doc-modal-header p {
    font-size: 0.88rem;
    color: var(--color-text-muted-light);
}

/* Tabs Navigation */
.doc-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 24px;
}

.doc-tab-btn {
    background: none;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-tab-btn i {
    width: 16px;
    height: 16px;
}

.doc-tab-btn:hover {
    color: var(--color-white);
}

.doc-tab-btn.active {
    color: var(--color-accent-gold);
}

.doc-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-gold);
    box-shadow: 0 -2px 10px rgba(184, 148, 60, 0.4);
}

/* Modal Content Area */
.doc-modal-content {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    background: rgba(10, 10, 12, 0.3);
}

.doc-tab-content {
    display: none;
    animation: docFadeIn 0.35s ease forwards;
}

.doc-tab-content.active {
    display: block;
}

@keyframes docFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab 1: Proposal Details */
.proposal-preview-layout {
    padding: 4px;
}

.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.deliverable-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(184, 148, 60, 0.25);
    transform: translateY(-2px);
}

.deliv-icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(184, 148, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.deliv-icon-wrap i {
    width: 20px;
    height: 20px;
}

.deliverable-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.deliverable-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
}

/* Tab 2: Swap Policy Matrix */
.swap-policy-layout {
    padding: 4px;
}

.swap-interactive-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.swap-lead {
    font-size: 0.95rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
}

.swap-lead strong {
    color: var(--color-accent-gold);
}

.swap-selector-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.swap-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.swap-opt-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.swap-opt-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.swap-opt-btn.active {
    background: rgba(184, 148, 60, 0.12);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    box-shadow: 0 0 15px rgba(184, 148, 60, 0.15);
}

.swap-result-card {
    background: linear-gradient(135deg, rgba(184, 148, 60, 0.05) 0%, rgba(10, 10, 10, 0.4) 100%);
    border: 1px solid rgba(184, 148, 60, 0.2);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    animation: resultPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes resultPop {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.result-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-accent-gold);
    color: var(--color-bg-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: -0.01em;
}

.swap-result-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 10px;
    padding-right: 120px;
}

.swap-result-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
}

/* Tab 3: Skeuomorphic Contract Layout */
.contract-paper-wrapper {
    display: flex;
    justify-content: center;
    background: #111;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contract-paper {
    background: #FAF9F6;
    color: #1A1A1A;
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 760px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Malgun Gothic", "맑은 고딕", helvetica, sans-serif;
    line-height: 1.7;
    font-size: 0.86rem;
    word-break: keep-all;
}

.contract-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(184, 148, 60, 0.04);
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.1em;
}

.contract-title {
    font-size: 1.35rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 36px;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 12px;
}

.contract-section {
    margin-bottom: 24px;
}

.contract-section h6 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.contract-section p {
    color: #333;
    margin: 0;
    text-align: justify;
}

.contract-signature-block {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px dashed #DDD;
}

.sig-col {
    width: 47%;
}

.sig-col strong {
    display: block;
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 12px;
}

.sig-col p {
    margin: 4px 0;
    color: #444;
}

/* ==========================================================================
   RESPONSIVE MODAL ADAPTATIONS
   ========================================================================== */
@media (max-width: 768px) {
    .doc-modal-box {
        width: 95%;
        max-height: 90vh;
    }
    
    .doc-modal-header {
        padding: 24px 20px 12px 20px;
    }
    
    .doc-tabs {
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .doc-tab-btn {
        padding: 12px 14px;
        font-size: 0.88rem;
        flex-shrink: 0;
    }
    
    .doc-modal-content {
        padding: 20px;
    }
    
    .deliverable-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .swap-btn-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .swap-opt-btn {
        width: 100%;
        min-width: unset;
    }
    
    .swap-result-card {
        padding: 20px;
    }
    
    .swap-result-card h4 {
        padding-right: 0;
        margin-top: 10px;
    }
    
    .result-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
    }
    
    .contract-paper {
        padding: 24px;
    }
    
    .contract-signature-block {
        flex-direction: column;
        gap: 24px;
    }
    
    .sig-col {
        width: 100%;
    }
}

/* ==========================================================================
   SUCCESS STUDY GALLERY SECTION STYLING
   ========================================================================== */
.case-study-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(15, 15, 20, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.case-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 148, 60, 0.06) 0%, rgba(0,0,0,0) 70%);
    top: -10%;
    right: -10%;
    pointer-events: none;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 56px;
    position: relative;
    z-index: 2;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 12, 0.85) 0%, rgba(10, 10, 12, 0) 60%);
    pointer-events: none;
}

.gallery-desc {
    padding: 28px;
    background: rgba(15, 15, 20, 0.4);
}

.gallery-desc h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.gallery-desc p {
    font-size: 0.88rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
}

/* Gallery Interactive Hovers */
.gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 148, 60, 0.35);
    box-shadow: 0 20px 40px rgba(184, 148, 60, 0.12);
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.06);
}

/* Gallery Responsiveness */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .gallery-img-wrap {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .case-study-section {
        padding: 80px 0;
    }
}

/* Gallery Case Badge (CASE 01, 02, 03) */
.gallery-case-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(139, 26, 26, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Verification Highlight Box (광고비 0원) */
.case-highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(28, 28, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--color-crimson);
    border-radius: 16px;
    padding: 22px 32px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: slideUp 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

.case-highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-highlight-icon i {
    width: 20px;
    height: 20px;
    color: var(--color-accent-gold);
}

.case-highlight-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    word-break: keep-all;
}

.case-highlight-text strong {
    color: var(--color-white);
    font-weight: 700;
}

@media (max-width: 640px) {
    .case-highlight-box {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   VIRAL EVIDENCE SECTION — Apple Aesthetic
   ========================================================================== */
.viral-section {
    padding: 140px 0 120px;
    background: linear-gradient(180deg, rgba(5,5,10,1) 0%, rgba(8,8,16,1) 100%);
    position: relative;
    overflow: hidden;
}

/* Ambient glow orbs */
.viral-ambient-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139,26,26,0.09) 0%, transparent 65%);
    top: -20%;
    left: -15%;
    pointer-events: none;
}

.viral-ambient-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,148,60,0.07) 0%, transparent 65%);
    bottom: -10%;
    right: -10%;
    pointer-events: none;
}

/* Phone row layout */
.viral-phones-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 28px;
    margin: 72px auto 0;
    max-width: 1000px;
}

/* Individual phone wrapper */
.viral-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 200px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
                transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.viral-phone.in-view {
    opacity: 1;
    transform: translateY(0);
}

.viral-phone[data-vdelay="0"] { transition-delay: 0.05s; }
.viral-phone[data-vdelay="1"] { transition-delay: 0.18s; }
.viral-phone[data-vdelay="2"] { transition-delay: 0.31s; }
.viral-phone[data-vdelay="3"] { transition-delay: 0.44s; }

/* Phone frame (device shell) */
.viral-phone-frame {
    width: 100%;
    aspect-ratio: 9/19;
    background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1d 40%, #111113 100%);
    border-radius: 32px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.07),
        0 30px 80px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
    cursor: default;
}

.viral-phone-frame.elevated {
    transform: translateY(-24px);
    box-shadow:
        0 0 0 1px rgba(201,169,110,0.2),
        0 50px 100px rgba(0,0,0,0.8),
        0 0 40px rgba(201,169,110,0.06),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.viral-phone-frame:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(201,169,110,0.25),
        0 40px 90px rgba(0,0,0,0.8),
        0 0 30px rgba(201,169,110,0.08),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.viral-phone-frame.elevated:hover {
    transform: translateY(-36px) scale(1.02);
}

/* Notch */
.vphone-notch {
    width: 90px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    margin: 0 auto 6px;
    position: relative;
    z-index: 2;
}

/* Screen area */
.vphone-screen {
    width: 100%;
    height: calc(100% - 36px);
    border-radius: 22px;
    overflow: hidden;
    background: #000;
}

.vphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Phone label / stat */
.viral-phone-label {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.viral-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    letter-spacing: 0.02em;
}

.viral-stat-badge i {
    width: 12px;
    height: 12px;
}

.viral-phone-label p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Stat strip (Apple spec-bar style) */
.viral-stat-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 80px auto 0;
    max-width: 900px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.vstat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vstat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, rgba(201,169,110,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vstat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.02em;
}

.vstat-divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
    margin: 0 16px;
}

/* Responsive viral section */
@media (max-width: 900px) {
    .viral-phones-row {
        gap: 16px;
    }
    .viral-phone {
        max-width: 160px;
    }
}

@media (max-width: 640px) {
    .viral-phones-row {
        gap: 10px;
        overflow-x: auto;
        padding: 0 20px 20px;
        justify-content: flex-start;
        margin: 48px 0 0;
        -webkit-overflow-scrolling: touch;
    }
    .viral-phone {
        min-width: 140px;
        flex-shrink: 0;
    }
    .viral-phone-frame.elevated {
        transform: translateY(-12px);
    }
    .viral-stat-strip {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px;
    }
    .vstat-divider {
        display: none;
    }
    .vstat-item {
        flex: 0 0 calc(50% - 10px);
    }
}

/* ==========================================================================
   APPLE-STYLE GLOBAL SCROLL REVEAL SYSTEM
   ========================================================================== */

/* Base state: elements wait to be revealed */
.apple-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for child elements */
.apple-reveal-delay-1 { transition-delay: 0.1s; }
.apple-reveal-delay-2 { transition-delay: 0.22s; }
.apple-reveal-delay-3 { transition-delay: 0.34s; }
.apple-reveal-delay-4 { transition-delay: 0.46s; }

/* Viral section reveal */
.viral-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
                transform 1s cubic-bezier(0.16,1,0.3,1);
}
.viral-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   APPLE-STYLE FLOATING AMBIENT PARTICLES (subtle)
   ========================================================================== */
@keyframes floatA {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}
@keyframes floatB {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(15px) scale(1.1); opacity: 0.6; }
}
@keyframes shimmerSweep {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ==========================================================================
   APPLE-STYLE HERO TEXT GRADIENT ANIMATION
   ========================================================================== */
.highlight-gold {
    background: linear-gradient(
        90deg,
        var(--color-accent-gold) 0%,
        #FFD98A 40%,
        var(--color-accent-gold) 80%,
        #FFD98A 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerSweep 4s linear infinite;
}

/* ==========================================================================
   SECTION HEADER ENHANCED: section-tag shimmer
   ========================================================================== */
.section-tag {
    position: relative;
    overflow: hidden;
}

.section-tag::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: tagShimmer 4s ease-in-out infinite;
}

@keyframes tagShimmer {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* ==========================================================================
   GALLERY CARD ENHANCED: micro depth on hover
   ========================================================================== */
.gallery-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.01);
}

.gallery-img-wrap img {
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   WALKIN CARD ENHANCED: tilt-on-hover
   ========================================================================== */
.walkin-card {
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

/* ==========================================================================
   PRICE CARD: shimmer border glow on hover
   ========================================================================== */
.price-card.recommended {
    position: relative;
    overflow: hidden;
}

.price-card.recommended::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(
        from 0deg,
        rgba(201,169,110,0) 0deg,
        rgba(201,169,110,0.6) 90deg,
        rgba(201,169,110,0) 180deg,
        rgba(139,26,26,0.5) 270deg,
        rgba(201,169,110,0) 360deg
    );
    border-radius: inherit;
    animation: priceCardGlow 6s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-card.recommended:hover::before {
    opacity: 1;
}

@keyframes priceCardGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   CTA SECTION: pulse on button
   ========================================================================== */
.btn-gold {
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.btn-gold:hover::after {
    transform: translateX(150%) skewX(-15deg);
}

/* ==========================================================================
   VIRAL SECTION — ENHANCED PREMIUM EFFECTS
   ========================================================================== */

/* Aurora background layer */
.viral-aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139,26,26,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(184,148,60,0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0%   { opacity: 0.6; transform: scale(1) rotate(0deg); }
    50%  { opacity: 1;   transform: scale(1.05) rotate(2deg); }
    100% { opacity: 0.7; transform: scale(0.98) rotate(-1deg); }
}

/* Particle container */
.viral-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Spark particle (generated by JS) */
.vspark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent-gold);
    opacity: 0;
    animation: sparkRise var(--dur, 3s) ease-out var(--delay, 0s) infinite;
}

@keyframes sparkRise {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    20%  { opacity: 0.9; }
    80%  { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-120px) translateX(var(--drift, 20px)) scale(0); }
}

/* Hero phone wrapper */
.hero-phone {
    position: relative;
    z-index: 3;
}

/* Pulse rings on hero phone */
.vpulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 169, 110, 0.35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
    z-index: 0;
    animation: vpulseExpand 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.vpulse-ring.ring-1 { width: 180%; padding-top: 180%; animation-delay: 0s; }
.vpulse-ring.ring-2 { width: 220%; padding-top: 220%; animation-delay: 0.8s; border-color: rgba(201,169,110,0.2); }
.vpulse-ring.ring-3 { width: 260%; padding-top: 260%; animation-delay: 1.6s; border-color: rgba(201,169,110,0.1); }

@keyframes vpulseExpand {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* iOS-style Notification toast */
.vios-notif {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    background: rgba(28, 28, 32, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 220px;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.5),
        0 0 0 0.5px rgba(255,255,255,0.06) inset;
    opacity: 0;
    z-index: 20;
    pointer-events: none;
    /* Will be triggered by JS */
}

.vios-notif.right-notif {
    left: auto;
    right: -30px;
    transform: translateY(-16px);
}

.vios-notif.notif-shown {
    animation: notifSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               notifFadeOut 0.4s ease 3s forwards;
}

@keyframes notifSlideIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-24px) scale(0.92); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes notifSlideInRight {
    from { opacity: 0; transform: translateY(-24px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes notifFadeOut {
    from { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
    to   { opacity: 0; transform: translateX(-50%) translateY(-12px) scale(0.95); }
}

.vios-notif.right-notif.notif-shown {
    animation: notifSlideInRight 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               notifFadeOutRight 0.4s ease 3s forwards;
}

@keyframes notifFadeOutRight {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(-12px) scale(0.95); }
}

.vios-notif-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.vios-notif-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.vios-app {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vios-msg {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.35;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Phone glare sweep */
.vphone-glare {
    position: absolute;
    top: -100%;
    left: -60%;
    width: 50%;
    height: 300%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255,255,255,0.06) 40%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0.06) 60%,
        transparent 100%
    );
    transform: skewX(-10deg);
    pointer-events: none;
    animation: glareSweep 5s ease-in-out 1.5s infinite;
}

.vphone-glare.glare-fast {
    animation: glareSweep 4s ease-in-out 0.8s infinite;
}

@keyframes glareSweep {
    0%   { left: -60%; opacity: 0; }
    10%  { opacity: 1; }
    40%  { left: 160%; opacity: 1; }
    41%  { opacity: 0; }
    100% { left: 160%; opacity: 0; }
}

/* Gold accent bar on hero phone top */
.vphone-gold-accent {
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
    border-radius: 0 0 2px 2px;
    animation: goldAccentPulse 2.5s ease-in-out infinite;
}

@keyframes goldAccentPulse {
    0%, 100% { opacity: 0.5; box-shadow: none; }
    50% { opacity: 1; box-shadow: 0 0 12px rgba(201,169,110,0.6); }
}

/* Hero badge styling */
.hero-badge {
    background: rgba(201, 169, 110, 0.12) !important;
    border-color: rgba(201, 169, 110, 0.35) !important;
    font-size: 0.88rem !important;
    padding: 7px 16px !important;
    box-shadow: 0 0 16px rgba(201, 169, 110, 0.15);
    animation: heroBadgePulse 2s ease-in-out infinite;
}

@keyframes heroBadgePulse {
    0%, 100% { box-shadow: 0 0 12px rgba(201,169,110,0.15); }
    50%      { box-shadow: 0 0 24px rgba(201,169,110,0.35); }
}

/* vcount: numbers pop */
.vcount {
    display: inline;
    font-variant-numeric: tabular-nums;
}

/* Stat strip count-up visuals */
.strip-count {
    display: inline;
    font-variant-numeric: tabular-nums;
}

/* Viral phone position relative for absolute children */
.viral-phone {
    position: relative;
}

/* Tighten row spacing for narrow screen */
@media (max-width: 760px) {
    .vios-notif { display: none; }
    .vpulse-ring { display: none; }
}

