/* Modern Premium White Theme for Pedestal Landing Page */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F1F3F5;
    
    --text-primary: #0A1128; /* Deep Navy from brand */
    --text-secondary: #495057;
    --text-muted: #868E96;
    
    --accent-green: #00FF88;
    --accent-purple: #B197FC;
    --accent-yellow: #FFD43B;
    --accent-blue: #339AF0;
    
    --border-soft: #E9ECEF;
    --border-bold: #0A1128;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --container-width: 1100px;
}

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

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-soft);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-green);
    border: 3px solid var(--border-bold);
}

.logo h1 {
    font-size: 24px;
    letter-spacing: -1px;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-primary {
    padding: 10px 20px;
    background: var(--text-primary);
    color: white !important;
    border-radius: var(--radius-md);
    border: 2px solid var(--text-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary) !important;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 100px 0;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent-purple);
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    font-weight: 900;
    font-size: 11px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.text-accent {
    color: var(--accent-green);
    text-shadow: 2px 2px 0px var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 450px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-large {
    padding: 18px 36px;
    background: var(--text-primary);
    color: white;
    font-weight: 900;
    border-radius: 40px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(10, 17, 40, 0.2);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--border-bold);
    width: 200px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card h3 {
    margin: 12px 0 4px;
    font-size: 24px;
}

.card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.card-1 {
    top: 50px;
    left: 20%;
}

.card-2 {
    bottom: 50px;
    right: 10%;
}

.shadow-float {
    box-shadow: 8px 8px 0px var(--text-primary);
}

.icon-green { color: var(--accent-green); }
.icon-purple { color: var(--accent-purple); }

/* Features Grid */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -1.5px;
}

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

.feature-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-soft);
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: var(--text-primary);
    background: white;
    transform: translateY(-8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.bg-green { background: #37B24D; }
.bg-blue { background: #339AF0; }
.bg-purple { background: #7048E8; }
.bg-yellow { background: #F59F00; }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Privacy & Deletion Section */
.privacy-section {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.privacy-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 3px solid var(--border-bold);
    box-shadow: 12px 12px 0 var(--border-bold);
    padding: 64px;
    max-width: 800px;
    margin: 0 auto;
}

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

.icon-shield {
    color: var(--accent-green);
    width: 32px;
    height: 32px;
}

.privacy-header h2 {
    font-size: 32px;
}

.privacy-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Deletion Template Styling */
.deletion-template {
    background: var(--bg-primary);
    padding: 40px;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-lg);
}

.deletion-template h3 {
    font-size: 24px;
    color: #E03131; /* Alert Red */
    margin-bottom: 16px;
}

.deletion-template p {
    font-size: 16px;
    margin-bottom: 24px;
}

.steps {
    list-style: none;
    margin-bottom: 32px;
}

.steps li {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--text-primary);
    margin-bottom: 8px;
    font-size: 15px;
}

.bullet-list {
    margin-left: 20px;
    margin-bottom: 24px;
}

.bullet-list li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.note {
    background: #FFF9DB;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 32px;
}

.footer-contact {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
}

.footer-contact a {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Footer Header Footer Bottom */
footer {
    padding: 60px 0;
    border-top: 2px solid var(--border-soft);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.socials {
    display: flex;
    gap: 24px;
}

.socials a:hover {
    color: var(--text-primary);
}

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

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legal-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    border: 3px solid var(--border-bold);
    border-radius: var(--radius-md);
    font-weight: 800;
    box-shadow: 6px 6px 0 var(--border-bold);
    transition: all 0.2s ease;
}

.legal-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--border-bold);
}

.legal-btn.btn-danger {
    background: #FFF5F5;
    color: #E03131;
}

.legal-btn.btn-danger:hover {
    background: #E03131;
    color: white;
}

/* Page Layouts & Separation Styles */
.bg-secondary-page {
    background-color: var(--bg-secondary);
}

.page-main {
    padding: 80px 0;
    min-height: calc(100vh - 160px);
}

.legal-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 3px solid var(--border-bold);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-soft);
}

.legal-header h1 {
    font-size: 48px;
    margin-bottom: 8px;
}

.legal-header .last-updated {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.legal-header .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.legal-body section {
    margin-bottom: 40px;
}

.legal-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.legal-body p {
    font-size: 16px;
    color: var(--text-secondary);
}

.icon-shield.lg, .icon-danger.lg {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.icon-danger {
    color: #E03131;
}

.text-blue {
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: underline;
}

.deletion-template {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-soft);
    padding: 32px;
    margin-bottom: 40px;
}

.template-header h3 {
    font-size: 22px;
    color: #E03131;
    margin-bottom: 8px;
}

.template-intro {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 500;
}

.what-happens h4 {
    font-size: 18px;
    margin: 24px 0 12px;
}

.note-box {
    margin-top: 32px;
    background: #FFF9DB;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.contact-footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 2px solid var(--border-soft);
}

.contact-footer p {
    font-size: 16px;
    font-weight: 700;
}

.contact-footer a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    font-weight: 800;
    color: var(--text-primary);
}


/* Responsivity */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-visual {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .privacy-card {
        padding: 32px;
    }
    .legal-card {
        padding: 32px;
        margin: 0 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 48px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
