:root {

    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* ── Primary: Warm Amber (Bell) ── */
    --bell-50: #fffbeb;
    --bell-100: #fef3c7;
    --bell-200: #fde68a;
    --bell-300: #fcd34d;
    --bell-400: #fbbf24;
    --bell-500: #f59e0b;
    /* Primary brand - the bell */
    --bell-600: #d97706;
    --bell-700: #b45309;
    --bell-800: #92400e;

    /* ── Accent: Cool Indigo (Links, CTAs) ── */
    --accent-50: #eef2ff;
    --accent-100: #e0e7ff;
    --accent-200: #c7d2fe;
    --accent-300: #a5b4fc;
    --accent-400: #818cf8;
    --accent-500: #6366f1;
    /* Primary accent */
    --accent-600: #4f46e5;
    --accent-700: #4338ca;

    /* ── Neutrals ── */
    --neutral-50: #fafafb;
    --neutral-100: #f1f5f9;
    --neutral-200: #e8ecf1;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;

    /* ── Functional ── */
    --success: #10b981;
    --warning: #f59e0b;
    /* Uses brand amber */
    --error: #ef4444;
    /* Red badge */
    --info: #6366f1;
    /* Uses accent indigo */

    /* ── Aliases (backward compatible) ── */
    --primary: var(--accent-500);
    --primary-dark: var(--accent-600);
    --primary-light: var(--accent-50);
    --bell: var(--bell-500);
    --bell-dark: var(--bell-600);
    --bell-glow: var(--bell-100);
    --bg: var(--neutral-50);
    --surface: #ffffff;
    --text: var(--neutral-800);
    --text-secondary: var(--neutral-600);
    --text-muted: var(--neutral-400);
    --border: var(--neutral-200);
    --border-light: var(--neutral-100);

    /* ── Radii & Shadows (unchanged) ── */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);


}




*,
*::before,
*::after {
        font-family: var(--font-body);

    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.nav-logo,
.hero h1,
.price {
    font-family: var(--font-heading);
}

code, pre, .code-block, .code-block * {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ── Navigation ─────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    padding: 0 24px;
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--bell-500), var(--bell-400));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    position: relative;
}

.nav-logo .logo-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    border: 2px solid #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.925rem;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--bell-500);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
    letter-spacing: -0.01em;
    font-size: 0.9rem !important;
}

.nav-cta:hover {
    background: var(--bell-600) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
    transform: translateY(-1px);
    color: #fff !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 4px;
    transition: var(--transition);
    display: block;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ──────────────────────────── */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bell-100);
    color: var(--bell-700);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    background: linear-gradient(180deg, var(--neutral-800) 0%, var(--neutral-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--bell-500), var(--bell-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--bell-500);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: var(--bell-600);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--surface);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--neutral-300);
    background: var(--neutral-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Browser Mockup ────────────────── */
.mockup-section {
    max-width: 960px;
    margin: 0 auto 80px;
    padding: 0 24px;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.browser-frame {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.browser-chrome {
    background: var(--neutral-100);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: var(--bell-500);
}

.browser-dots span:nth-child(3) {
    background: var(--success);
}

.browser-url {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: -0.01em;
}

.browser-body {
    padding: 40px 30px;
    min-height: 280px;
    background: var(--neutral-50);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.browser-body .fake-header {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.browser-body .fake-header .fake-logo {
    font-weight: 700;
    font-size: 1rem;
    color: var(--neutral-700);
    letter-spacing: -0.02em;
}

.browser-body .fake-header .fake-nav {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.browser-body .fake-content {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.browser-body .fake-card {
    flex: 1;
    min-width: 140px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.browser-body .fake-card .fake-line {
    height: 8px;
    background: var(--neutral-200);
    border-radius: 4px;
    margin-bottom: 8px;
}

.browser-body .fake-card .fake-line.short {
    width: 60%;
}

.browser-body .mock-bell {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bell-500), var(--bell-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
    cursor: pointer;
    animation: bell-gentle-ring 3s ease-in-out infinite;
    z-index: 5;
}

.browser-body .mock-bell .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--error);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

@keyframes bell-gentle-ring {

    0%,
    100% {
        transform: rotate(0);
    }

    5% {
        transform: rotate(15deg);
    }

    10% {
        transform: rotate(-12deg);
    }

    15% {
        transform: rotate(8deg);
    }

    20% {
        transform: rotate(-5deg);
    }

    25% {
        transform: rotate(0);
    }
}

.mockup-arrow {
    position: absolute;
    bottom: -50px;
    right: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-arrow svg {
    width: 40px;
    height: 30px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
}

/* ── Features ──────────────────────── */
.features {
    padding: 60px 0;
    background: var(--bell-50);
}

/* ── Container to constrain width ── */
.wide-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.f-card {
    padding: 24px 22px;
    background: #ffffff;
    border: none;
    border-top: 4px solid var(--bell-500);
    border-radius: 10px;
    transition: 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.f-card:hover {
    border-top: 4px solid var(--bell-600);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.f-card h3 {
    margin: 18px 0 12px;
    color: var(--bell-600);
    font-size: 1.4rem;
    font-weight: 700;
}

.f-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Guide ──────────────────────── */
/* ── Guide Section (Split Layout) ───── */
.guide-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.guide-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.guide-text {
    flex: 1;
    min-width: 0;
}

.guide-text .section-label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bell-600);
    margin-bottom: 12px;
    background: var(--bell-100);
    padding: 6px 14px;
    border-radius: 999px;
}

.guide-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.guide-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.guide-mockup {
    flex: 1;
    min-width: 0;
}

.guide-mockup .mockup-section {
    margin: 0;
    padding: 0;
    animation: none;
}

.guide-mockup .browser-body {
    min-height: 220px;
    padding: 24px 20px;
}

.guide-mockup .mock-bell {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    bottom: 16px;
    right: 16px;
}

.guide-mockup .mock-bell .badge {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
    top: -3px;
    right: -3px;
    border-width: 2px;
}

.guide-mockup .mockup-arrow {
    bottom: -40px;
    right: 20px;
    font-size: 0.75rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .guide-split {
        flex-direction: column;
        gap: 40px;
    }
    
    .guide-text {
        text-align: center;
    }
    
    .guide-text h2 {
        font-size: 1.4rem;
    }
    
    .guide-mockup {
        width: 100%;
    }
}



/* ── Sections ──────────────────────── */
.section {
    padding: 80px 24px;
 
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bell-600);
    margin-bottom: 12px;
    background: var(--bell-100);
    padding: 6px 14px;
    border-radius: 999px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.6;
}

/* ── Features Grid ────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px 26px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}

.feature-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.feature-card .icon-wrap.amber {
    background: var(--bell-100);
}

.feature-card .icon-wrap.indigo {
    background: var(--accent-50);
}

.feature-card .icon-wrap.emerald {
    background: #d1fae5;
}

.feature-card .icon-wrap.rose {
    background: #ffe4e6;
}

.feature-card .icon-wrap.sky {
    background: #e0f2fe;
}

.feature-card .icon-wrap.violet {
    background: #ede9fe;
}

.feature-card h3 {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── How It Works ─────────────────── */
/* ── How It Works ───────────────────── */
.how-it-works {
    padding: 80px 0;
    background: var(--bell-50);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.how-it-works .section-label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bell-600);
    margin-bottom: 12px;
    background: var(--bell-100);
    padding: 6px 14px;
    border-radius: 999px;
}

.how-it-works .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--text);
}

.how-it-works .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ── Steps Grid ─────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 36px 24px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    text-align: center;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bell-500);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    letter-spacing: -0.02em;
}

.step-card h3 {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.step-card code {
    background: var(--bell-50);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--bell-600);
    font-weight: 500;
}

/* ── Code Snippet ────────────────────── */
.code-snippet-wrapper {
    max-width: 700px;
    margin: 48px auto 0;
    text-align: left;
}

.code-label {
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--text);
}

.code-block {
    background: var(--neutral-800);
    border-radius: var(--radius);
    padding: 22px 26px;
    overflow-x: auto;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.7;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.code-block .tag     { color: #f472b6; }
.code-block .attr    { color: #7dd3fc; }
.code-block .val     { color: #a3e635; }
.code-block .comment { color: #64748b; }

.code-copy {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}
.code-copy:hover  { background: rgba(255, 255, 255, 0.2); }
.code-copy.copied { background: var(--success); }

/* ── Scroll reveal ──────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile ─────────────────────────── */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
/* ── Pricing ──────────────────────── */
/* ── Pricing ──────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Space between all cards */
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius); /* All cards rounded */
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    z-index: 2;
}

/* ── Center Card (Target Plan) ── */
.pricing-card.popular {
    background: #ffffff;
    border-color: var(--bell-500);
    border-width: 2px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);

    z-index: 3;
}


.pricing-card.popular .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bell-500);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 999px;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.pricing-card h3 {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--text);
}

/* ── Price Display ── */
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 8px 0 4px;
    color: var(--text);
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Old price with strikethrough */
.old-price {
    text-decoration: line-through;
    color: var(--text-muted) !important;
    font-size: 1.2rem !important;
    margin-right: 6px;
}

.pricing-card .price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    flex: 1;
    margin-bottom: 20px;
}

.pricing-card ul li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ── Pricing Buttons ────────────────── */
.pricing-card .btn {
    width: 100%;
    justify-content: center;
    background: transparent;
    color: var(--bell-500);
    border: 2px solid var(--bell-500);
    border-radius: 999px;
    transition: all var(--transition);
}

.pricing-card .btn:hover {
    background: var(--bell-500);
    color: #fff;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.pricing-card.popular .btn:hover {
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}



/* ── Mobile ── */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.02);
    }
}
/* ── Testimonials ─────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: transparent;
}

.testimonial-card .stars {
    color: var(--bell-500);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.testimonial-card .quote {
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.testimonial-card .author {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}



.testimonial-card .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Testimonial Author Row ────────── */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info .author {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--text);
}

.author-info .role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 2px 0 0;
}

/* ── Circular Photo ────────────────── */
.author-photo {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── FAQ ──────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.faq-question .arrow {
    transition: transform 0.3s;
    font-size: 0.7rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── CTA Section ──────────────────── */
/* ── CTA Section ──────────────────── */
.cta-section {
    width: 100%;
    text-align: center;
    padding: 80px 0;               /* no horizontal padding */
    background: linear-gradient(180deg, var(--neutral-50) 0%, var(--bell-50) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-section .wide-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;               /* side breathing room only here */
}

.cta-section .section-title {
    margin-bottom: 10px;
    color: var(--text);
}

.cta-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ── Footer ────────────────────────── */
.footer {
    width: 100%;
    padding: 48px 0 0;
    background: var(--neutral-800);
    color: var(--neutral-300);
    font-size: 0.85rem;
}

.footer .wide-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 32px;
}

.footer-brand .footer-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.footer-brand p {
    margin-top: 6px;
    color: var(--neutral-400);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* ── Footer Bottom (full width bar) ── */
.footer-bottom {
    width: 100%;
    border-top: 1px solid var(--neutral-700);
    padding: 20px 0;
    text-align: center;
    color: var(--neutral-500);
    background: var(--neutral-800);   /* ensure it matches footer bg */
}

.footer-bottom .wide-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-bottom a {
    color: var(--neutral-400);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ── Footer Social Icons ──────────── */
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
}

.footer-social img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.1s;
}

.footer-social a:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;          /* centre each block */
        gap: 24px;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-social img {
    opacity: 1;
}
}

/* ── Floating Bell Widget (Live Demo) ── */
.widget-bell {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bell-500), var(--bell-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
    transition: all var(--transition);
    animation: bell-ring 4s ease-in-out infinite;
    outline: none;
}

.widget-bell:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
}

.widget-bell:active {
    transform: scale(0.95);
}

.widget-bell .badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 24px;
    height: 24px;
    background: var(--error);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    padding: 0 6px;
    animation: badge-pulse 2s infinite;
}

@keyframes bell-ring {

    0%,
    100% {
        transform: rotate(0);
    }

    2% {
        transform: rotate(18deg);
    }

    4% {
        transform: rotate(-14deg);
    }

    6% {
        transform: rotate(10deg);
    }

    8% {
        transform: rotate(-6deg);
    }

    10% {
        transform: rotate(0);
    }
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
    }
}

.widget-panel {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9998;
    width: 380px;
    max-width: calc(100vw - 56px);
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.widget-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.widget-panel-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.widget-panel-header .mark-read {
    font-size: 0.8rem;
    color: var(--bell-600);
    cursor: pointer;
    font-weight: 500;
    background: none;
    border: none;
    font-family: inherit;
}

.widget-panel-header .mark-read:hover {
    text-decoration: underline;
}

.widget-panel-list {
    max-height: 380px;
    overflow-y: auto;
    padding: 8px 0;
}

.widget-update {
    padding: 14px 20px;
    border-bottom: 1px solid var(--neutral-50);
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.widget-update:hover {
    background: var(--neutral-50);
}

.widget-update.unread {
    background: var(--bell-50);
}

.widget-update.unread::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bell-500);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.widget-update .update-content {
    flex: 1;
    min-width: 0;
}

.widget-update .update-title {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.widget-update .update-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 4px;
}

.widget-update .update-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.widget-panel-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.widget-panel-footer a {
    font-size: 0.85rem;
    color: var(--bell-600);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.widget-panel-footer a:hover {
    text-decoration: underline;
}

.widget-powered {
    font-size: 0.7rem;
    color: var(--neutral-300);
    text-align: center;
    padding: 6px;
    letter-spacing: 0.02em;
}

/* ── Mobile Responsive ────────────── */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 110px 20px 50px;
    }

    .browser-body {
        padding: 24px 14px;
        min-height: 200px;
    }

    .browser-body .fake-nav {
        display: none;
    }

    .browser-body .mock-bell {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 16px;
        right: 16px;
    }

    .browser-body .mock-bell .badge {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -3px;
        right: -3px;
        border-width: 2px;
    }

    .widget-panel {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 90px;
        border-radius: 16px;
    }

    .widget-bell {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Overlay for mobile nav ───────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* ── Scroll animations ────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Tooltip for copy ────────────── */
.tooltip-toast {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--neutral-800);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.tooltip-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}