/* ===== SkySaju - 천점사주 ===== */
/* Commercial Landing Page - Sunrise Ocean Theme */

:root {
    /* Sunrise Colors (하늘/태양) */
    --sunrise-50: #fffbeb;
    --sunrise-100: #fef3c7;
    --sunrise-200: #fde68a;
    --sunrise-300: #fcd34d;
    --sunrise-400: #fbbf24;
    --sunrise-500: #f59e0b;
    --sunrise-600: #d97706;
    --sunrise-700: #b45309;
    --sunrise-800: #92400e;
    --sunrise-900: #78350f;

    /* Ocean Colors (바다) */
    --ocean-50: #eff6ff;
    --ocean-100: #dbeafe;
    --ocean-200: #bfdbfe;
    --ocean-300: #93c5fd;
    --ocean-400: #60a5fa;
    --ocean-500: #3b82f6;
    --ocean-600: #2563eb;
    --ocean-700: #1d4ed8;
    --ocean-800: #1e40af;
    --ocean-900: #1e3a8a;

    /* Neutral Colors */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Accent Colors */
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --emerald-500: #10b981;
    --rose-500: #f43f5e;

    /* Semantic Colors */
    --primary: var(--sunrise-500);
    --primary-dark: var(--sunrise-600);
    --primary-light: var(--sunrise-300);
    --secondary: var(--ocean-500);
    --secondary-dark: var(--ocean-600);
    --background: var(--sunrise-50);
    --surface: #ffffff;
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-muted: var(--slate-400);
    --border: var(--slate-200);

    /* Typography */
    --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

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

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
}

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

.section {
    padding: var(--section-padding) 0;
}

/* ===== Components ===== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--slate-50);
    border-color: var(--slate-300);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    background: var(--sunrise-100);
    color: var(--sunrise-700);
}

/* Cards */
.card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all var(--transition-slow);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--sunrise-200);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.navbar-scrolled {
    box-shadow: var(--shadow);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

.nav-cta {
    margin-left: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    /* 일출 그라디언트: 상단 핑크/오렌지 → 중간 노랑 → 하단 파란 바다 */
    background: linear-gradient(180deg,
        #f8b4b4 0%,           /* 연한 핑크 (새벽 하늘) */
        #fcd9b6 15%,          /* 살구색 */
        #fde68a 30%,          /* 노랑 (태양빛) */
        #fef3c7 45%,          /* 연한 노랑 */
        #bfdbfe 65%,          /* 연한 파랑 (수평선) */
        #60a5fa 85%,          /* 바다 파랑 */
        #3b82f6 100%          /* 깊은 바다 */
    );
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* 태양 빛 효과 */
        radial-gradient(ellipse 60% 40% at 50% 35%, rgba(251,191,36,0.4) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 30%, rgba(255,255,255,0.6) 0%, transparent 40%),
        /* 바다 물결 효과 */
        radial-gradient(ellipse 100% 30% at 50% 100%, rgba(59,130,246,0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    filter: blur(2px);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* Cloud 1 - Large, top left */
.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: 5%;
    animation: cloud-drift 80s linear infinite;
}

.cloud-1::before {
    width: 100px;
    height: 80px;
    top: -40px;
    left: 30px;
}

.cloud-1::after {
    width: 80px;
    height: 60px;
    top: -30px;
    right: 30px;
}

/* Cloud 2 - Medium, top right */
.cloud-2 {
    width: 150px;
    height: 45px;
    top: 20%;
    right: 10%;
    animation: cloud-drift-reverse 90s linear infinite;
}

.cloud-2::before {
    width: 70px;
    height: 55px;
    top: -30px;
    left: 25px;
}

.cloud-2::after {
    width: 60px;
    height: 45px;
    top: -25px;
    right: 20px;
}

/* Cloud 3 - Small, middle left */
.cloud-3 {
    width: 120px;
    height: 35px;
    top: 45%;
    left: -5%;
    animation: cloud-drift 70s linear infinite;
    animation-delay: -20s;
}

.cloud-3::before {
    width: 55px;
    height: 45px;
    top: -25px;
    left: 20px;
}

/* Cloud 4 - Large, bottom */
.cloud-4 {
    width: 180px;
    height: 50px;
    bottom: 20%;
    right: 5%;
    animation: cloud-drift-reverse 100s linear infinite;
    animation-delay: -30s;
}

.cloud-4::before {
    width: 90px;
    height: 70px;
    top: -40px;
    left: 30px;
}

.cloud-4::after {
    width: 70px;
    height: 50px;
    top: -28px;
    right: 25px;
}

/* Cloud 5 - Small, bottom left */
.cloud-5 {
    width: 100px;
    height: 30px;
    bottom: 30%;
    left: 15%;
    animation: cloud-drift 60s linear infinite;
    animation-delay: -10s;
    opacity: 0.8;
}

.cloud-5::before {
    width: 50px;
    height: 40px;
    top: -22px;
    left: 15px;
}

@keyframes cloud-drift {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(calc(100vw + 100%));
    }
}

@keyframes cloud-drift-reverse {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(calc(-100% - 100px));
    }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--slate-900);
}

.hero-title span {
    color: var(--sunrise-600);
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    position: relative;
    width: 300px;
}

.phone-mockup {
    position: relative;
    width: 100%;
    background: var(--slate-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.1);
}

.phone-screen {
    width: 100%;
    aspect-ratio: 9/19.5;
    /* 앱 아이콘과 같은 일출 그라디언트 */
    background: linear-gradient(180deg,
        #f8b4b4 0%,
        #fcd9b6 20%,
        #fde68a 40%,
        #bfdbfe 70%,
        #3b82f6 100%
    );
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.phone-content {
    text-align: center;
    color: white;
}

.phone-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
}

.phone-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.phone-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.phone-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.score-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.score-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.score-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Floating elements */
.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-card-1 {
    top: 15%;
    left: -60px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 25%;
    right: -40px;
    animation-delay: 2s;
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-icon.love { background: #fce7f3; }
.floating-icon.money { background: #fef3c7; }

.floating-text {
    font-size: 0.8125rem;
}

.floating-text strong {
    display: block;
    color: var(--text-primary);
}

.floating-text span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

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

/* ===== Features Section ===== */
.features-section {
    background: var(--surface);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-badge {
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.feature-card {
    text-align: center;
    padding: 32px 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--sunrise-100) 0%, var(--ocean-100) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--sunrise-50);
    color: var(--sunrise-600);
    border-radius: var(--radius-full);
}

/* ===== How It Works Section ===== */
.how-section {
    background: var(--slate-50);
}

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

.step-card {
    position: relative;
    text-align: center;
    padding: 40px 32px;
    background: var(--surface);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 16px auto 24px;
    background: linear-gradient(135deg, var(--sunrise-100) 0%, var(--ocean-100) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ===== Counselors Section ===== */
.counselors-section {
    background: var(--surface);
}

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

.counselor-card {
    text-align: center;
    padding: 32px 20px;
}

.counselor-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--sunrise-200) 0%, var(--ocean-200) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.counselor-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.counselor-specialty {
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.counselor-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.counselor-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: var(--amber-400);
    color: var(--slate-900);
    border-radius: var(--radius-full);
}

/* ===== Reviews Section ===== */
.reviews-section {
    background: var(--slate-50);
}

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

.review-card {
    background: var(--surface);
    padding: 28px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sunrise-100) 0%, var(--ocean-100) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--amber-400);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Review Summary */
.review-summary {
    text-align: center;
    padding: 40px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 40px;
}

.summary-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.summary-stars {
    color: var(--amber-400);
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin: 8px 0;
}

.summary-count {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ===== Download Section ===== */
.download-section {
    position: relative;
    /* 바다 그라디언트 */
    background: linear-gradient(180deg, var(--ocean-500) 0%, var(--ocean-700) 100%);
    color: white;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* 태양 반사 효과 */
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(251,191,36,0.2) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 90%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.download-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 40px;
    color: white;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: white;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.store-icon {
    width: 24px;
    height: 24px;
}

.store-text {
    text-align: left;
    line-height: 1.2;
}

.store-text small {
    display: block;
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-muted);
}

.store-text span {
    font-size: 1rem;
}

.download-qr {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.download-qr img {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: var(--radius);
    padding: 8px;
}

.download-qr span {
    font-size: 0.8125rem;
    opacity: 0.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--slate-900);
    color: var(--slate-300);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--slate-800);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
}

.footer-logo span {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--slate-400);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.footer-legal a:hover {
    color: var(--slate-300);
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 1000;
    opacity: 0;
    transition: all var(--transition-slow);
    pointer-events: none;
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition);
}

.floating-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

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

    .hero-grid {
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counselors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 20px;
    }

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

    .hero-desc {
        font-size: 1.125rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-phone {
        width: 240px;
    }

    .floating-card {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .features-grid,
    .counselors-grid {
        grid-template-columns: 1fr;
    }

    .download-title {
        font-size: 1.75rem;
    }
}
