/* ========================================
   Northsites - Main Stylesheet
   ======================================== */

/* CSS Variables - Blauw/Paars Thema */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;

    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;

    --accent-blue: #2563eb;
    --accent-blue-dark: #1e40af;
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);

    --success: #10B981;
    --whatsapp: #25D366;

    --border-color: #e5e7eb;
    --border-radius: 12px;
    --border-radius-lg: 20px;

    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;

    --container-width: 1200px;
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

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

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-full {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-action {
    background: var(--accent-gradient);
    color: #ffffff;
}

.badge-price {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-timer {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Check Icon */
.check-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

/* Ensure all sections appear above global particles */
.hero, .features, .pricing, .contact, .footer {
    position: relative;
    z-index: 1;
}

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

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

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #1f2937;
    transition: var(--transition);
}

/* ========================================
   Global Floating Particles
   ======================================== */
.global-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400%;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
}

.global-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    opacity: 0.25;
    animation: floatGlobal 25s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3), 0 0 30px rgba(124, 58, 237, 0.2);
}

.global-particles .particle:nth-child(1) { left: 3%; top: 10%; animation-delay: 0s; width: 15px; height: 15px; }
.global-particles .particle:nth-child(2) { left: 12%; top: 45%; animation-delay: -3s; width: 20px; height: 20px; }
.global-particles .particle:nth-child(3) { left: 25%; top: 75%; animation-delay: -6s; width: 12px; height: 12px; }
.global-particles .particle:nth-child(4) { left: 40%; top: 30%; animation-delay: -9s; width: 18px; height: 18px; }
.global-particles .particle:nth-child(5) { left: 55%; top: 85%; animation-delay: -12s; width: 14px; height: 14px; }
.global-particles .particle:nth-child(6) { left: 68%; top: 15%; animation-delay: -15s; width: 22px; height: 22px; }
.global-particles .particle:nth-child(7) { left: 78%; top: 60%; animation-delay: -18s; width: 16px; height: 16px; }
.global-particles .particle:nth-child(8) { left: 88%; top: 40%; animation-delay: -21s; width: 20px; height: 20px; }
.global-particles .particle:nth-child(9) { left: 95%; top: 90%; animation-delay: -4s; width: 12px; height: 12px; }
.global-particles .particle:nth-child(10) { left: 8%; top: 70%; animation-delay: -8s; width: 18px; height: 18px; }
.global-particles .particle:nth-child(11) { left: 50%; top: 55%; animation-delay: -14s; width: 14px; height: 14px; }
.global-particles .particle:nth-child(12) { left: 35%; top: 95%; animation-delay: -20s; width: 16px; height: 16px; }

@keyframes floatGlobal {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-40px) translateX(20px);
    }
    50% {
        transform: translateY(-20px) translateX(-15px);
    }
    75% {
        transform: translateY(-50px) translateX(25px);
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

/* Animated Gradient Background */
.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        -45deg,
        #f8fafc,
        #e8f0f8,
        #dce8f3,
        #f0f5fa,
        #e5eef7
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
}

.particle:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; width: 20px; height: 20px; }
.particle:nth-child(2) { left: 15%; top: 55%; animation-delay: -2s; width: 30px; height: 30px; opacity: 0.5; }
.particle:nth-child(3) { left: 30%; top: 25%; animation-delay: -4s; width: 15px; height: 15px; }
.particle:nth-child(4) { left: 45%; top: 65%; animation-delay: -6s; width: 35px; height: 35px; opacity: 0.4; }
.particle:nth-child(5) { left: 60%; top: 20%; animation-delay: -8s; width: 25px; height: 25px; }
.particle:nth-child(6) { left: 70%; top: 50%; animation-delay: -10s; width: 18px; height: 18px; }
.particle:nth-child(7) { left: 80%; top: 30%; animation-delay: -12s; width: 28px; height: 28px; opacity: 0.5; }
.particle:nth-child(8) { left: 88%; top: 70%; animation-delay: -3s; width: 22px; height: 22px; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-50px) translateX(25px) scale(1.1);
    }
    50% {
        transform: translateY(-25px) translateX(-15px) scale(0.95);
    }
    75% {
        transform: translateY(-60px) translateX(30px) scale(1.05);
    }
}

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

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 640px;
    width: 100%;
    min-width: 0;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

/* Hero Typing Animation */
.hero-typing-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    justify-self: center;
    width: 100%;
}

.hero-typing {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    white-space: nowrap;
}

.typing-prefix {
    color: var(--text-primary);
}

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

.typing-cursor {
    color: var(--accent-blue);
    animation: blink 1s infinite;
    font-weight: 400;
    margin-left: -0.4rem;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-typing-wrapper .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    background: var(--bg-card);
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

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

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

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header .badge {
    margin-bottom: 1rem;
}

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

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

.maintenance-callout {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.maintenance-callout p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.maintenance-callout strong {
    color: var(--accent-blue);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn-full {
    margin-top: auto;
}

.pricing-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    line-height: 1.1;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.price-tax {
    color: var(--text-muted);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    opacity: 0.8;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-timer {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--border-radius);
}

.pricing-timer p {
    color: var(--success);
    font-size: 0.9375rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.contact-icon.whatsapp {
    background: var(--whatsapp);
}

.contact-item h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item a {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-social .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer-social .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

/* ========================================
   Privacy Policy Page
   ======================================== */
.privacy-content {
    padding: 140px 0 100px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.privacy-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.privacy-section h3 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 1.25rem 0 0.75rem;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

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

.privacy-section a:hover {
    color: var(--accent-blue-dark);
}

.privacy-contact-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.privacy-contact-box p {
    margin-bottom: 0.5rem;
}

.privacy-contact-box p:last-child {
    margin-bottom: 0;
}

/* Privacy responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 100px 0 60px;
    }

    .privacy-wrapper {
        padding: 2rem 1.5rem;
    }

    .privacy-wrapper h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .privacy-wrapper {
        padding: 1.5rem 1rem;
    }

    .privacy-wrapper h1 {
        font-size: 1.75rem;
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-typing-wrapper {
        justify-self: center;
    }

    .hero-typing {
        font-size: 1.75rem;
    }

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

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

    .nav-links,
    .nav .btn-outline {
        display: none;
    }

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

    .hero {
        padding-top: 100px;
    }

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

    .hero-typing {
        font-size: 1.25rem;
    }

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

    .pricing-grid,
    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

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

    .hero-form button {
        width: 100%;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   Accessibility - Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .global-particles,
    .hero-particles {
        display: none;
    }
}
