/* ZenvyWeb marketing — light theme */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #6d28d9;
    --primary-light: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-soft: #ede9fe;
    --accent: #0891b2;
    --accent2: #d97706;
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --border: #e2e8f0;
    --border-hover: #a78bfa;
    --text: #0f172a;
    --text-muted: #475569;
    --text-faint: #64748b;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px -12px rgba(109, 40, 217, 0.18);
    --shadow-glow: 0 0 0 1px rgba(109, 40, 217, 0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 20% 10%, rgba(109, 40, 217, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(8, 145, 178, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(167, 139, 250, 0.35) 0%, transparent 70%); top: -180px; left: -80px; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%); top: 120px; right: -120px; animation-delay: -3s; }
.orb-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%); bottom: 80px; left: 25%; animation-delay: -5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.03); }
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links li.active a {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav-sign {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.btn-nav-sign:hover { color: var(--text); background: var(--bg-muted); }
.btn-nav-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 1.35rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.28);
}
.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(109, 40, 217, 0.35);
    color: #fff;
}

.main-wrapper { position: relative; z-index: 1; padding-top: 72px; }

.hero {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 3.5rem 2rem 4.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #faf5ff 0%, #f8fafc 35%, #ffffff 70%);
}
.hero-grid-line {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 75% at 30% 40%, black 25%, transparent 100%);
    pointer-events: none;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-blob-1 {
    width: 320px; height: 320px;
    background: rgba(167, 139, 250, 0.35);
    top: 10%; left: -5%;
}
.hero-blob-2 {
    width: 280px; height: 280px;
    background: rgba(34, 211, 238, 0.2);
    bottom: 15%; right: 5%;
}
.hero .container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd6fe;
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
    box-shadow: 0 2px 12px rgba(109, 40, 217, 0.08);
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.9); } }

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
    color: var(--text);
}
.hero h1 .gradient-text {
    background: linear-gradient(120deg, #6d28d9 0%, #7c3aed 40%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-h1-sub {
    display: block;
    font-size: 0.55em;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: -0.02em;
    margin-top: 0.15em;
    -webkit-text-fill-color: var(--text-muted);
}
.hero-lead,
.hero p.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.btn-primary-lg {
    padding: 0.95rem 1.75rem;
    font-size: 1rem;
}
.hero-checklist {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hero-checklist li {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-checklist i { color: #16a34a; font-size: 0.8rem; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 1.85rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.28);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(109, 40, 217, 0.35);
    color: #fff;
    text-decoration: none;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 1.85rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    box-shadow: var(--shadow);
}
.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: #cbd5e1;
    color: var(--primary-dark);
    text-decoration: none;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.75rem;
}
.hero-stat-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.45rem 0.9rem;
    box-shadow: var(--shadow);
}
.hero-stat-pill .stat-num {
    font-size: 0.95rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-dark);
    line-height: 1;
}
.hero-stat-pill .stat-label {
    font-size: 0.72rem;
    color: var(--text-faint);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

/* Hero dashboard mockup */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 1rem 0;
}
.hero-visual-glow {
    position: absolute;
    width: 90%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(109, 40, 217, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-mockup {
    width: 100%;
    max-width: 520px;
    transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
    animation: mockupFloat 7s ease-in-out infinite;
}
@keyframes mockupFloat {
    0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateY(0); }
    50% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}
.mockup-browser {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 48px -12px rgba(109, 40, 217, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.mockup-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 0.75rem;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e2e8f0;
}
.db-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.db-dot:nth-child(1) { background: #ff5f57; }
.db-dot:nth-child(2) { background: #ffbd2e; }
.db-dot:nth-child(3) { background: #28c840; }
.mockup-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0.5rem;
    padding: 0.35rem 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
}
.mockup-url i { font-size: 0.55rem; color: #16a34a; }

.mockup-app {
    display: grid;
    grid-template-columns: 48px 1fr;
    min-height: 280px;
    background: #f8fafc;
}
.mockup-sidebar {
    background: linear-gradient(180deg, #5b21b6, #6d28d9);
    padding: 0.65rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.mockup-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
}
.mockup-nav {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
}
.mockup-nav.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.mockup-main { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.mockup-greeting { font-size: 0.75rem; font-weight: 700; color: #0f172a; }
.mockup-sub { font-size: 0.6rem; color: #64748b; margin-top: 2px; }
.mockup-btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    white-space: nowrap;
}
.mockup-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.mockup-metric {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    position: relative;
}
.mm-label { display: block; font-size: 0.55rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.mm-val { display: block; font-size: 0.95rem; font-weight: 800; color: #0f172a; margin-top: 2px; font-family: 'Plus Jakarta Sans', sans-serif; }
.mm-trend {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 6px;
}
.mm-trend.up { color: #15803d; background: #dcfce7; }

.mockup-builder {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.5rem;
    min-height: 120px;
}
.mockup-builder-label {
    font-size: 0.58rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mockup-blocks { display: flex; flex-direction: column; gap: 0.35rem; }
.mock-block { border-radius: 6px; background: linear-gradient(90deg, #ede9fe, #f1f5f9); }
.mock-block--hero { height: 36px; background: linear-gradient(135deg, #c4b5fd 0%, #a5f3fc 100%); }
.mock-block-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
.mock-block--sm { height: 22px; }
.mock-block--cta {
    height: 20px;
    width: 55%;
    margin: 0 auto;
    background: linear-gradient(90deg, #7c3aed, #0891b2);
    opacity: 0.85;
}

.floating-badge {
    position: absolute;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.55rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    z-index: 2;
    animation: floatBadge 5s ease-in-out infinite;
}
.floating-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.floating-badge strong { font-size: 0.78rem; color: #0f172a; font-weight: 700; }
.floating-badge small { font-size: 0.65rem; color: #64748b; font-weight: 500; }
.floating-badge--publish { top: 4%; left: -4%; animation-delay: -1s; }
.floating-badge--speed { bottom: 8%; right: -2%; animation-delay: -2.5s; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.badge-icon-wrap--green { background: #dcfce7; color: #16a34a; }
.badge-icon-wrap--purple { background: #ede9fe; color: #6d28d9; }

/* Legacy stat classes (used elsewhere) */
.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-dark);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-faint);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

section { position: relative; z-index: 1; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5.5rem 0; }
.section-alt { background: var(--bg-subtle); }
.section-alt-tint { background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-soft);
    border: 1px solid #ddd6fe;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text);
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow);
}
.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 48px; height: 48px;
    background: var(--primary-soft);
    border: 1px solid #ddd6fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.feature-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border) 25%, var(--border) 75%, transparent); }

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.75rem 2.5rem;
}
.logo-cloud span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-box .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-dark);
}
.stat-box .lbl { font-size: 0.78rem; color: var(--text-faint); margin-top: 0.35rem; font-weight: 500; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    counter-reset: step;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.step-card::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--primary-soft);
    border: 1px solid #ddd6fe;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow);
}
.bento-item:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.bento-item.span-4 { grid-column: span 4; }
.bento-item.span-6 { grid-column: span 6; }
.bento-item.span-8 { grid-column: span 8; }
.bento-item.span-12 { grid-column: span 12; }
.bento-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; }
.bento-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.bento-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-dark);
    margin-bottom: 0.65rem;
}

.use-cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: border-color 0.2s, transform 0.2s;
}
.use-case-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.use-case-card .uc-icon { font-size: 1.75rem; margin-bottom: 0.85rem; }
.use-case-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.use-case-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.template-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.template-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.25s;
    box-shadow: var(--shadow);
}
.template-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.template-thumb { height: 110px; }
.template-card:nth-child(1) .template-thumb { background: linear-gradient(135deg, #c4b5fd, #a5f3fc); }
.template-card:nth-child(2) .template-thumb { background: linear-gradient(135deg, #fde68a, #fca5a5); }
.template-card:nth-child(3) .template-thumb { background: linear-gradient(135deg, #bbf7d0, #a5f3fc); }
.template-card:nth-child(4) .template-thumb { background: linear-gradient(135deg, #f9a8d4, #c4b5fd); }
.template-card:nth-child(5) .template-thumb { background: linear-gradient(135deg, #93c5fd, #c4b5fd); }
.template-card:nth-child(6) .template-thumb { background: linear-gradient(135deg, #5eead4, #86efac); }
.template-meta { padding: 0.9rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--text); }

.integration-grid { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.integration-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    box-shadow: var(--shadow);
}

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.testimonial-card .stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.85rem; }
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.15rem;
}
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .name { font-size: 0.9rem; font-weight: 700; }
.testimonial-author .role { font-size: 0.75rem; color: var(--text-faint); }

.compare-wrap {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th,
.compare-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); text-align: left; }
.compare-table th {
    background: var(--bg-subtle);
    color: var(--text-faint);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.compare-table td:first-child { color: var(--text); font-weight: 600; }
.compare-table .yes { color: #15803d; font-weight: 700; }
.compare-table .no { color: var(--text-faint); }
.compare-table tr:hover td { background: var(--bg-subtle); }

.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.security-item {
    display: flex;
    gap: 14px;
    padding: 1.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}
.security-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.security-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 3rem;
}
.pricing-toggle button {
    padding: 0.55rem 1.35rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}
.pricing-toggle button.active {
    background: var(--bg-card);
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; align-items: start; }
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: var(--shadow);
}
.pricing-card.featured {
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    border-color: #c4b5fd;
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-3px); }
.featured-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
}
.plan-name { font-size: 0.85rem; font-weight: 700; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.85rem; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.25rem; }
.plan-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.plan-period { font-size: 0.85rem; color: var(--text-faint); }
.plan-divider { height: 1px; background: var(--border); margin: 1.35rem 0; }
.plan-features { list-style: none; margin-bottom: 1.75rem; }
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
}
.btn-plan {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-plan-outline {
    background: var(--bg);
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
}
.btn-plan-outline:hover { background: var(--primary-soft); text-decoration: none; color: var(--primary-dark); }
.btn-plan-filled {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.25);
}
.btn-plan-filled:hover { transform: translateY(-2px); color: #fff; text-decoration: none; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: #c4b5fd; box-shadow: var(--shadow-lg); }
.faq-q { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.faq-a { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.cta-strip {
    background: linear-gradient(135deg, #f5f3ff 0%, #ecfeff 100%);
    border: 1px solid #ddd6fe;
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    margin: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.cta-strip h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.cta-strip p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

footer {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-dark); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-faint); line-height: 1.5; }
.footer-social a {
    color: var(--text-faint);
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-social a:hover { color: var(--primary); }

#toast-container { position: fixed; top: 90px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.875rem;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast.success { border-color: #86efac; }
.toast.error { border-color: #fca5a5; }

/* ─── Inner marketing pages ─── */
.page-hero {
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.page-hero .container { max-width: 720px; }
.page-hero h1.header-title,
.page-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.page-hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 1.75rem;
}
.page-hero-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}
.feature-page-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
}
.feature-page-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.feature-page-card .fp-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-soft);
    border: 1px solid #ddd6fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}
.feature-page-card .fp-icon i { font-size: 1.25rem; }
.feature-page-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}
.feature-page-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}
.feature-page-card .fp-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-dark);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.pillar-card .pillar-num {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.highlight-band {
    background: linear-gradient(135deg, #f5f3ff 0%, #ecfeff 100%);
    border: 1px solid #ddd6fe;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow);
}
.highlight-band h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.highlight-band p { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; }
.capability-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem 1.5rem;
    margin-top: 1.5rem;
}
.capability-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.capability-list li i { color: #16a34a; margin-top: 3px; flex-shrink: 0; }

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.about-company-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}
.about-company-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--text);
}
.about-company-card .company-legal {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.about-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.about-meta li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    align-items: flex-start;
}
.about-meta li i {
    color: var(--primary);
    margin-top: 3px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.about-meta li strong { color: var(--text); font-weight: 600; display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.about-prose {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: left;
}
.about-prose p { margin-bottom: 1rem; }
.about-prose p:last-child { margin-bottom: 0; }
.about-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}
.about-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.value-card .v-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; gap: 2rem; }
    .bento-item.span-4, .bento-item.span-6, .bento-item.span-8 { grid-column: span 12; }
    .pillar-grid { grid-template-columns: 1fr; }
    .highlight-band { grid-template-columns: 1fr; text-align: center; }
    .highlight-band p { margin: 0 auto; }
    .highlight-band .cta-actions { justify-content: center; }
}
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hero-lead, .hero p.hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-checklist {
        align-items: flex-start;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    .hero-visual {
        min-height: 300px;
        max-width: 460px;
        margin: 0 auto;
    }
    .hero-mockup {
        transform: none;
        animation: mockupFloatMobile 6s ease-in-out infinite;
    }
    @keyframes mockupFloatMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    .floating-badge--publish { left: 0; top: 2%; }
    .floating-badge--speed { right: 0; bottom: 2%; }
}
@media (max-width: 640px) {
    .hero-visual { display: none; }
}
@media (max-width: 768px) {
    .page-hero { padding: 2.5rem 1.25rem 2rem; }
    .hero { padding: 2.5rem 1.25rem 3rem; min-height: auto; }
    .hero-actions, .hero-checklist { justify-content: center; align-items: center; }
    .hero-stats { justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .nav-links { display: none; }
    .pricing-card.featured { transform: none; }
}
