/* ============================================================
   landing.css – Uvoria Smart Mail marketing website
   Kleurenpalet afgestemd op Uvoria logo:
     Paars        #6B2FD0  (primair)
     Dieppaars    #4A1FA8
     Magenta/Roze #E040A0
     Oranje       #FF6B00
     Cyaan        #00C8E0
     Groen-aqua   #00C853
     Donkerblauw  #1B3FA0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --purple:      #6B2FD0;
    --purple-dark: #4A1FA8;
    --magenta:     #E040A0;
    --orange:      #FF6B00;
    --cyan:        #00C8E0;
    --green:       #00C853;
    --navy:        #1B3FA0;

    /* Gradients uit het logo */
    --grad-main:   linear-gradient(135deg, #6B2FD0 0%, #E040A0 50%, #FF6B00 100%);
    --grad-cool:   linear-gradient(135deg, #1B3FA0 0%, #00C8E0 100%);
    --grad-warm:   linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
    --grad-hero:   linear-gradient(135deg, #0f0528 0%, #2a1060 40%, #1B3FA0 100%);

    --dark:   #0f0528;
    --text:   #2d2040;
    --muted:  #7c6f99;
    --bg:     #faf8ff;
    --white:  #ffffff;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(107,47,208,0.12);
    --shadow-hover: 0 16px 56px rgba(107,47,208,0.22);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Navigatie ──────────────────────────────────────────────── */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(107,47,208,0.10);
    padding: 0 5%;
}
.nav-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.95rem; color: var(--text); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--purple); text-decoration: none; }
.btn-nav {
    background: var(--grad-main);
    color: #fff !important; padding: 10px 24px; border-radius: 50px;
    font-weight: 700 !important; font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(224,64,160,0.30);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(224,64,160,0.40); text-decoration: none !important; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    background: var(--grad-hero);
    color: #fff;
    padding: 110px 5% 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(224,64,160,0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(0,200,224,0.20) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 90%, rgba(255,107,0,0.15) 0%, transparent 45%);
    pointer-events: none;
}
/* decoratieve bollen */
.hero::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,47,208,0.18) 0%, transparent 70%);
    top: -200px; right: -150px;
    pointer-events: none;
}
.hero-content { position: relative; max-width: 880px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
    padding: 7px 20px; border-radius: 50px; font-size: 0.85rem; margin-bottom: 28px;
    backdrop-filter: blur(8px); font-weight: 600;
    letter-spacing: 0.02em;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--grad-warm);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900; line-height: 1.10; margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.hero h1 .grad-text {
    background: linear-gradient(90deg, #FF9D00, #E040A0, #00C8E0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem; color: rgba(255,255,255,0.72);
    max-width: 580px; margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
    background: var(--grad-main);
    color: #fff; padding: 17px 40px; border-radius: 50px;
    font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 8px 32px rgba(224,64,160,0.40);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block; white-space: nowrap;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(224,64,160,0.50); text-decoration: none; }
.btn-hero-secondary {
    background: rgba(255,255,255,0.10); color: #fff;
    padding: 17px 40px; border-radius: 50px; font-weight: 700;
    border: 1.5px solid rgba(255,255,255,0.28); font-size: 1.05rem;
    transition: background 0.2s; white-space: nowrap;
    backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); text-decoration: none; }
.hero-trust {
    margin-top: 52px; font-size: 0.88rem; color: rgba(255,255,255,0.45);
    display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item svg { opacity: 0.7; }
.hero-trust-sep { opacity: 0.25; }

/* ── Section wrapper ──────────────────────────────────────── */
.section { padding: 88px 5%; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title .eyebrow {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 900;
    color: var(--dark); margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.section-title p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Features ──────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.feature-card {
    background: var(--white); border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { opacity: 1; }
.fc-purple::before  { background: linear-gradient(90deg, #6B2FD0, #E040A0); }
.fc-cyan::before    { background: linear-gradient(90deg, #00C8E0, #6B2FD0); }
.fc-orange::before  { background: linear-gradient(90deg, #FF6B00, #FFD700); }
.fc-magenta::before { background: linear-gradient(90deg, #E040A0, #6B2FD0); }
.fc-green::before   { background: linear-gradient(90deg, #00C853, #00C8E0); }
.fc-navy::before    { background: linear-gradient(90deg, #1B3FA0, #6B2FD0); }

.feature-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.fi-purple  { background: linear-gradient(135deg, rgba(107,47,208,0.12), rgba(224,64,160,0.12)); }
.fi-cyan    { background: linear-gradient(135deg, rgba(0,200,224,0.12), rgba(27,63,160,0.10)); }
.fi-orange  { background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,215,0,0.12)); }
.fi-magenta { background: linear-gradient(135deg, rgba(224,64,160,0.12), rgba(107,47,208,0.12)); }
.fi-green   { background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(0,200,224,0.10)); }
.fi-navy    { background: linear-gradient(135deg, rgba(27,63,160,0.12), rgba(107,47,208,0.12)); }

.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────────── */
.plans-bg { background: linear-gradient(180deg, #f3eeff 0%, var(--bg) 100%); }
.billing-toggle {
    display: flex; justify-content: center; gap: 0; margin: 0 auto 48px;
    background: rgba(107,47,208,0.08); border-radius: 50px; padding: 5px;
    width: fit-content;
}
.billing-toggle button {
    padding: 10px 28px; border: none; background: none; cursor: pointer;
    border-radius: 50px; font-size: 0.93rem; font-weight: 600; color: var(--muted);
    transition: all 0.22s; font-family: inherit;
}
.billing-toggle button.active {
    background: var(--white); color: var(--purple);
    box-shadow: 0 2px 12px rgba(107,47,208,0.18);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
    align-items: stretch;
}
.plan-card {
    background: var(--white); border-radius: 20px;
    padding: 40px 34px;
    box-shadow: var(--shadow);
    position: relative; transition: transform 0.25s, box-shadow 0.25s;
    border: 1.5px solid transparent;
    display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.plan-card.popular {
    border-color: var(--purple);
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--grad-main) border-box;
}
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--grad-main);
    color: #fff; padding: 5px 22px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 800; white-space: nowrap;
    letter-spacing: 0.04em; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(224,64,160,0.35);
}
.plan-name {
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.10em;
    font-weight: 700; margin-bottom: 6px;
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.plan-headline { font-size: 1.35rem; font-weight: 900; color: var(--dark); margin-bottom: 24px; }
.plan-price { font-size: 3.2rem; font-weight: 900; color: var(--purple); line-height: 1; }
.plan-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 10px; font-weight: 700; }
.plan-price sub { font-size: 0.95rem; color: var(--muted); font-weight: 400; }
.plan-yearly-save {
    font-size: 0.82rem; font-weight: 700; margin: 8px 0 22px; min-height: 18px;
    background: var(--grad-warm);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.plan-divider { border: none; border-top: 1px solid rgba(107,47,208,0.10); margin: 22px 0; }
.plan-features { list-style: none; margin-bottom: 30px; flex: 1; }
.plan-features li {
    padding: 8px 0; font-size: 0.92rem; color: var(--text);
    display: flex; align-items: flex-start; gap: 10px;
}
.plan-check { flex-shrink: 0; margin-top: 2px; }
.plan-features li.inherit-item { color: var(--muted); }
.btn-plan {
    width: 100%; padding: 15px; border: none; border-radius: 50px;
    background: var(--grad-main);
    color: #fff; font-size: 0.98rem; font-weight: 800;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    display: block; text-align: center; font-family: inherit;
    box-shadow: 0 4px 20px rgba(224,64,160,0.25);
}
.btn-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,64,160,0.38); text-decoration: none; }
.btn-plan.outline {
    background: none; border: 2px solid var(--purple); color: var(--purple);
    box-shadow: none;
}
.btn-plan.outline:hover { background: rgba(107,47,208,0.06); }
.plan-note { text-align: center; margin-top: 12px; font-size: 0.81rem; color: var(--muted); }

/* ── How it works ──────────────────────────────────────────── */
.steps-bg { background: linear-gradient(135deg, #0f0528 0%, #1B3FA0 100%); }
.steps-bg .section-title h2 { color: #fff; }
.steps-bg .section-title p { color: rgba(255,255,255,0.60); }
.steps-bg .section-title .eyebrow {
    background: linear-gradient(90deg, #FF9D00, #E040A0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 4px; }
.step {
    text-align: center; padding: 40px 28px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px; border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s;
}
.step:hover { background: rgba(255,255,255,0.08); }
.step-num {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--grad-main);
    color: #fff; font-size: 1.5rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 24px rgba(224,64,160,0.38);
}
.step h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: var(--grad-main);
    color: #fff; text-align: center; padding: 96px 5%;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 40%, rgba(0,0,0,0.10) 0%, transparent 50%);
    pointer-events: none;
}
.cta-banner h2 { position: relative; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-banner p { position: relative; font-size: 1.12rem; opacity: 0.85; margin-bottom: 40px; }
.btn-cta-white {
    position: relative;
    background: #fff; color: var(--purple);
    padding: 18px 48px; border-radius: 50px;
    font-weight: 900; font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,0.25); text-decoration: none; color: var(--purple-dark); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: #0b0220; color: rgba(255,255,255,0.50); padding: 56px 5% 32px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 310px; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.50); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.50); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .hero { padding: 72px 5% 60px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
    .hero-trust { flex-direction: column; gap: 10px; }
    .hero-trust-sep { display: none; }
}
