/* ===== DESIGN TOKENS ===== */
:root {
    /* Logo-derived palette */
    --pink: #F2A0B3;
    --pink-dark: #E8809A;
    --pink-light: #FDE8EE;
    --pink-subtle: #FFF5F7;

    --lavender: #B8A2D0;
    --lavender-dark: #9A7FBB;
    --lavender-light: #EDE4F5;
    --lavender-subtle: #F8F4FC;

    --coral: #F2A89E;
    --coral-dark: #E88A7E;
    --coral-light: #FDECE9;
    --coral-subtle: #FFF7F5;

    /* Neutrals */
    --white: #FFFFFF;
    --bg: #FDFBFC;
    --bg-alt: #FAF7F9;
    --surface: #FFFFFF;
    --surface-hover: #FDF9FB;
    --border: #F0E6EC;
    --border-strong: #E0D4DB;

    --text-primary: #3D2E3C;
    --text-secondary: #7A6878;
    --text-tertiary: #A8959F;
    --text-inverse: #FFFFFF;

    /* Gradient */
    --gradient-hero: linear-gradient(135deg, var(--pink-light) 0%, var(--lavender-light) 50%, var(--coral-light) 100%);
    --gradient-text: linear-gradient(135deg, var(--pink-dark) 0%, var(--lavender-dark) 50%, var(--coral-dark) 100%);
    --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--pink-subtle) 100%);
    --gradient-cta: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 60%, var(--coral) 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(61, 46, 60, 0.04);
    --shadow-sm: 0 2px 8px rgba(61, 46, 60, 0.06);
    --shadow-md: 0 4px 16px rgba(61, 46, 60, 0.08);
    --shadow-lg: 0 8px 32px rgba(61, 46, 60, 0.1);
    --shadow-xl: 0 16px 48px rgba(61, 46, 60, 0.12);
    --shadow-glow-pink: 0 4px 24px rgba(242, 160, 179, 0.3);
    --shadow-glow-lavender: 0 4px 24px rgba(184, 162, 208, 0.3);

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

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

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

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
}

/* ===== 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);
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* ===== LAYOUT ===== */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-xs);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    transition: opacity var(--duration) var(--ease);
}

.nav-logo:hover {
    opacity: 0.8;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-links a {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: var(--pink-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background var(--duration) var(--ease);
}

.nav-toggle:hover {
    background: var(--pink-light);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--pink-light);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--lavender-light);
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--coral-light);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: var(--pink);
    top: 20%;
    left: 60%;
    opacity: 0.15;
    animation-delay: -7s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: var(--lavender);
    bottom: 20%;
    right: 20%;
    opacity: 0.15;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
    animation: fadeUp 0.8s var(--ease) both;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    animation: fadeUp 0.8s var(--ease) 0.1s both;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--text-inverse);
    box-shadow: var(--shadow-glow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(242, 160, 179, 0.4);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.btn-ghost:hover {
    background: var(--pink-light);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 1s var(--ease) 0.4s both;
}

.logo-showcase {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    inset: -30px;
    background: var(--gradient-hero);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-logo-img {
    width: 240px;
    height: 240px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    animation: logoFloat 6s ease-in-out infinite;
    background: var(--white);
    padding: 20px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeUp 1s var(--ease) 0.8s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border-strong);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--pink);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ===== FEATURES ===== */
.features {
    padding: var(--space-4xl) 0;
    background: var(--bg-alt);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--lavender-light);
    color: var(--lavender-dark);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cta);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-light);
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-4xl) 0;
}

.cta-card {
    position: relative;
    background: var(--gradient-cta);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
    color: var(--pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.legal-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-cta);
    border-radius: 3px;
    margin: var(--space-lg) auto 0;
}

.legal-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.legal-header .effective-date {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--space-2xl);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: box-shadow var(--duration) var(--ease);
}

.legal-section:hover {
    box-shadow: var(--shadow-sm);
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.legal-section h2 .section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-cta);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.legal-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--text-primary);
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: var(--space-sm) 0 var(--space-md);
    padding-left: var(--space-lg);
}

.legal-section ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    list-style: none;
    padding-left: var(--space-md);
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}

.legal-section a {
    color: var(--lavender-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--lavender-light);
    transition: all var(--duration) var(--ease);
}

.legal-section a:hover {
    color: var(--pink-dark);
    border-bottom-color: var(--pink);
}

.legal-contact {
    background: var(--gradient-hero);
    border: none;
    text-align: center;
}

.legal-contact .contact-email {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    background: var(--surface);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-sm);
    transition: all var(--duration) var(--ease);
}

.legal-contact .contact-email:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== ACCOUNT DELETION PAGE ===== */
.deletion-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.deletion-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--pink);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-cta);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content > strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.step-content span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.data-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.data-item svg {
    flex-shrink: 0;
    color: var(--coral);
}

.notice-box {
    background: var(--coral-light);
    border: 1px solid var(--coral);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.notice-box svg {
    flex-shrink: 0;
    color: var(--coral-dark);
    margin-top: 2px;
}

.notice-box p {
    margin: 0 !important;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.retention-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    bottom: -16px;
    width: 2px;
    height: 16px;
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-badge.primary {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.timeline-badge.secondary {
    background: var(--lavender-light);
    color: var(--lavender-dark);
}

.timeline-item p {
    margin: 0 !important;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--duration) var(--ease);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        padding: var(--space-md);
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
        padding-top: var(--space-2xl);
    }

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

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

    .hero-visual {
        order: -1;
    }

    .logo-showcase {
        width: 220px;
        height: 220px;
    }

    .hero-logo-img {
        width: 160px;
        height: 160px;
        padding: 14px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .cta-card {
        padding: var(--space-3xl) var(--space-xl);
    }

    .legal-section {
        padding: var(--space-lg);
    }

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

    .deletion-step {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 24px;
    }
}
