/* ============================================================
   STYLE.CSS — DigiCRM Design System
   Modern SaaS · Indian SMB Focused
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
    /* Colors */
    --blue: #1E3A8A;
    --blue-mid: #2563EB;
    --blue-light: #EFF6FF;
    --green: #10B981;
    --green-light: #ECFDF5;
    --orange: #F97316;
    --orange-light: #FFF7ED;
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --text: #111827;
    --text-mid: #374151;
    --text-muted: #6B7280;
    --gradient: linear-gradient(135deg, #1E3A8A 0%, #2563EB 60%, #10B981 100%);
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
    --shadow-lg: 0 12px 40px rgba(30, 58, 138, .14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h: 68px;

    /* Typography */
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* ── Layout Helpers ── */
.container {
    width: min(1160px, 92%);
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.section-inner {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin-inline: auto;
}

/* ── Typography ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: var(--green);
    border-radius: 99px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--blue-mid);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}

.highlight {
    color: var(--blue-mid);
}

.hl-green {
    color: var(--green);
}

.hl-orange {
    color: var(--orange);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .94rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 18px rgba(249, 115, 22, .38);
}

.btn-primary:hover {
    background: #ea6a0e;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, .48);
}

.btn-secondary {
    background: var(--surface);
    color: var(--blue);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(30, 58, 138, .3);
}

.btn-blue:hover {
    background: #162d72;
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 18px rgba(16, 185, 129, .3);
}

.btn-green:hover {
    background: #0da271;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

.btn-lg {
    padding: 15px 34px;
    font-size: 1rem;
}

.btn-sm {
    padding: 9px 20px;
    font-size: .84rem;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-mid);
    border-radius: 99px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 7px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
    transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    background: linear-gradient(160deg, #EFF6FF 0%, #F8FAFC 45%, #ECFDF5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .07) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    border: 1px solid rgba(16, 185, 129, .3);
    border-radius: var(--radius-pill);
    padding: 5px 14px 5px 5px;
    font-size: .78rem;
    font-weight: 600;
    color: #065F46;
    margin-bottom: 18px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-trust-text {
    font-size: .8rem;
    color: var(--text-muted);
}

.trust-logos {
    display: flex;
    gap: 12px;
}

.trust-tag {
    padding: 4px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-mid);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.mockup-bar {
    background: var(--blue);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-title {
    color: rgba(255, 255, 255, .8);
    font-size: .78rem;
    font-weight: 600;
    margin-left: 8px;
}

.mockup-body {
    padding: 20px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.mstat {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    border: 1px solid var(--border);
}

.mstat-num {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
}

.mstat-label {
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.mockup-row {
    display: flex;
    gap: 12px;
}

.mockup-leads {
    flex: 1;
}

.mockup-lead-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: .78rem;
}

.lead-name {
    font-weight: 600;
    color: var(--text);
}

.lead-status {
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-size: .68rem;
    font-weight: 700;
}

.status-hot {
    background: #FEF2F2;
    color: #DC2626;
}

.status-warm {
    background: #FFF7ED;
    color: #EA580C;
}

.status-new {
    background: #EFF6FF;
    color: #2563EB;
}

.status-done {
    background: #ECFDF5;
    color: #059669;
}

.mockup-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 110px;
}

.maction {
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    font-size: .72rem;
    font-weight: 600;
    text-align: center;
}

.maction-wa {
    background: #DCFCE7;
    color: #16A34A;
    border: 1px solid #BBF7D0;
}

.maction-email {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
}

.maction-ai {
    background: #F5F3FF;
    color: #7C3AED;
    border: 1px solid #DDD6FE;
}

/* ── Problem Section ── */
.problem-section {
    background: var(--surface);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.problem-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.problem-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.problem-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.problem-desc {
    font-size: .88rem;
    color: var(--text-muted);
}

.arrow-down {
    text-align: center;
    font-size: 2rem;
    color: var(--blue-mid);
    margin: 20px 0;
}

.solution-banner {
    background: var(--blue);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    color: #fff;
}

.solution-banner h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.solution-banner p {
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
}

/* ── Feature Cards ── */
.features-bg {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, .2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feat-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feat-icon.blue {
    background: var(--blue-light);
}

.feat-icon.green {
    background: var(--green-light);
}

.feat-icon.orange {
    background: var(--orange-light);
}

.feat-icon.purple {
    background: #F5F3FF;
}

.feat-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.feat-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── How It Works ── */
.steps-section {
    background: var(--surface);
}

.steps-flow {
    display: flex;
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.steps-flow::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0 auto 20px;
    box-shadow: 0 0 0 6px var(--blue-light);
}

.step-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step-title {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.step-desc {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Role Tabs ── */
.roles-section {
    background: var(--bg);
}

.tabs-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 36px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border);
    background: var(--surface);
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--blue-mid);
    color: var(--blue);
}

.tab-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 58, 138, .3);
}

.tab-panels {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tab-content h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.tab-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tab-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: var(--text-mid);
}

.tab-list li::before {
    content: '✅';
    flex-shrink: 0;
}

.tab-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    gap: 14px;
    font-size: .9rem;
}

/* ── Testimonials ── */
.testimonials-section {
    background: var(--surface);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testi-stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
}

.testi-name {
    font-weight: 700;
    color: var(--text);
    font-size: .9rem;
}

.testi-role {
    font-size: .78rem;
    color: var(--text-muted);
}

/* ── Pricing ── */
.pricing-section {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    align-items: start;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.popular {
    border-color: var(--blue-mid);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.price-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    padding: 4px 20px;
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.price-plan {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    color: var(--blue-mid);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.price-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-num sup {
    font-size: 1.1rem;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
}

.price-period {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    margin-top: 4px;
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    gap: 8px;
    font-size: .88rem;
    color: var(--text-mid);
}

.price-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.price-features li.no::before {
    content: '✗';
    color: var(--border);
}

.price-features li.no {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: .6;
}

.price-cta {
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
}

/* ── FAQ ── */
.faq-section {
    background: var(--surface);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-head);
    font-size: .97rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    background: none;
}

.faq-q:hover {
    color: var(--blue);
}

.faq-q.open {
    color: var(--blue);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--blue-mid);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.75;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-a.open {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ── Final CTA ── */
.final-cta {
    background: var(--blue);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='3' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.final-cta>* {
    position: relative;
}

.final-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.final-cta p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Trust Bar ── */
.trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .87rem;
    font-weight: 600;
    color: var(--text-mid);
}

.trust-item .icon {
    font-size: 1.1rem;
}

/* ── Footer ── */
.footer {
    background: #0F172A;
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-desc {
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-soc {
    display: flex;
    gap: 10px;
}

.footer-soc a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--transition);
}

.footer-soc a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.footer-heading {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links li {
    font-size: .88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    font-size: .82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ── Scroll Reveal ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

.fade-up {
    animation: fadeUp .7s ease both;
}

.delay-1 {
    animation-delay: .12s;
}

.delay-2 {
    animation-delay: .24s;
}

.delay-3 {
    animation-delay: .36s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ── WhatsApp Float ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    background: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    transition: var(--transition);
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ── Responsive ── */
@media (max-width:900px) {
    .nav-links {
        display: none;
        position: fixed;
        inset: var(--nav-h) 0 0 0;
        background: rgba(255, 255, 255, .98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        font-size: 1.15rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .tab-panel.active {
        grid-template-columns: 1fr;
    }

    .steps-flow {
        flex-direction: column;
        gap: 28px;
    }

    .steps-flow::before {
        display: none;
    }
}

@media (max-width:640px) {
    .section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}