:root {
    --primary: #6c63ff;
    --primary-dark: #5a52d5;
    --primary-light: #eef2ff;
    --accent: #00d4aa;
    --accent2: #ff6b6b;
    --accent3: #ffb347;
    --dark: #0f0e1a;
    --dark2: #1a1830;
    --dark3: #241f3a;
    --text: #e8e6f0;
    --muted: #9896b2;
    --border: rgba(108, 99, 255, 0.2);
    --glass: rgba(255, 255, 255, 0.04);
    --card: rgba(255, 255, 255, 0.06);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    backdrop-filter: blur(20px);
    background: rgba(15, 14, 26, 0.7);
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}
.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.4rem;
}
.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.logo span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
}
.nav-links a:hover {
    color: #fff;
}
.dropdown-nav {
    position: relative;
}
.dropdown-policies {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 14, 26, 0.99);
    border: 1px solid var(--border);
    border-radius: 10px;
    min-width: 200px;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
}
.dropdown-nav:hover .dropdown-policies {
    display: block;
}
.dropdown-policies li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--muted);
    transition: 0.2s;
}
.dropdown-policies li a:hover {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding-left: 2rem;
}
.nav-cta {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.btn {
    padding: 0.65rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}
.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    border-radius: 12px;
}
.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 50% 0%,
        rgba(108, 99, 255, 0.25) 0%,
        transparent 70%
    );
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}
.orb1 {
    width: 500px;
    height: 500px;
    background: rgba(108, 99, 255, 0.15);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}
.orb2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 212, 170, 0.12);
    bottom: -50px;
    left: -80px;
    animation-delay: -4s;
}
.orb3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 107, 0.1);
    top: 30%;
    left: 10%;
    animation-delay: -2s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}
.hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 99, 255, 0.12);
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}
h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.4rem;
}
h1 .gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 460px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.1rem;
}

/* hero dashboard mockup */
.hero-visual {
    position: relative;
}
.dashboard-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.dashboard-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.db-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.db-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}
.db-date {
    font-size: 0.72rem;
    color: var(--muted);
}
.db-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.db-metric {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 0.8rem;
    text-align: center;
}
.db-metric-val {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}
.db-metric-lbl {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 0.3rem;
}
.green {
    color: #00d4aa;
}
.red {
    color: #ff6b6b;
}
.amber {
    color: #ffb347;
}
.db-chart {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.8rem;
}
.db-chart-title {
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
}
.bar-row {
    display: flex;
    gap: 0.35rem;
    align-items: flex-end;
    height: 55px;
}
.bar {
    border-radius: 4px 4px 0 0;
    flex: 1;
    transition: 1s;
}
.bar-p {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}
.bar-a {
    background: var(--accent);
}
.db-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.db-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.6rem;
    background: var(--glass);
    border-radius: 8px;
}
.db-avatar {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.db-name {
    font-size: 0.72rem;
    font-weight: 500;
    flex: 1;
}
.db-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
}
.badge-present {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
}
.badge-late {
    background: rgba(255, 179, 71, 0.15);
    color: var(--accent3);
}
.float-chip {
    position: absolute;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}
.chip1 {
    top: -20px;
    right: 20px;
    animation: floatChip 3s ease-in-out infinite;
}
.chip2 {
    bottom: -10px;
    left: -20px;
    animation: floatChip 3s ease-in-out infinite 0.8s;
}
@keyframes floatChip {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ── SECTION COMMON ── */
section {
    padding: 6rem 0;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}
.section-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
}
.text-center {
    text-align: center;
}
.mx-auto {
    margin: 0 auto;
}

/* ── LOGOS BAR ── */
.logos-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}
.logos-label {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}
.logos-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.logo-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: 0.2s;
}
.logo-pill:hover {
    opacity: 1;
    color: var(--primary);
}
.logo-pill i {
    font-size: 1.2rem;
}

/* ── FEATURES GRID ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}
.feature-card:hover::after {
    opacity: 1;
}
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.feature-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.6;
}

/* ── MODULES ── */
.modules-wrap {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 3.5rem;
}
.modules-list {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.module-tab {
    padding: 1rem 1.2rem;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.module-tab.active,
.module-tab:hover {
    background: var(--card);
    border-color: var(--border);
}
.module-tab.active {
    border-color: rgba(108, 99, 255, 0.4);
}
.module-tab-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.module-tab-title {
    font-size: 0.9rem;
    font-weight: 600;
}
.module-tab-sub {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.1rem;
}
.module-content {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    min-height: 340px;
}
.module-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}
.module-content p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.pill {
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(108, 99, 255, 0.2);
}

/* ── AI SECTION ── */
.ai-section {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
    position: relative;
    overflow: hidden;
}
.ai-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 60% at 80% 50%,
        rgba(0, 212, 170, 0.1),
        transparent
    );
}
.ai-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ai-chat {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.chat-bubble {
    padding: 0.7rem 1rem;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 85%;
}
.bubble-user {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    align-self: flex-end;
    border-radius: 14px 14px 4px 14px;
}
.bubble-ai {
    background: var(--card);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-radius: 14px 14px 14px 4px;
}
.bubble-ai .ai-label {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.typing {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    padding: 0.5rem 0.8rem;
}
.typing span {
    width: 6px;
    height: 6px;
    background: var(--muted);
    border-radius: 50%;
    animation: typing 0.8s infinite;
}
.typing span:nth-child(2) {
    animation-delay: 0.15s;
}
.typing span:nth-child(3) {
    animation-delay: 0.3s;
}
@keyframes typing {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}
.ai-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.ai-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}
.ai-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.ai-feat-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.ai-feat-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    align-items: start;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    transition: 0.3s;
    position: relative;
}
.price-card.popular {
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.15),
        rgba(0, 212, 170, 0.05)
    );
    border-color: rgba(108, 99, 255, 0.5);
    transform: scale(1.04);
}
.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.plan-price sup {
    font-size: 1rem;
    vertical-align: top;
    margin-top: 0.4rem;
    display: inline-block;
    font-weight: 600;
    color: var(--muted);
}
.plan-period {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}
.plan-emp {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border);
}
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}
.plan-features li {
    font-size: 0.83rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted);
}
.plan-features li i {
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
}
.plan-features li.off {
    opacity: 0.4;
}
.plan-features li.off i {
    color: var(--muted);
}

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.6rem;
    position: relative;
}
.testi-card::before {
    content: "\201C";
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}
.testi-text {
    font-size: 0.87rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    padding-top: 0.8rem;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}
.testi-name {
    font-size: 0.85rem;
    font-weight: 700;
}
.testi-role {
    font-size: 0.72rem;
    color: var(--muted);
}
.stars {
    color: var(--accent3);
    font-size: 0.7rem;
    margin-bottom: 0.9rem;
}

/* ── CTA ── */
.cta-section {
    padding: 7rem 0;
    background: radial-gradient(
        ellipse 70% 80% at 50% 100%,
        rgba(108, 99, 255, 0.2),
        transparent
    );
    position: relative;
    overflow: hidden;
}
.cta-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 820px;
    margin: auto;
}
.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.08),
        rgba(0, 212, 170, 0.05)
    );
    pointer-events: none;
}
.cta-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
}
.cta-card p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1.2rem;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-brand p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 0.8rem;
    max-width: 260px;
}
.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    transition: 0.2s;
}
.social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer-col ul li a {
    color: var(--muted);
    font-size: 0.82rem;
    transition: 0.2s;
}
.footer-col ul li a:hover {
    color: var(--text);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    color: var(--muted);
    font-size: 0.78rem;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-inner,
    .ai-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        display: none;
    }
    .features-grid,
    .pricing-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .modules-wrap {
        flex-direction: column;
    }
    .modules-list {
        width: 100%;
    }
    .price-card.popular {
        transform: none;
    }
}
@media (max-width: 620px) {
    .features-grid,
    .pricing-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}
