/**
 * DR-04 Theme - Peach Dream
 * 피치 드림 - Whimsical Toy-Box / Soft Maximalism
 *
 * Unique Features:
 * - 3D Card Stack Hero
 * - Honeycomb Hexagon Grid
 * - Accordion Pricing
 * - Masonry Review Grid
 * - Orbital Process Steps
 */

/* =====================================================
   IMPORTS & CSS VARIABLES
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@300;400;700&family=IBM+Plex+Sans+KR:wght@300;400;500;600&family=Poor+Story&display=swap');

:root {
    /* Peach Dream Palette */
    --peach-50: #FFF8F6;
    --peach-100: #FBE9E7;
    --peach-200: #FFCCBC;
    --peach-300: #FFAB91;
    --peach-400: #FF8A65;
    --peach-500: #FF7043;
    --peach-600: #F4511E;

    /* Accent Colors */
    --cream: #FFE0B2;
    --honey: #FFD54F;
    --coral: #FF6F61;
    --blush: #FFCDD2;
    --warm-white: #FFFAF7;
    --warm-brown: #5D4037;
    --soft-brown: #8D6E63;

    /* Functional */
    --primary: var(--peach-400);
    --primary-dark: var(--peach-500);
    --primary-light: var(--peach-200);
    --secondary: var(--honey);
    --text-dark: var(--warm-brown);
    --text-light: var(--soft-brown);
    --text-muted: #A1887F;
    --bg-main: var(--warm-white);
    --bg-alt: var(--peach-100);

    /* Typography */
    --font-display: 'Poor Story', 'Gaegu', cursive;
    --font-heading: 'Gaegu', cursive;
    --font-body: 'IBM Plex Sans KR', sans-serif;

    /* Spacing */
    --section-gap: 100px;
    --container-width: 1200px;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(255, 138, 101, 0.15);
    --shadow-medium: 0 8px 40px rgba(255, 138, 101, 0.2);
    --shadow-strong: 0 15px 50px rgba(255, 138, 101, 0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 50px;

    /* Animation */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

/* Warm Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   FLOATING DECORATIONS - Peach Bubbles
   ===================================================== */
.peach-bubbles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    font-size: 2rem;
    animation: floatBubble 20s infinite ease-in-out;
    opacity: 0.6;
}

.bubble:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.bubble:nth-child(2) { top: 20%; right: 10%; animation-delay: 3s; font-size: 1.8rem; }
.bubble:nth-child(3) { top: 60%; left: 8%; animation-delay: 6s; font-size: 2rem; }
.bubble:nth-child(4) { top: 40%; right: 5%; animation-delay: 9s; font-size: 2.2rem; }
.bubble:nth-child(5) { top: 80%; left: 15%; animation-delay: 12s; font-size: 1.5rem; }
.bubble:nth-child(6) { top: 30%; left: 20%; animation-delay: 15s; font-size: 1.8rem; }

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) rotate(10deg) scale(1.1); }
    50% { transform: translateY(-15px) rotate(-5deg) scale(0.95); }
    75% { transform: translateY(-40px) rotate(5deg) scale(1.05); }
}

/* Blob Shapes */
.blob-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -2;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--peach-200);
    top: -200px;
    right: -200px;
    animation: morphBlob 25s infinite ease-in-out;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--cream);
    bottom: 20%;
    left: -150px;
    animation: morphBlob 30s infinite ease-in-out reverse;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    top: 50%;
    right: 10%;
    animation: morphBlob 20s infinite ease-in-out 5s;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(180deg); }
}

/* =====================================================
   MOBILE OVERLAY
   ===================================================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(93, 64, 55, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   HEADER - Frosted Glass Navbar
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
}

.header.scrolled {
    background: rgba(255, 250, 247, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    z-index: 1001;
}

.logo-icon {
    font-size: 1.8rem;
    animation: carBounce 2s infinite ease-in-out;
}

@keyframes carBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.brand-peach {
    font-size: 1.4rem;
    animation: peachSpin 4s infinite ease-in-out;
}

@keyframes peachSpin {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

/* Navigation */
.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--peach-200);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-smooth);
    z-index: -1;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--peach-600);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--peach-400), var(--peach-500));
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
    transition: all 0.3s var(--ease-bounce);
}

.header-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4);
}

.header-cta i {
    animation: heartPulse 1s infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--peach-100);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    transition: all 0.3s var(--ease-smooth);
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--peach-500);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

.navbar-toggler.active {
    background: var(--peach-300);
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   SECTION COMMON STYLES
   ===================================================== */
.section {
    padding: var(--section-gap) 0;
    position: relative;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    border: 2px dashed var(--peach-300);
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--peach-500);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--peach-500);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--peach-200);
    z-index: -1;
    border-radius: 4px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
}

.btn-primary {
    background: linear-gradient(135deg, var(--peach-400), var(--peach-500));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 112, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 112, 67, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--peach-500);
    border: 2px solid var(--peach-300);
}

.btn-secondary:hover {
    background: var(--peach-100);
    border-color: var(--peach-400);
    transform: translateY(-4px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* =====================================================
   HERO - 3D CARD STACK
   ===================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--peach-500);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s var(--ease-out);
}

.badge-emoji {
    font-size: 1.3rem;
    animation: bounceEmoji 2s infinite;
}

@keyframes bounceEmoji {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-title .highlight {
    color: var(--peach-500);
    position: relative;
    display: inline-block;
}

.hero-title .emoji {
    display: inline-block;
    animation: wiggle 2s infinite ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

/* 3D Card Stack */
.card-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    perspective: 1500px;
    padding: 40px 20px;
}

.stack-card {
    width: 280px;
    height: 380px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
    position: relative;
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 138, 101, 0.3), transparent 50%);
}

.stack-card.left {
    transform: translateX(60px) rotateY(25deg) scale(0.85);
    z-index: 1;
    opacity: 0.7;
}

.stack-card.center {
    transform: translateZ(50px) scale(1);
    z-index: 3;
    box-shadow: 0 25px 60px rgba(255, 112, 67, 0.3);
}

.stack-card.right {
    transform: translateX(-60px) rotateY(-25deg) scale(0.85);
    z-index: 1;
    opacity: 0.7;
}

.stack-card:hover {
    transform: translateZ(80px) scale(1.02) !important;
    opacity: 1 !important;
    z-index: 5 !important;
}

.card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    z-index: 10;
}

.card-label h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.card-label p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--peach-500);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =====================================================
   TRUST BADGES - Scrolling Ribbon
   ===================================================== */
.trust-ribbon {
    background: var(--peach-100);
    padding: 20px 0;
    overflow: hidden;
}

.ribbon-track {
    display: flex;
    gap: 60px;
    animation: scrollRibbon 30s linear infinite;
    width: max-content;
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
}

.ribbon-emoji {
    font-size: 1.5rem;
}

@keyframes scrollRibbon {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   FEATURES - HONEYCOMB HEXAGON GRID
   ===================================================== */
.honeycomb-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.hex-card {
    width: 200px;
    height: 230px;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
}

.hex-card::before {
    content: '';
    position: absolute;
    inset: 3px;
    clip-path: inherit;
    background: white;
    z-index: -1;
    transition: all 0.3s;
}

.hex-card:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 30px rgba(255, 138, 101, 0.3));
}

.hex-card:hover::before {
    background: var(--peach-100);
}

.hex-card:nth-child(even) {
    margin-top: 115px;
}

.hex-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.hex-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hex-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* =====================================================
   PRICING - ACCORDION STYLE
   ===================================================== */
.accordion-pricing {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.accordion-item:hover {
    box-shadow: var(--shadow-medium);
}

.accordion-item.featured {
    border: 3px solid var(--peach-300);
    position: relative;
}

.accordion-item.featured::before {
    content: 'BEST';
    position: absolute;
    top: -1px;
    right: 30px;
    background: linear-gradient(135deg, var(--peach-400), var(--peach-500));
    color: white;
    padding: 6px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 10;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--peach-50);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-emoji {
    font-size: 2.5rem;
}

.accordion-title-group h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.accordion-title-group p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.accordion-price {
    text-align: right;
}

.accordion-price .amount {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--peach-500);
}

.accordion-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    background: var(--peach-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--peach-500);
    transition: all 0.4s var(--ease-smooth);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
    background: var(--peach-400);
    color: white;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-smooth), padding 0.5s;
}

.accordion-item.active .accordion-body {
    max-height: 400px;
    padding: 0 30px 30px;
}

.accordion-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding-top: 20px;
    border-top: 2px dashed var(--peach-200);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-list li i {
    color: var(--peach-500);
}

.accordion-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

/* =====================================================
   REVIEWS - MASONRY GRID
   ===================================================== */
.masonry-reviews {
    columns: 3;
    column-gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    break-inside: avoid;
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--peach-100);
    line-height: 1;
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.review-card:nth-child(odd) {
    background: white;
}

.review-card:nth-child(3n) {
    background: linear-gradient(135deg, var(--peach-100), var(--cream));
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.review-rating span {
    font-size: 1.1rem;
}

.review-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.review-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--peach-300), var(--peach-400));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.review-info h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
}

.review-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =====================================================
   PROCESS - ORBITAL CIRCLE LAYOUT
   ===================================================== */
.orbital-process {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--peach-400), var(--peach-500));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255, 112, 67, 0.4);
    z-index: 10;
}

.orbital-center-emoji {
    font-size: 3rem;
    margin-bottom: 8px;
}

.orbital-center h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 3px dashed var(--peach-200);
    border-radius: 50%;
}

.orbital-step {
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
}

.orbital-step:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-strong);
}

/* Position steps around the circle */
.orbital-step:nth-child(1) { top: -70px; left: 50%; transform: translateX(-50%); }
.orbital-step:nth-child(2) { top: 50%; right: -70px; transform: translateY(-50%); }
.orbital-step:nth-child(3) { bottom: -70px; left: 50%; transform: translateX(-50%); }
.orbital-step:nth-child(4) { top: 50%; left: -70px; transform: translateY(-50%); }

.orbital-step:nth-child(1):hover { transform: translateX(-50%) scale(1.15); }
.orbital-step:nth-child(2):hover { transform: translateY(-50%) scale(1.15); }
.orbital-step:nth-child(3):hover { transform: translateX(-50%) scale(1.15); }
.orbital-step:nth-child(4):hover { transform: translateY(-50%) scale(1.15); }

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--peach-400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.step-emoji {
    font-size: 2rem;
    margin-bottom: 8px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* =====================================================
   CONTACT FORM SECTION
   ===================================================== */
.contact-section {
    background: linear-gradient(180deg, var(--peach-100), var(--warm-white));
    padding: var(--section-gap) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s var(--ease-smooth);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--peach-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.btn-kakao {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FEE500;
    color: #3C1E1E;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s var(--ease-bounce);
}

.btn-kakao:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(254, 229, 0, 0.4);
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--peach-400);
}

.form-control {
    padding: 14px 18px;
    background: var(--peach-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--peach-300);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 138, 101, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF8A65' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 50px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    margin-top: 10px;
    font-size: 1.2rem;
}

.btn-submit .btn-emoji {
    animation: bounceEmoji 1.5s infinite;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--warm-brown);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    background: var(--peach-400);
    transform: translateY(-4px);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--peach-300);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--peach-300);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   FLOATING CTA
   ===================================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 990;
}

.cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s var(--ease-bounce);
}

.cta-btn:hover {
    transform: scale(1.15) translateY(-4px);
}

.cta-btn.apply {
    background: linear-gradient(135deg, var(--peach-400), var(--peach-500));
}

.cta-btn.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.cta-btn.call {
    background: var(--coral);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--peach-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--peach-500);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    z-index: 990;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--peach-400);
    color: white;
    border-color: var(--peach-400);
    transform: translateY(-5px);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   SUB PAGE STYLES
   ===================================================== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--peach-100), var(--warm-white));
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.page-content {
    padding: 60px 0 100px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--peach-400);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    :root {
        --section-gap: 80px;
    }

    .honeycomb-grid {
        gap: 10px;
    }

    .hex-card {
        width: 170px;
        height: 195px;
    }

    .hex-card:nth-child(even) {
        margin-top: 97px;
    }

    .orbital-process {
        max-width: 550px;
    }

    .orbital-ring {
        width: 400px;
        height: 400px;
    }

    .orbital-center {
        width: 150px;
        height: 150px;
    }

    .orbital-step {
        width: 120px;
        height: 120px;
    }

    .masonry-reviews {
        columns: 2;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    /* Mobile Navigation */
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s var(--ease-smooth);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-nav.active {
        right: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--peach-100);
    }

    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        border-radius: 0;
    }

    .nav-link::before {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    /* Hero adjustments */
    .hero-section {
        padding-top: 100px;
    }

    .card-stack {
        flex-direction: column;
        gap: 20px;
        perspective: none;
    }

    .stack-card {
        width: 280px;
        height: 200px;
    }

    .stack-card.left,
    .stack-card.center,
    .stack-card.right {
        transform: none;
        opacity: 1;
    }

    .stack-card.left,
    .stack-card.right {
        display: none;
    }

    .hero-stats {
        gap: 30px;
    }

    /* Honeycomb to vertical */
    .honeycomb-grid {
        flex-direction: column;
        align-items: center;
    }

    .hex-card {
        width: 200px;
        height: 200px;
        margin-top: 0 !important;
    }

    /* Orbital to linear */
    .orbital-process {
        aspect-ratio: auto;
        height: auto;
    }

    .orbital-ring {
        display: none;
    }

    .orbital-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 40px;
    }

    .orbital-step {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: var(--radius-lg);
        margin: 0 auto 20px;
        padding: 25px;
        flex-direction: row;
        gap: 20px;
        text-align: left;
    }

    .orbital-step:hover {
        transform: scale(1.02) !important;
    }

    .step-number {
        position: relative;
        top: auto;
        right: auto;
        flex-shrink: 0;
    }

    /* Masonry to single column */
    .masonry-reviews {
        columns: 1;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Accordion */
    .accordion-header {
        flex-wrap: wrap;
        gap: 15px;
    }

    .accordion-content {
        grid-template-columns: 1fr;
    }

    .accordion-cta {
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    :root {
        --section-gap: 60px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hex-card {
        width: 160px;
        height: 170px;
        padding: 20px 15px;
    }

    .hex-icon {
        font-size: 2rem;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-header-left {
        gap: 15px;
    }

    .accordion-emoji {
        font-size: 2rem;
    }

    .accordion-title-group h3 {
        font-size: 1.1rem;
    }

    .accordion-price .amount {
        font-size: 1.4rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .cta-btn {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }
}

/* =====================================================
   TEXT UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-peach { color: var(--peach-500); }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
