:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #eef2ff;
    --secondary: #ffd700;
    --text-main: #111827;
    --text-muted: #4b5563;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --success: #10b981;
    --border: #e5e7eb;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.brand-logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.center {
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.hero .grid {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 800px;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

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

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.brand-logo {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-size: 1.5rem;
    font-weight: 100;
    color: rgb(17 24 39);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand-bold {
    font-weight: 700;
}

.brand-logo.white {
    color: #ffffff;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    animation: fadeInRight 1s ease-out 0.5s both, textShimmer 3s ease-in-out 2s infinite;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textShimmer {
    0%, 100% {
        color: var(--text-main);
    }
    50% {
        color: var(--primary);
    }
}

.nav-actions .btn-primary {
    animation: fadeInRight 1s ease-out 0.7s both, buttonPulse 2s ease-in-out 2.5s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.nav-actions .btn-primary:hover {
    animation: none;
}

@media (max-width: 768px) {
    .nav-cta-text {
        display: none;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

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

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--primary);
    padding: 0;
}

.btn-link:hover {
    padding-left: 0.5rem;
}

/* Sections */
section {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.bg-light {
    background: var(--bg-light);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.badge-secondary {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(245, 243, 255, 0.65) 50%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        word-break: keep-all;
        margin-bottom: 1rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .hero-actions {
        width: 100%;
        justify-content: center !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
}

.stats {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

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

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-unit {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-value {
        font-size: 2.75rem;
    }

    .stat-unit {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Features */
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.feature-card {
    padding: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-icon.feature-icon-image {
    background: transparent !important;
    padding: 0;
    overflow: hidden;
}

.feature-icon.feature-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.bg-blue {
    background: #3b82f6;
}

.bg-gold {
    background: var(--secondary);
}

.bg-teal {
    background: #14b8a6;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Preview Section - Two Column Layout */
.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 1200px) {
    .preview-grid {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.preview-content {
    max-width: 600px;
}

@media (max-width: 1024px) {
    .preview-content {
        max-width: 100%;
        text-align: center;
    }
}

.preview-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .preview-content h2 {
        font-size: 2.25rem;
        line-height: 1.3;
    }
}

.preview-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .preview-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Feature Highlights - Vertical List */
.feature-highlights-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    animation: slideInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.highlight-item:nth-child(1) {
    animation-delay: 0.2s;
}

.highlight-item:nth-child(2) {
    animation-delay: 0.4s;
}

.highlight-item:nth-child(3) {
    animation-delay: 0.6s;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

@media (max-width: 1024px) {
    .highlight-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }

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

.highlight-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-icon-image {
    background: transparent !important;
    padding: 0;
    overflow: hidden;
}

.highlight-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.highlight-item:nth-child(1) .highlight-icon {
    background: transparent;
}

.highlight-item:nth-child(2) .highlight-icon {
    background: transparent;
}

.highlight-item:nth-child(3) .highlight-icon {
    background: transparent;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Mockup Container */
.preview-visual {
    position: relative;
    align-self: end;
}

@media (max-width: 1024px) {
    .preview-visual {
        align-self: center;
    }
}

.mockup-container {
    position: relative;
    width: 100%;
}

@media (max-width: 1024px) {
    .mockup-container {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.mockup-desktop {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(50, 50, 93, 0.25);
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-mobile {
    position: absolute;
    bottom: -30px;
    right: -50px;
    width: 35%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid #f8fafc;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1200px) {
    .mockup-mobile {
        width: 30%;
        bottom: -20px;
        right: -30px;
    }
}

@media (max-width: 1024px) {
    .mockup-mobile {
        position: static;
        width: 60%;
        max-width: 300px;
        margin: 3rem auto 0;
        display: block;
        border: 3px solid #f8fafc;
    }
}

@media (max-width: 768px) {
    .mockup-mobile {
        width: 80%;
        max-width: 280px;
        margin: 2rem auto 0;
    }
}

.mockup-container:hover .mockup-desktop {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.35);
}

.mockup-container:hover .mockup-mobile {
    transform: translateY(-15px) scale(1.05);
}

@media (max-width: 1024px) {
    .mockup-container:hover .mockup-desktop {
        transform: translateY(-5px);
    }

    .mockup-container:hover .mockup-mobile {
        transform: translateY(-5px);
    }
}

/* Calculator CTA */
.calc-box {
    position: relative;
    background: linear-gradient(135deg, #2d2a6e 0%, #312e81 100%);
    color: white;
    padding: 5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 40px 100px -20px rgba(79, 70, 229, 0.4);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.calc-box::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background:
        linear-gradient(90deg, rgba(79, 70, 229, 0.05) 1px, transparent 1px) 0 0 / 100px 100%,
        radial-gradient(circle at center, rgba(0, 198, 255, 0.2) 0%, transparent 70%);
    filter: blur(2px);
    pointer-events: none;
    transform: rotate(-15deg);
}

.calc-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.calc-box p {
    opacity: 0.8;
    margin-bottom: 3rem;
}

.simple-calc {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .simple-calc {
        flex-direction: column;
        gap: 0.75rem;
    }

    .simple-calc input,
    .simple-calc button {
        width: 100%;
    }
}

.calc-box input {
    flex: 1;
    padding: 1.25rem 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.calc-box input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.calc-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Simulator Result Styles */
.calc-result {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-header {
    margin-bottom: 3rem;
}

.result-header .badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.result-header h4 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.total-amount {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.05em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.result-item.highlight {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(0, 198, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.result-item.highlight .item-value {
    color: #00C6FF;
    /* Vibrant Point Color */
}

.result-item.highlight .item-label i {
    color: #00C6FF;
}

.result-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.item-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.item-label i {
    width: 16px;
    height: 16px;
}

.item-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.result-notion {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.result-notion b {
    color: white;
}

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

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

@media (max-width: 768px) {
    .total-amount {
        font-size: 2.25rem;
    }

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

    .calc-box {
        padding: 3rem 1.25rem;
    }

    .calc-box h3 {
        font-size: 1.75rem;
    }

    .calc-box p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .simple-calc {
        flex-direction: column;
        gap: 0.75rem;
    }

    .calc-result {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .result-header {
        margin-bottom: 2rem;
    }
}

/* Final CTA */
.final-cta {
    position: relative;
    background: transparent;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/wave-pattern-new.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: grayscale(100%) brightness(1.3);
    animation: waveMove 20s ease-in-out infinite;
}

@keyframes waveMove {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    50% {
        transform: scale(1.1) translateX(-20px) translateY(-20px);
    }
    100% {
        transform: scale(1) translateX(0) translateY(0);
    }
}

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

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    text-shadow: none;
}

.final-cta .actions {
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: #0f172a;
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .policy-links {
        justify-content: center !important;
    }
}

.footer-brand .logo-text {
    font-size: 2rem;
    color: white;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.policy-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-policy {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-policy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid #1e293b;
    color: #475569;
    font-size: 0.9rem;
}

/* Policy Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: white;
    border-radius: 24px;
    z-index: 2001;
    display: none;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.policy-modal.active {
    display: flex;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #1e293b;
}

.modal-content {
    padding: 2rem;
    overflow-y: auto;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
}

.modal-content .date {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.modal-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: #1e293b;
}

.modal-content p {
    margin-bottom: 1rem;
}