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

/* ===================================
   Design Tokens — Light Mode
   =================================== */
:root {
    /* Brand colors */
    --purple:      #6f1fa6;
    --navy:        #212d6f;
    --blue:        #2b66e8;
    --sky:         #3d9df0;
    --amber:       #f59e0b;

    /* Backgrounds */
    --bg-base:     hsl(220, 20%, 99%);
    --bg-surface:  hsl(230, 25%, 96%);
    --bg-card:     #ffffff;

    /* Text */
    --text-primary:   hsl(222, 47%, 15%);
    --text-secondary: hsl(230, 15%, 42%);
    --text-muted:     hsl(230, 15%, 60%);

    /* Borders */
    --border:       hsl(230, 18%, 90%);
    --border-hover: rgba(43, 102, 232, 0.35);

    /* Gradients */
    --grad-brand:  linear-gradient(135deg, #6f1fa6 0%, #212d6f 50%, #3d9df0 100%);
    --grad-text:   linear-gradient(135deg, #6f1fa6 0%, #2b66e8 60%, #3d9df0 100%);
    --grad-amber:  linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --grad-hero:   linear-gradient(135deg, hsla(285,70%,38%,0.06) 0%, hsla(232,52%,27%,0.04) 60%, hsla(215,88%,60%,0.06) 100%);

    /* Shadows */
    --shadow-card: 0 2px 12px rgba(19, 30, 61, 0.07);
    --shadow-md:   0 4px 24px rgba(19, 30, 61, 0.10);
    --shadow-lg:   0 8px 48px rgba(19, 30, 61, 0.12);
    --glow-cta:    0 8px 32px rgba(245, 158, 11, 0.30);
    --glow-brand:  0 8px 32px rgba(43, 102, 232, 0.22);

    /* Layout */
    --max-w: 1160px;
    --px: clamp(1.25rem, 4vw, 2rem);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 9999px;
}

/* ===================================
   Base
   =================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===================================
   Layout
   =================================== */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    position: relative;
    z-index: 1;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background: var(--bg-surface);
}

/* ===================================
   Typography utilities
   =================================== */
.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(43, 102, 232, 0.08);
    border: 1px solid rgba(43, 102, 232, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--radius-pill);
    position: relative;
}

.btn-primary {
    background: var(--grad-amber);
    color: #fff;
    padding: 0.875rem 2rem;
    box-shadow: var(--glow-cta);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.45);
    filter: brightness(1.06);
}

.btn-primary svg { flex-shrink: 0; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.05rem; }

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.875rem 1.75rem;
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--navy);
    background: rgba(43, 102, 232, 0.05);
}

.btn-full { width: 100%; }

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 68px;
    display: flex;
    align-items: center;
    transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
    border-bottom: 1px solid transparent;
    background: transparent;
}

.header.scrolled {
    background: rgba(250, 251, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 16px rgba(19, 30, 61, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-pill);
    transition: color 0.2s, background 0.2s;
}

.header-nav-link:hover {
    color: var(--navy);
    background: rgba(43, 102, 232, 0.07);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-img { width: 38px; height: 38px; border-radius: 9px; }

.logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Hero
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    background: var(--bg-base);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: 5%;
    left: -15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(111, 31, 166, 0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(43, 102, 232, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    background: rgba(43, 102, 232, 0.08);
    border: 1px solid rgba(43, 102, 232, 0.22);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.65); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: var(--text-primary);
    margin: 0 auto 1.5rem;
    max-width: 840px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.hero-freemium-line {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 1.75rem;
}
.hero-freemium-line svg { color: #16a34a; flex-shrink: 0; }

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.6rem 1.3rem;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.hero-urgency strong { color: var(--blue); font-weight: 700; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Hero preview card */
.hero-preview {
    max-width: 700px;
    margin: 3.5rem auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    text-align: left;
    position: relative;
}

.hero-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
    z-index: 1;
}

.hp-topbar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hp-dot { width: 10px; height: 10px; border-radius: 50%; }
.hp-dot-r { background: #ff5f57; }
.hp-dot-y { background: #febc2e; }
.hp-dot-g { background: #28c840; }
.hp-topbar-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-weight: 500;
}

.hp-body {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.hp-profile {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--border);
    min-width: 0;
}

.hp-plan {
    padding: 1.25rem 1.5rem;
    min-width: 0;
}

.hp-col-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    white-space: nowrap;
}

.hp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.38rem 0;
    border-bottom: 1px solid var(--border);
}
.hp-row:last-child { border-bottom: none; }
.hp-label { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.hp-val   { font-size: 0.82rem; font-weight: 700; color: var(--blue); white-space: nowrap; }

.hp-task {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: rgba(43, 102, 232, 0.05);
    border: 1px solid rgba(43, 102, 232, 0.12);
    margin-bottom: 0.5rem;
}
.hp-task:last-child { margin-bottom: 0; }

.hp-task-time {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
    flex-shrink: 0;
    width: 94px;
}

.hp-task-info { flex: 1; min-width: 0; }

.hp-task-info h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-task-info p {
    font-size: 0.73rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-task-dur {
    font-size: 0.7rem;
    color: var(--blue);
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(43, 102, 232, 0.08);
    border-radius: 20px;
    padding: 0.15rem 0.55rem;
    font-weight: 600;
}

/* ===================================
   Credibility Bar
   =================================== */
.credibility-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.credibility-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 1.75rem;
    position: relative;
}

.credibility-item + .credibility-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1.4em;
    width: 1px;
    background: var(--border);
}

.credibility-item svg { color: var(--blue); flex-shrink: 0; }
.credibility-item strong { color: var(--text-primary); }

/* ===================================
   Problems
   =================================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.problem-card:hover {
    border-color: rgba(43, 102, 232, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.prob-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #dc2626;
}

.prob-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.prob-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.prob-conclusion {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1.5px solid rgba(43, 102, 232, 0.2);
    border-radius: var(--radius);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-card);
}

.prob-conclusion p {
    font-size: 1.05rem;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   How it works
   =================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps-connector {
    position: absolute;
    top: 32px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 1px;
    background: linear-gradient(90deg, var(--purple), var(--sky));
    opacity: 0.25;
    pointer-events: none;
}

.step-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-card);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
    border-color: rgba(43, 102, 232, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--glow-brand);
}

.step-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
.step-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

.section-cta { text-align: center; margin-top: 3rem; }

/* ===================================
   Features / Solution
   =================================== */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.features-content h2 {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-bubble {
    background: hsl(230, 25%, 97%);
    border: 1.5px solid rgba(43, 102, 232, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    position: relative;
    overflow: hidden;
}

.ai-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
}

.ai-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.ai-bubble p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }

.perks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.perk-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.25);
    color: #16a34a;
    flex-shrink: 0;
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.feat-card:hover {
    border-color: rgba(43, 102, 232, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feat-icon-a { background: rgba(111,31,166,0.08); color: var(--purple); border: 1px solid rgba(111,31,166,0.18); }
.feat-icon-b { background: rgba(43,102,232,0.08); color: var(--blue); border: 1px solid rgba(43,102,232,0.18); }

.feat-title { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.feat-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ===================================
   Highlights / Benefits
   =================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.highlight-card:hover {
    border-color: rgba(43, 102, 232, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hi-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    box-shadow: var(--glow-brand);
}

.hi-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.hi-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ===================================
   Comparison
   =================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
}

.comp-card {
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}

.comp-card-avec {
    border-color: rgba(43, 102, 232, 0.3);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.comp-card-avec::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
}

.comp-badge {
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}

.comp-badge-neg { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.comp-badge-pos { background: rgba(43,102,232,0.08); color: var(--blue); border: 1px solid rgba(43,102,232,0.2); }

.comp-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.comp-item svg { flex-shrink: 0; margin-top: 2px; }
.comp-item-neg svg { color: #dc2626; }
.comp-item-pos svg { color: #16a34a; }
.comp-item-pos { color: var(--text-primary); }

/* ===================================
   Pricing
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}

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

.pricing-no-risk {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
}

.price-badge-green {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    box-shadow: none;
    border: 1px solid rgba(22, 163, 74, 0.25);
}

/* Feature card badge layout */
.hi-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.hi-card-top .hi-icon { margin-bottom: 0; }

.feat-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}
.feat-badge-free {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}
.feat-badge-premium {
    background: rgba(43, 102, 232, 0.1);
    color: var(--blue);
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: rgba(43, 102, 232, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card-featured {
    border: 2px solid var(--blue);
    box-shadow: var(--shadow-lg);
}

.price-card-featured:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 60px rgba(43, 102, 232, 0.18);
}

.price-card-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
}

.price-badge {
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
    background: var(--grad-brand);
    color: #fff;
    box-shadow: var(--glow-brand);
}

.price-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.price-amount {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.price-amount sup { font-size: 1.1rem; font-weight: 700; vertical-align: super; line-height: 1; }

.price-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.price-equiv   { font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-bottom: 0.5rem; }
.price-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.price-savings {
    display: inline-flex;
    padding: 0.3rem 0.75rem;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    margin-bottom: 1.75rem;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.price-feature svg { color: #16a34a; flex-shrink: 0; }

.price-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.85rem; }

.trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.trust-item svg { color: var(--blue); }

/* ===================================
   FAQ
   =================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 980px;
    margin: 0 auto;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-card:hover {
    border-color: rgba(43, 102, 232, 0.28);
    box-shadow: var(--shadow-md);
}

.faq-q {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.faq-q svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }

.faq-a { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ===================================
   Vision
   =================================== */
.vision-banner {
    background: var(--bg-card);
    border: 1.5px solid rgba(43, 102, 232, 0.22);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.vision-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
}

.vision-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(43, 102, 232, 0.08);
    border: 1px solid rgba(43, 102, 232, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--blue);
}

.vision-title { font-size: 1.35rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.75rem; }
.vision-desc  { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.vision-desc strong { color: var(--navy); font-weight: 700; }

/* ===================================
   Final CTA — brand gradient bg
   =================================== */
.final-cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--grad-brand);
}

.final-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-sub strong { color: #fff; }

.final-cta-section .btn-primary {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.final-cta-section .btn-primary:hover {
    background: #f0f2ff;
    filter: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

.final-proof { margin-top: 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.62); }

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo img { width: 34px; height: 34px; border-radius: 7px; }
.footer-nav { display: flex; gap: 1.5rem; }

.footer-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover { color: var(--blue); }

.footer-copy { font-size: 0.82rem; color: var(--text-muted); }

/* ===================================
   Animations
   =================================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible { opacity: 1; transform: none; }

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .steps-grid    { grid-template-columns: 1fr; }
    .steps-connector { display: none; }
    .features-layout { grid-template-columns: 1fr; }
    .comparison-grid,
    .pricing-grid,
    .pricing-grid-3,
    .faq-grid      { grid-template-columns: 1fr; }
    .hp-body       { grid-template-columns: 1fr; }
    .hp-profile    { border-right: none; border-bottom: 1px solid var(--border); }
    .hp-task-time  { width: auto; }
    .footer-inner  { flex-direction: column; text-align: center; }
    .features-grid-2x2 { grid-template-columns: 1fr; }
    .credibility-item + .credibility-item::before { display: none; }
    .credibility-item { padding: 0.4rem 1rem; }
}

@media (max-width: 900px) {
    .pricing-grid-3 { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 480px) {
    .hero-actions  { flex-direction: column; align-items: stretch; }
    .pricing-grid,
    .pricing-grid-3 { gap: 1rem; }
    .trust-row     { gap: 1rem; flex-direction: column; align-items: center; }
    .credibility-inner { flex-direction: column; gap: 0.25rem; }
}
