:root {
    --primary: #007bff;
    --dark-blue: #0056d6;
    --cyan: #00d4ff;
    --bg: #ffffff;
    --soft-bg: #f8fbff;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-sec: #64748b;
    --success: #22c55e;
    --warning: #f59e0b;
    --pink: #ec4899;
    --violet: #8b5cf6;
    --orange: #f97316;
    --gradient: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    --gradient-soft: linear-gradient(135deg, #ebf5ff 0%, #f0fbff 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 123, 255, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-logo-img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.nav-link {
    color: var(--text-sec) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 14px !important;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-login,
.btn-started {
    border-radius: 8px;
    padding: 7px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-login {
    border: 1.5px solid var(--border);
    color: var(--text) !important;
    background: #ffffff;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
}

.btn-started {
    background: var(--gradient);
    color: #ffffff !important;
    border: 0;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-started:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

#hero {
    background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 50%, #f0fbff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 123, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.2);
    color: var(--primary);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .highlight,
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-sec);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary-main,
.btn-outline-main {
    border-radius: 10px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-main {
    background: var(--gradient);
    color: #ffffff;
    border: 0;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.35);
}

.btn-primary-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.45);
    color: #ffffff;
}

.btn-outline-main {
    background: #ffffff;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 600;
}

.btn-outline-main:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-fit {
    width: fit-content;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 44px;
    animation: fadeUp 0.7s 0.4s ease both;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-pill .icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
}

.stat-pill .val {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1;
}

.stat-pill .lbl {
    font-size: 0.72rem;
    color: var(--text-sec);
}

.hero-mockup {
    position: relative;
    animation: fadeUp 0.8s 0.2s ease both;
}

.dashboard-screenshot-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 123, 255, 0.1), 0 24px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 123, 255, 0.08);
    background: #ffffff;
}

.dashboard-browser-bar {
    background: #f8fbff;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.db-dot-red {
    background: #ff5f57;
}

.db-dot-yellow {
    background: #ffbd2e;
}

.db-dot-green {
    background: #27c93f;
}

.db-url {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--text-sec);
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1400 / 672;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#trust {
    background: var(--soft-bg);
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-sec);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.62;
    transition: opacity 0.2s ease;
}

.trust-logo:hover {
    opacity: 0.95;
}

.trust-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.trust-blue {
    background: #ebf5ff;
    color: var(--primary);
}

.trust-amber {
    background: #fff7e6;
    color: var(--warning);
}

.trust-green {
    background: #f0fff4;
    color: var(--success);
}

.trust-pink {
    background: #fff0f6;
    color: var(--pink);
}

.trust-violet {
    background: #f5f0ff;
    color: var(--violet);
}

.trust-orange {
    background: #fff8f0;
    color: var(--orange);
}

.trust-logo-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

#services,
#how,
#pricing,
#faq {
    padding: 100px 0;
    background: #ffffff;
}

#why,
#about,
#testimonials {
    padding: 100px 0;
    background: var(--soft-bg);
}

.section-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.08);
    color: var(--primary);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-sec);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 60px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 54px;
    height: 54px;
    background: var(--gradient-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .svc-icon {
    background: var(--gradient);
    color: #ffffff;
}

.svc-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 10px;
}

.svc-desc {
    color: var(--text-sec);
    font-size: 0.88rem;
    line-height: 1.65;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.why-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}

.why-desc {
    color: var(--text-sec);
    font-size: 0.85rem;
    line-height: 1.6;
}

.why-illustration {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.pipeline-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.pipeline-stage {
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.2s ease;
}

.pipeline-stage:hover {
    border-color: var(--primary);
    background: rgba(0, 123, 255, 0.03);
}

.stage-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.stage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stage-dot-blue {
    background: #3b82f6;
}

.stage-dot-amber {
    background: var(--warning);
}

.stage-dot-violet {
    background: var(--violet);
}

.stage-dot-pink {
    background: var(--pink);
}

.stage-dot-green {
    background: var(--success);
}

.stage-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}

.stage-count {
    font-size: 0.78rem;
    color: var(--text-sec);
}

.stage-bar-wrap {
    width: 100px;
    background: #e2e8f0;
    border-radius: 10px;
    height: 6px;
    flex-shrink: 0;
}

.stage-bar {
    height: 6px;
    border-radius: 10px;
    background: var(--gradient);
}

.stage-bar-80 {
    width: 80%;
}

.stage-bar-60 {
    width: 60%;
}

.stage-bar-40 {
    width: 40%;
}

.stage-bar-25 {
    width: 25%;
}

.stage-bar-15 {
    width: 15%;
}

.stage-bar-success {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.conversion-card {
    margin-top: 24px;
    padding: 18px;
    background: var(--soft-bg);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.conversion-label {
    font-size: 0.78rem;
    color: var(--text-sec);
    margin-bottom: 6px;
}

.conversion-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.conversion-growth {
    font-size: 0.78rem;
    color: var(--success);
    font-weight: 600;
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.step-arrow {
    position: absolute;
    top: 44px;
    right: -20px;
    font-size: 1.4rem;
    color: var(--primary);
    opacity: 0.5;
    z-index: 1;
}

.step-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-sec);
    font-size: 0.85rem;
    line-height: 1.6;
}

.process-line {
    height: 3px;
    flex: 1;
    background: var(--gradient);
    border-radius: 4px;
    opacity: 0.3;
}

.process-badge {
    background: var(--gradient);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.about-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.about-copy {
    color: var(--text-sec);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 20px 0;
}

.about-copy-last {
    margin-bottom: 28px;
}

.about-stat {
    text-align: center;
}

.about-stat .num {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat .lbl {
    font-size: 0.82rem;
    color: var(--text-sec);
    font-weight: 500;
    margin-top: 4px;
}

.about-divider {
    width: 1px;
    background: var(--border);
    height: 60px;
    margin: auto;
}

.about-rule {
    border-top: 1px solid var(--border);
    margin: 10px 0;
}

.award-card {
    margin-top: 30px;
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.award-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.award-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.award-subtitle {
    font-size: 0.8rem;
    color: var(--text-sec);
    margin-top: 2px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 30px 80px rgba(0, 123, 255, 0.25);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #ffffff;
    border-radius: 50px;
    padding: 4px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.plan-name {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-sec);
    margin-bottom: 12px;
}

.plan-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-sec);
}

.plan-yearly {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-sec);
    min-height: 42px;
    margin-bottom: 24px;
}

.plan-divider {
    border-top: 1px solid var(--border);
    margin: 20px 0 24px;
}

.plan-feature,
.plan-feature-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text);
}

.plan-feature i,
.plan-feature-content li::before {
    color: var(--primary);
    margin-top: 2px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.plan-feature-content {
    margin-top: 16px;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.65;
}

.plan-feature-content ul,
.plan-feature-content ol {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.plan-feature-content li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.plan-feature-content p {
    margin-bottom: 10px;
    color: var(--text-sec);
}

.plan-feature-content strong,
.plan-feature-content b {
    color: var(--text);
}

.plan-feature-content mark {
    background: #ebf5ff;
    color: var(--primary);
    border-radius: 4px;
    padding: 1px 4px;
}

.plan-actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.btn-plan-outline,
.btn-plan-solid {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-plan-outline {
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-plan-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-plan-solid {
    background: var(--gradient);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn-plan-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
    color: #ffffff;
}

.empty-pricing {
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 42px 32px;
    text-align: center;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.05);
}

.empty-pricing i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gradient-soft);
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 16px;
}

.empty-pricing h3 {
    font-size: 1.1rem;
    font-weight: 800;
}

.empty-pricing p {
    margin: 0;
    color: var(--text-sec);
}

.testi-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.testi-stars {
    color: var(--warning);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.testi-quote {
    font-size: 0.92rem;
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin-right: 14px;
    flex-shrink: 0;
}

.avatar-blue {
    background: var(--primary);
}

.avatar-dark-blue {
    background: var(--dark-blue);
}

.avatar-cyan {
    background: var(--cyan);
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.testi-role {
    font-size: 0.78rem;
    color: var(--text-sec);
}

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text) !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    font-size: 0.95rem;
    padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(35%) sepia(90%) saturate(1000%) hue-rotate(200deg);
}

.accordion-body {
    color: var(--text-sec);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 24px 20px;
}

#cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ebf5ff 0%, #f0fbff 100%);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.cta-sub {
    color: var(--text-sec);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 36px;
}

.cta-notes {
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-sec);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.cta-notes i {
    color: var(--success);
    margin-right: 4px;
}

.visitor-footer {
    background: var(--soft-bg);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

.footer-desc {
    color: var(--text-sec);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
    margin-top: 4px;
}

.footer-col-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 18px;
}

.footer-link {
    display: block;
    color: var(--text-sec);
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sec);
    font-size: 14px;
    transition: all 0.2s ease;
    margin-right: 8px;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 50px;
    padding-top: 24px;
}

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

.footer-policy-link {
    font-size: 0.8rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

*:focus-visible {
    outline: 3px solid rgba(0, 123, 255, 0.35);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .navbar {
        position: static;
        top: auto;
    }

    #hero,
    #services,
    #why,
    #how,
    #about,
    #pricing,
    #testimonials,
    #faq,
    #cta {
        padding: 76px 0;
    }

    .hero-mockup {
        margin-top: 36px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title,
    .cta-title {
        font-size: 2.2rem;
    }

    .step-arrow {
        display: none;
    }

    .about-box {
        padding: 30px 20px;
    }

    .navbar-collapse {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 14px;
        margin-top: 12px;
        padding: 12px;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 576px) {
    #hero {
        padding: 64px 0 56px;
    }

    .brand-logo-img {
        height: 44px;
        max-width: 136px;
    }

    .nav-actions {
        gap: 6px;
    }

    .btn-login,
    .btn-started {
        padding: 7px 12px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .section-title,
    .cta-title {
        font-size: 1.9rem;
    }

    .hero-stats {
        gap: 14px;
    }

    .stat-pill {
        padding: 8px 14px;
    }

    .btn-primary-main,
    .btn-outline-main {
        width: 100%;
        padding: 13px 20px;
    }

    .hero-btns {
        width: 100%;
    }

    .pipeline-stage {
        align-items: flex-start;
        flex-direction: column;
    }

    .stage-bar-wrap {
        width: 100%;
    }

    .about-stat .num {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 34px 24px;
    }

    .plan-price {
        font-size: 2.25rem;
    }

    .visitor-footer {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .navbar .container {
        gap: 6px;
    }

    .brand-logo-img {
        max-width: 118px;
    }

    .btn-login,
    .btn-started {
        padding: 6px 9px;
        font-size: 0.76rem;
    }
}

/* Responsive hardening for public pages */
img,
svg,
canvas,
video {
    max-width: 100%;
}

.container,
.row,
.col,
[class^="col-"],
[class*=" col-"],
.step-card,
.about-box,
.about-stat {
    min-width: 0;
}

.navbar .container,
.navbar-brand,
.nav-actions,
.hero-btns,
.hero-stats,
.trust-logos,
.pipeline-stage,
.award-card,
.footer-bottom {
    min-width: 0;
}

.hero-title,
.section-title,
.cta-title,
.stage-name,
.plan-name,
.footer-link,
.about-stat .num,
.about-stat .lbl,
.step-title,
.step-desc {
    overflow-wrap: anywhere;
}

.step-card {
    box-sizing: border-box;
    max-width: 100%;
}

.btn-login,
.btn-started,
.btn-primary-main,
.btn-outline-main,
.btn-plan-outline,
.btn-plan-solid,
.navbar-toggler {
    min-height: 42px;
    touch-action: manipulation;
}

@media (max-width: 991px) {
    .navbar .container {
        align-items: center;
        gap: 0.75rem;
    }

    .navbar-collapse {
        order: 4;
        flex-basis: 100%;
        width: 100%;
    }

    .nav-actions {
        margin-left: auto;
    }

    .navbar-nav {
        gap: 0.25rem !important;
    }

    .nav-link {
        border-radius: 8px;
        padding: 10px 12px !important;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        overflow-x: clip;
    }

    .row {
        --bs-gutter-x: 1.25rem;
        margin-right: 0;
        margin-left: 0;
    }

    .navbar .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .navbar-brand {
        max-width: 100%;
    }

    .nav-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin-left: 0;
    }

    .btn-login,
    .btn-started {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        white-space: normal;
    }

    .navbar-collapse {
        grid-column: 1 / -1;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .stat-pill {
        width: 100%;
    }

    .about-box .row.g-3 > [class^="col-"],
    .about-box .row.g-3 > [class*=" col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .about-stat {
        width: 100%;
    }

    .why-illustration,
    .about-box,
    .pricing-card,
    .testi-card,
    .empty-pricing {
        padding: 24px 18px;
    }

    .footer-bottom {
        align-items: flex-start !important;
    }
}

@media (max-width: 360px) {
    .brand-logo-img {
        max-width: 104px;
    }

    .btn-login,
    .btn-started {
        padding-inline: 8px;
    }

    .about-box .row.g-3 > [class^="col-"],
    .about-box .row.g-3 > [class*=" col-"] {
        flex-basis: 100%;
        max-width: 100%;
    }
}
