/* Voz Landing Page Styles */

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

:root {
    --color-primary: #22c55e;
    --color-primary-dark: #16a34a;
    --color-primary-light: #4ade80;
    --color-bg: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-bg-card: rgba(31, 41, 55, 0.8);
    --color-text: #e5e7eb;
    --color-text-secondary: #9ca3af;
    --color-border: rgba(148, 163, 184, 0.3);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 18px;
}

.cta-button.glow {
    animation: glow 2s infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(34, 197, 94, 0.6);
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
}

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

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, var(--color-text));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Social Proof */
.social-proof {
    padding: 40px 0;
    background: rgba(34, 197, 94, 0.1);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.proof-text {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-secondary);
}

.proof-text strong {
    color: var(--color-primary);
}

/* Sections */
.privacy-section,
.features-section,
.pricing-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Privacy Humor Section */
.privacy-humor {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 60px;
    text-align: center;
}

.privacy-humor h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.policy-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 60px;
    margin-bottom: 32px;
}

.policy-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.paper-single {
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.paper-stack {
    position: relative;
    width: 100px;
    height: 120px;
}

.paper {
    position: absolute;
    width: 80px;
    height: 100px;
    background: var(--color-text-secondary);
    border: 2px solid var(--color-border);
    border-radius: 4px;
}

.paper:nth-child(1) {
    bottom: 0;
    left: 10px;
    transform: rotate(-3deg);
    opacity: 0.8;
}

.paper:nth-child(2) {
    bottom: 8px;
    left: 12px;
    transform: rotate(2deg);
    opacity: 0.85;
}

.paper:nth-child(3) {
    bottom: 16px;
    left: 8px;
    transform: rotate(-1deg);
    opacity: 0.9;
}

.paper:nth-child(4) {
    bottom: 24px;
    left: 14px;
    transform: rotate(3deg);
    opacity: 0.95;
}

.paper:nth-child(5) {
    bottom: 32px;
    left: 10px;
    transform: rotate(-2deg);
}

.vs {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    align-self: center;
}

.policy-label {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.policy-label strong {
    font-size: 24px;
    color: var(--color-text);
    display: block;
    margin: 8px 0;
}

.policy-stack.ours .policy-label strong {
    color: var(--color-primary);
}

.humor-note {
    font-size: 18px;
    color: var(--color-text-secondary);
    font-style: italic;
}

.humor-note strong {
    color: var(--color-primary);
    font-style: normal;
}

/* Privacy Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin-bottom: 60px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: rgba(15, 23, 42, 0.8);
    color: var(--color-text);
    font-weight: 600;
}

.comparison-table .highlight-col {
    background: rgba(34, 197, 94, 0.1);
    position: relative;
}

.comparison-table .highlight-col::before {
    content: '⭐ Best Choice';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.comparison-table .yes {
    color: #ef4444;
}

.comparison-table .no {
    color: var(--color-primary);
}

.comparison-table .warn {
    color: #f59e0b;
}

/* Privacy Steps */
.privacy-explainer {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
}

.privacy-explainer h3 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.privacy-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

.step-arrow {
    font-size: 32px;
    color: var(--color-primary);
}

.privacy-note {
    text-align: center;
    color: var(--color-text-secondary);
}

.privacy-note a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--color-primary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--color-text-secondary);
    font-size: 14px;
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Pricing */
.pricing-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
}

.pricing-card.old {
    opacity: 0.7;
}

.pricing-card.highlight {
    border: 2px solid var(--color-primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.price-breakdown {
    margin-bottom: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 18px;
    margin-top: 8px;
}

.total-price {
    color: var(--color-primary);
}

.price-annual {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.price-hero {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.price-period {
    font-size: 16px;
    color: var(--color-text-secondary);
}

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

.price-features li {
    padding: 12px 0;
    font-size: 16px;
}

.price-note {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

.pricing-arrow {
    font-size: 48px;
    color: var(--color-primary);
}

.savings-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.savings-banner p {
    font-size: 24px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.05));
}

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

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.install-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.install-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg-card);
    padding: 16px 24px;
    border-radius: 8px;
}

.step-num {
    background: var(--color-primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta-note {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

/* Footer */
.footer {
    padding: 60px 0 24px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-col h4 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.footer-col a {
    display: block;
    padding: 8px 0;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .nav {
        display: none;
    }

    .pricing-comparison {
        flex-direction: column;
    }

    .pricing-arrow {
        transform: rotate(90deg);
    }

    .install-steps {
        flex-direction: column;
        align-items: stretch;
    }
}