/* =================================================
   DocuPro — SinaaWOY Style CSS
   Font: Segoe UI (system font)
   ================================================= */
:root {
    --teal: #16969D;
    --teal-dk: #0d7378;
    --teal-lt: #e6f5f6;
    --bg: #ffffff;
    --grey: #f3f6f8;
    --border: #e4e8ed;
    --ink: #1a2336;
    --ink2: #374151;
    --muted: #6b7480;
    --muted2: #9ca3af;
    --green: #22c55e;
    --amber: #f59e0b;
    --orange: #f97316;
    --purple: #8b5cf6;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 16px rgba(22, 150, 157, 0.10);
    --shadow-md: 0 10px 40px rgba(22, 150, 157, 0.14);
    --trans: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

section[id] {
    scroll-margin-top: 85px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.65
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* Helpers */
.teal-text {
    color: var(--teal) !important;
}

.white-text {
    color: #ffffff !important;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.section {
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto
}

.section-head {
    text-align: center;
    margin-bottom: 56px
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px
}

.section-head p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-lt);
    color: var(--teal);
    border: 1px solid rgba(22, 150, 157, 0.2);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.grey,
.how-it-works-section {
    background: var(--grey);
    position: relative;
    z-index: 1;
}

.grey::before,
.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50vw;
    right: -50vw;
    background: var(--grey);
    z-index: -1;
}

/* ──── NAVBAR ──── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--trans)
}

.navbar.scrolled {
    border-color: var(--border);
    box-shadow: 0 2px 20px rgba(22, 150, 157, 0.07)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ink)
}

.nav-logo img {
    height: 42px; /* Increased from default */
    width: auto;
    transition: var(--trans);
}

.footer-logo img {
    height: 52px; /* Set larger for footer visibility */
    width: auto;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none
}

.nav-links a {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
    transition: var(--trans)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal)
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 10px
}

.lang-btn {
    font-size: 0.75rem;
    font-weight: 700;
    background: none;
    border: 1.5px solid var(--border);
    color: var(--muted);
    padding: 6px 13px;
    border-radius: 7px;
    cursor: pointer;
    transition: var(--trans)
}

.lang-btn:hover {
    border-color: var(--teal);
    color: var(--teal)
}

.btn-ghost-nav {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: var(--teal);
    border: 1.5px solid var(--teal);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--trans);
    display: inline-block
}

.btn-ghost-nav:hover {
    background: var(--teal-dk);
    border-color: var(--teal-dk);
    color: #fff
}

.btn-getstarted {
    font-size: 0.88rem;
    font-weight: 700;
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--trans);
    display: inline-block
}

.btn-getstarted:hover {
    background: var(--teal-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 150, 157, 0.3)
}

.hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--ink);
    cursor: pointer;
    font-size: 1rem
}

@media(max-width:1100px) {

    .nav-links,
    .nav-end .btn-ghost-nav,
    .nav-end .lang-btn {
        display: none
    }

    .hamburger {
        display: block
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: #fff;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        font-size: 1.3rem
    }
}

/* ──── HERO ──── */
.hero {
    min-height: 100vh;
    padding: 100px 48px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}

/* Blob decorations */
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(22, 150, 157, 0.15);
    top: -60px;
    right: 20%;
    animation: blobPulse 7s ease-in-out infinite
}

.blob-2 {
    width: 180px;
    height: 180px;
    background: rgba(22, 150, 157, 0.1);
    bottom: 80px;
    right: 10%;
    animation: blobPulse 9s ease-in-out infinite 1s
}

.blob-3 {
    width: 120px;
    height: 120px;
    background: rgba(22, 150, 157, 0.08);
    top: 30%;
    left: 5%;
    animation: blobPulse 8s ease-in-out infinite 2s
}

.blob-4 {
    width: 60px;
    height: 60px;
    background: rgba(22, 150, 157, 0.12);
    top: 15%;
    left: 30%;
    animation: blobPulse 6s ease-in-out infinite .5s
}

@keyframes blobPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-lt);
    border: 1px solid rgba(22, 150, 157, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 20px;
    width: fit-content
}

.hero-h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.78;
    max-width: 440px;
    margin-bottom: 32px
}

/* Email form */
.hero-form {
    display: flex;
    max-width: 430px;
    margin-bottom: 44px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(22, 150, 157, 0.12);
    border: 1.5px solid var(--border)
}

.hero-form input {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.88rem;
    border: none;
    outline: none;
    font-family: inherit;
    color: var(--ink);
    background: #fff
}

.hero-form input::placeholder {
    color: var(--muted2)
}

.hero-form button {
    padding: 14px 24px;
    background: var(--teal);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: inherit;
    white-space: nowrap;
    transition: background .2s
}

.hero-form button:hover {
    background: var(--teal-dk)
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px
}

.hs {
    display: flex;
    flex-direction: column
}

.hs-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1
}

.hs-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px
}

.hs-div {
    width: 1px;
    height: 40px;
    background: var(--border)
}

/* ── Right circular illustration ── */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-circle-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(22, 150, 157, 0.15)
}

.ring-1 {
    width: 380px;
    height: 380px;
    animation: spinRing 20s linear infinite
}

.ring-2 {
    width: 320px;
    height: 320px;
    border-style: dashed;
    border-color: rgba(22, 150, 157, 0.1);
    animation: spinRing 30s linear infinite reverse
}

@keyframes spinRing {
    to {
        transform: rotate(360deg)
    }
}

.hero-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--teal-lt), rgba(22, 150, 157, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(22, 150, 157, 0.2)
}

.hero-circle-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden
}

.hero-svg {
    width: 90%;
    height: 90%
}

/* Floating badges */
.float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    border: 1px solid var(--border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 5s ease-in-out infinite;
    z-index: 10
}

.fb-tl {
    top: 20px;
    left: -10px;
    animation-delay: .3s
}

.fb-br {
    bottom: 30px;
    right: -10px;
    animation-delay: .8s
}

.fb-tl i {
    font-size: 1.4rem
}

.fb-tl strong {
    font-size: 0.82rem;
    display: block;
    color: var(--ink)
}

.fb-stars {
    font-size: 0.65rem;
    color: var(--amber)
}

.fb-avatar-row {
    display: flex;
    margin-right: 4px
}

.fb-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid #fff
}

.fb-br strong {
    font-size: 0.82rem;
    display: block;
    color: var(--ink)
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* Decorative icon pills */
.deco-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: var(--teal);
    animation: floatBadge 4s ease-in-out infinite
}

.di-1 {
    top: 40px;
    right: 30px;
    animation-delay: 0s
}

.di-2 {
    top: 120px;
    left: 10px;
    animation-delay: .6s
}

.di-3 {
    bottom: 100px;
    left: 20px;
    animation-delay: 1.1s
}

.di-4 {
    bottom: 40px;
    right: 50px;
    animation-delay: .4s
}

/* ──── BRANDS STRIP ──── */
.brands-strip {
    padding: 28px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--grey)
}

.brands-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted2);
    opacity: .65;
    transition: var(--trans);
    cursor: default
}

.brand-item:hover {
    opacity: 1;
    color: var(--teal)
}

/* ──── CATEGORIES ──── */
.cats-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--ink)
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto
}

.cat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: var(--trans)
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    box-shadow: 0 6px 20px rgba(22, 150, 157, 0.25)
}

.cat-pill.active .cp-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important
}

.cat-pill:hover .cp-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important
}

.cp-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--trans)
}

/* ──── ALT SECTION ──── */
.alt-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 50px;
    background: var(--grey);
    max-width: 100%
}

.as-card-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 380px
}

.as-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--trans)
}

.as-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md)
}

.as-c1 {
    margin-left: 0
}

.as-c2 {
    margin-left: 24px
}

.as-c3 {
    margin-left: 0
}

.asc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--teal-lt);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.asc-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink)
}

.asc-sub {
    font-size: 0.75rem;
    color: var(--muted)
}

.badge-teal {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(22, 150, 157, 0.1);
    color: var(--teal);
    white-space: nowrap
}

.badge-amber {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber);
    white-space: nowrap
}

.as-stats-bar {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-top: 8px
}

.asb-item {
    display: flex;
    flex-direction: column
}

.asb-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1
}

.asb-lbl {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 3px
}

.as-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px
}

.as-text p {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 24px
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600
}

.check-list li i {
    color: var(--teal);
    font-size: 1.1rem
}

/* Buttons */
.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--trans)
}

.btn-teal:hover {
    background: var(--teal-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 150, 157, 0.3)
}

.btn-teal-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--trans)
}

.btn-teal-solid:hover {
    background: var(--teal-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 150, 157, 0.3)
}

.btn-outline-teal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 11px 28px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--trans)
}

.btn-outline-teal:hover {
    background: var(--teal);
    color: #fff
}

.btn-full {
    width: 100%
}

/* ──── TESTIMONIALS ──── */
.testi-slider {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto
}

.testi-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--trans)
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(22, 150, 157, 0.08);
    border-color: rgba(22, 150, 157, 0.25);
    transform: translateY(-3px)
}

.tc-featured {
    background: linear-gradient(145deg, var(--teal-lt), rgba(22, 150, 157, 0.03));
    border-color: rgba(22, 150, 157, 0.3)
}

.testi-stars {
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px
}

.testi-card p {
    font-size: 0.88rem;
    color: var(--ink2);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic
}

.testi-foot {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.testi-foot strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink)
}

.testi-foot span {
    font-size: 0.72rem;
    color: var(--muted2)
}

/* ──── INSTRUCTORS / TEMPLATES ──── */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto
}

.instructor-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--trans)
}

.instructor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 150, 157, 0.3)
}

.ic-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(22, 150, 157, 0.2)
}

.ic-rank {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.ic-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px
}

.ic-role {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 12px
}

.ic-stats {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink2)
}

/* ──── PRICING ──── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto
}

.price-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--trans);
    position: relative
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 150, 157, 0.3)
}

.price-hot {
    background: linear-gradient(145deg, var(--teal-lt), rgba(22, 150, 157, 0.02));
    border-color: rgba(22, 150, 157, 0.35);
    box-shadow: 0 0 40px rgba(22, 150, 157, 0.1)
}

.pc-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: .08em;
    white-space: nowrap
}

.pc-plan {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 12px
}

.pc-label {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px
}

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px
}

.pc-cur {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--muted)
}

.pc-num {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--ink)
}

.pc-per {
    font-size: 0.88rem;
    color: var(--muted)
}

.pc-feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 24px;
    font-size: 0.86rem;
    color: var(--ink2)
}

.pc-feats li.off {
    color: var(--muted2)
}

/* ──── FOOTER ──── */
.footer {
    background: linear-gradient(135deg, #0d1117 0%, #0d2a2c 100%);
    color: #fff
}

.footer-brands {
    padding: 28px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap
}

.footer-brands .brand-item {
    color: rgba(255, 255, 255, 0.35)
}

.footer-brands .brand-item:hover {
    color: #fff
}

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 48px 40px
}

.footer-brand-col p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    max-width: 270px;
    margin-bottom: 20px
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 8px
}

.f-soc {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--trans)
}

.f-soc:hover {
    background: rgba(22, 150, 157, 0.25);
    border-color: var(--teal);
    color: #fff
}

.footer-col h4 {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    text-align: left;
    padding: 10px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 10px;
    text-align: left;
}

.footer-col a,
.footer-col span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    transition: var(--trans)
}

.footer-col a:hover {
    color: var(--teal)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.22)
}

/* ──── TOAST ──── */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--teal);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--trans);
    pointer-events: none
}

.toast.show {
    opacity: 1;
    transform: none
}

/* ──── RESPONSIVE ──── */
@media(max-width:1100px) {

    .hero,
    .alt-section {
        grid-template-columns: 1fr;
        padding: 120px 32px 80px;
        gap: 60px;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        padding-top: 100px
    }

    .hero-right {
        justify-content: center
    }

    .hero-circle-wrap {
        width: 340px;
        height: 340px
    }

    .hero-circle {
        width: 230px;
        height: 230px
    }

    .ring-1 {
        width: 310px;
        height: 310px
    }

    .ring-2 {
        width: 260px;
        height: 260px
    }

    .testi-slider {
        grid-template-columns: 1fr
    }

    .instructors-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr
    }

    .cats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .section {
        padding: 72px 32px
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 40px 32px
    }

    .footer-bottom {
        padding: 18px 32px
    }

    .footer-brands {
        padding: 24px 32px;
        gap: 28px
    }

    .navbar {
        padding: 0 24px
    }

    /* Added refinement for tablet navigation spacing */
    .nav-links.open {
        gap: 1.5rem;
    }
}

@media(max-width:640px) {

    .cats-grid,
    .pricing-grid,
    .instructors-grid {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr
    }

    .float-badge,
    .deco-icon,
    .ring {
        display: none
    }

    .hero-circle-wrap {
        width: 280px;
        height: 280px
    }

    .hero-circle {
        width: 200px;
        height: 200px
    }

    .testi-slider {
        grid-template-columns: 1fr
    }

    .hero-stats {
        gap: 20px
    }

    .video-demo-wrapper {
        max-width: 100%
    }

    .video-demo-frame {
        height: 260px
    }
}

/* ──── VIDEO DEMO SECTION ──── */
.video-demo-section {
    background: var(--grey);
    max-width: 100%;
    padding: 50px;
    color: var(--ink);
}

.video-demo-section .section-head h2 {
    color: var(--ink);
}

.video-demo-section .section-head p {
    color: var(--muted);
}

.video-demo-section .eyebrow-tag {
    background: var(--teal-lt);
    border-color: rgba(22, 150, 157, 0.2);
    color: var(--teal);
}

.video-demo-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.video-demo-frame {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(22, 150, 157, 0.2);
    z-index: 1;
    background: #e8edf2;
}

.video-demo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dde3ea, #e8edf2);
    cursor: pointer;
    transition: var(--trans);
}

.video-demo-placeholder:hover {
    background: linear-gradient(135deg, #d4dbe3, #dde3ea);
}

.vdp-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.vdp-play-btn {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.vdp-play-btn:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(22, 150, 157, 0.6));
}

.vdp-play-btn svg circle {
    animation: pulseRing 2.5s ease-in-out infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        opacity: 1;
        r: 34px;
    }

    50% {
        opacity: 0.6;
        r: 36px;
    }
}

.vdp-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.vdp-sub {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}

/* ──── WORKFLOW CARDS (ANIMATED) ──── */
.how-it-works-section {
    background: var(--grey);
    position: relative;
    padding: 50px;
}

.workflow-animation {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px 36px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.workflow-animation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(22, 150, 157, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.workflow-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    padding: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wf-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.wf-step.active .wf-node {
    box-shadow: 0 0 0 4px rgba(22, 150, 157, 0.2), 0 0 30px rgba(22, 150, 157, 0.15);
}

.wf-step.active .wf-pulse {
    animation: wfPulse 2s ease-in-out infinite;
}

/* Connectors */
.wf-connector {
    position: absolute;
    top: 36px;
    height: 2px;
    width: 50%;
    z-index: 0;
}

.wf-connector.left {
    left: 0;
    background: linear-gradient(90deg, var(--teal), rgba(22, 150, 157, 0.2));
}

.wf-connector.right {
    right: 0;
    background: linear-gradient(90deg, rgba(22, 150, 157, 0.2), var(--teal));
}

.wf-connector.left-hidden,
.wf-connector.right-hidden {
    opacity: 0;
}

/* Connector fill animation */
.wf-step.active .wf-connector.right,
.wf-step.done .wf-connector.right {
    background: linear-gradient(90deg, var(--teal), #0d7378);
    box-shadow: 0 0 8px rgba(22, 150, 157, 0.3);
}

.wf-step.active .wf-connector.left,
.wf-step.done .wf-connector.left {
    background: linear-gradient(90deg, #0d7378, var(--teal));
    box-shadow: 0 0 8px rgba(22, 150, 157, 0.3);
}

/* Node */
.wf-node {
    width: 72px;
    height: 72px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.wf-step.active .wf-node {
    border-color: var(--teal);
    background: var(--teal-lt);
}

.wf-step.done .wf-node {
    border-color: var(--green);
    background: rgba(16, 185, 129, 0.08);
}

.wf-node-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.wf-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-step-num {
    font-size: 9px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.wf-step.active .wf-step-num {
    color: var(--teal);
}

.wf-step.done .wf-step-num {
    color: var(--green);
}

.wf-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    opacity: 0;
    animation: none;
}

@keyframes wfPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

/* Step content */
.wf-content {
    text-align: center;
    flex: 1;
}

.wf-content h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.wf-content p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Step tags */
.wf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.wf-tags span {
    background: var(--teal-lt);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Input preview */
.wf-input-preview {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(22, 150, 157, 0.05);
    border: 1px solid rgba(22, 150, 157, 0.15);
    border-radius: 8px;
    padding: 10px;
}

.wf-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.field-label {
    font-size: 0.72rem;
    color: var(--muted);
    white-space: nowrap;
    font-weight: 600;
}

.field-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink);
}

.typing-anim {
    border-right: 2px solid var(--teal);
    animation: typing-blink 1s ease-in-out infinite;
}

@keyframes typing-blink {

    0%,
    100% {
        border-color: var(--teal);
    }

    50% {
        border-color: transparent;
    }
}

/* Signature demo */
.wf-signature-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sig-line {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 6px;
    width: 100%;
}

.sig-svg {
    width: 100%;
    height: 40px;
}

.sig-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawSig 2s ease forwards infinite;
    animation-delay: 1s;
}

@keyframes drawSig {
    0% {
        stroke-dashoffset: 300;
    }

    70%,
    90% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 300;
    }
}

.sig-label {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 700;
}

/* Share demo */
.wf-share-demo {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.share-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.share-avatar.from {
    background: var(--teal);
    color: #fff;
}

.share-avatar.to {
    background: #6B7280;
    color: #fff;
}

.share-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.arrow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), #9CA3AF);
    position: relative;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: #9CA3AF;
}

.arrow-label {
    font-size: 0.65rem;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
}

.share-check {
    font-size: 1rem;
    color: var(--green);
    animation: popIn 0.5s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Progress */
.workflow-progress {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 12.5%;
    background: var(--teal);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(22, 150, 157, 0.3);
}

.progress-dots {
    display: flex;
    gap: 10px;
}

.prog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--trans);
}

.prog-dot.active {
    background: var(--teal);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(22, 150, 157, 0.4);
}

@media(max-width: 1024px) {
    .workflow-track {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .wf-connector {
        display: none;
    }
}

@media(max-width: 600px) {
    .workflow-track {
        grid-template-columns: 1fr;
    }
}

/* ──── DOCMAN BENEFITS (SPLIT) ──── */
.benefits-split {
    background: #fff;
    padding: 50px;
    overflow: hidden;
}

.bs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.bs-left,
.bs-right {
    display: flex;
    flex-direction: column;
}

.bs-center {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.bs-phone-img {
    max-height: 500px;
    width: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.bs-grid-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bs-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.bs-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 16px 40px rgba(22, 150, 157, 0.08);
}

.bs-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(22, 150, 157, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bs-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bs-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.bs-content p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media(max-width: 1200px) {
    .bs-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bs-center {
        order: -1;
        padding-bottom: 20px;
    }

    .bs-phone-img {
        max-height: 400px;
    }
}

@media(max-width: 768px) {
    .bs-card {
        padding: 24px;
        gap: 20px;
    }

    .bs-icon {
        width: 80px;
        height: 80px;
    }

    .bs-icon img {
        width: 44px;
        height: 44px;
    }
}

@media(max-width: 500px) {
    .bs-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ──── CONTRACT TYPES (Grey Background) ──── */
.contracts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contract-type-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.contract-type-card:hover {
    transform: translateX(10px);
}

.ct-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Apply theme teal (#16969D) via filter */
    filter: brightness(0) saturate(100%) invert(48%) sepia(70%) saturate(541%) hue-rotate(134deg) brightness(91%) contrast(89%);
}

.ct-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.ct-content p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media(max-width: 1200px) {
    .contracts-grid {
        gap: 40px;
    }
}

@media(max-width: 900px) {
    .contracts-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media(max-width: 600px) {
    .contract-type-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ──── MOBILE APP SECTION (Legacy removed, merged into unified) ──── */


/* ──── MERGED GROW SECTION ──── */
.grow-unified-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.grow-unified-section {
    padding-top: 20px !important;
}

.app-assets-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 32px;
}


.grow-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.grow-col h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
}

.grow-col p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


.app-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.store-btns-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 240px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 12px;
    transition: var(--trans);
    text-decoration: none;
    color: #fff;
    width: fit-content;
}

.store-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.store-btn-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    opacity: 0.7;
}

.store-btn-name {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}

.store-btn.dark {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-btn.dark:hover {
    background: #1e293b;
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.app-mockup-container {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
}

.mini-phone-frame {
    width: 180px;
    height: 390px;
    background: #0f172a;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), inset 0 0 0 2px #334155;
    position: absolute;
    overflow: hidden;
}

.frame-back {
    transform: rotate(-10deg) translateX(-40px);
    z-index: 1;
}

.frame-front {
    transform: rotate(5deg) translateX(40px) translateY(-15px);
    z-index: 2;
    background: #1e293b;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35), inset 0 0 0 2px #475569;
}

.frame-inner {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: white;
}

.frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 1024px) {
    .grow-unified-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .app-assets-row {
        flex-direction: column;
        gap: 40px;
    }

    .mini-phone-frame {
        width: 150px;
        height: 320px;
    }
}