@font-face {
    font-family: 'Blinker';
    src: url('/assets/font/Blinker-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Blinker';
    src: url('/assets/font/Blinker-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Blinker';
    src: url('/assets/font/Blinker-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: linear-gradient(135deg, #f7f8ff 0%, #eef1ff 45%, #f9f5ff 100%);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --card: #ffffff;
    --muted: #4b5563;
    --accent: #4F46E5;
    --accent-2: #9333EA;
    --accent-3: #7c3aed;
    --shadow: 0 20px 60px rgba(79, 70, 229, 0.14);
    --border: #e5e7eb;
    --panel: #111827;
    --text: #000000;
    --font-family: 'Blinker', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body.home-body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text);
    min-height: 100vh;
}

/* ====================================================
   TYPOGRAPHY SCALE
   h1  → clamp(28px, 4vw, 48px)   Hero heading
   h2  → clamp(24px, 3.5vw, 44px) All section titles (unified)
   h5  → clamp(18px, 2vw, 24px)   Card titles
   p   → 18px weight 300           Desktop body & card descriptions
   p   → 16px weight 300           Mobile body & card descriptions
   strong (list) → clamp(17px, 1.8vw, 22px)
   footer/meta → 16px
   badges/small → 13–14px
   ==================================================== */

p {
    color: var(--text);
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 300;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    color: var(--text);
}

.font-34 { font-size: 34px !important; }
.font-24 { font-size: 24px !important; }
.font-20 { font-size: 20px !important; }
.font-18 { font-size: 18px !important; }
.font-16 { font-size: 16px !important; }
.font-14 { font-size: 14px !important; }
.font-12 { font-size: 12px !important; }

a { color: inherit; text-decoration: none; }
img { width: 100%; }

.section_padding {
    padding: clamp(40px, 5vw, 80px) clamp(16px, 4vw, 40px) !important;
}

/* =============================================
   HEADER / NAV
   ============================================= */

.home-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    margin-bottom: -80px;
}

.home-nav {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 2;
}

.home-nav .brand {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 700;
    color: var(--accent-2);
    letter-spacing: 0.01em;
    flex-shrink: 0;
}
.home-nav .brand img { height: 30px; width: auto; }

.nav-collapse {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.home-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 500;
    color: #334155;
    flex: 1;
}
.home-nav .nav-links a {
    padding: 8px 10px;
    border-radius: 10px;
    transition: all 0.18s ease;
    font-weight: 400;
    color: #000000;
}
.home-nav .nav-links a:hover { color: var(--accent-2); }

.home-nav .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-toggler { border: none; padding: 6px 10px; box-shadow: none; }
.navbar-toggler:focus { box-shadow: none; }

.site__logo {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.home-header .home-nav .nav-links .nav-link {
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    color: #000;
}
.home-header .home-nav .nav-links .nav-link:hover { color: var(--accent-2); }
.home-header .home-nav .nav-actions .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.35rem;
    border-radius: 12px;
    font-weight: 400;
}
.home-header .home-nav .brand .site__logo {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* =============================================
   HERO SECTION
   ============================================= */

.home-hero {
    position: relative;
    padding: 110px 6vw 80px;
    background: linear-gradient(155deg, #fff 0%, #f0eeff 55%, #e4dcff 100%);
    overflow: hidden;
}

.h-blob1 {
    position: absolute; top: -80px; right: -80px;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(147,51,234,.12) 0%, transparent 70%);
    pointer-events: none;
}
.h-blob2 {
    position: absolute; bottom: -100px; left: -60px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,.08) 0%, transparent 70%);
    pointer-events: none;
}
.h-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy .eyebrow {
    margin: 0 0 8px;
    color: var(--accent-3);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}
.hero-copy h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin: 0 0 14px;
    font-family: var(--font-family);
    max-width: 460px;
}
.hero-copy .lede {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    color: #4b5563;
    margin: 0 0 20px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    border-radius: 50px;
    padding: 5px 14px 5px 7px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: var(--font-family);
}
.badge-pill {
    background: rgba(255,255,255,.25);
    border-radius: 50px;
    padding: 2px 9px;
    font-size: 12px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.proof-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #e4e0ff;
    font-size: 14px;
    flex-wrap: wrap;
}
.av-row { display: flex; }
.av {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -7px;
    font-size: 11px; font-weight: 800;
    display: grid; place-items: center;
    color: #fff;
}
.av:first-child { margin-left: 0; }
.hero-stars { color: #F59E0B; font-size: 14px; }
.no-card-badge {
    margin-left: auto;
    background: rgba(79,70,229,.08);
    border: 1px solid #c8c2ff;
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #4F46E5;
}

/* Hero Visual / Board Card */
.hero-visual-wrap {
    position: relative;
    padding: 36px 20px 36px 10px;
}
.board-card {
    background: #fff;
    border: 1px solid #e4e0ff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 28px 80px rgba(79,70,229,.22);
    animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.bc-bar {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 16px; padding-bottom: 14px;
    border-bottom: 1px solid #e4e0ff;
}
.bc-dots { display: flex; gap: 5px; }
.bc-dot  { width: 9px; height: 9px; border-radius: 50%; }
.bc-name { font-weight: 700; font-size: 13px; color: #12102a; margin-left: 8px; }
.bc-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.bc-head {
    font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: #9896b8; margin-bottom: 9px;
    display: flex; align-items: center; gap: 5px;
}
.bh-dot { width: 6px; height: 6px; border-radius: 50%; }
.bct {
    background: #f0eeff;
    border: 1px solid #e4e0ff;
    border-radius: 9px;
    padding: 9px 10px;
    margin-bottom: 7px;
    transition: all .2s;
}
.bct:hover { background: #fff; box-shadow: 0 2px 14px rgba(79,70,229,.08); }
.bct-name { font-size: 12px; font-weight: 600; color: #12102a; margin-bottom: 6px; }
.bct-meta { display: flex; align-items: center; gap: 5px; }
.chip {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}
.cv { background: rgba(79,70,229,.1);  color: #4F46E5; }
.cp { background: rgba(147,51,234,.1); color: #9333EA; }
.cg { background: #dcfce7; color: #16a34a; }
.cy { background: #fef9c3; color: #ca8a04; }
.mav {
    width: 17px; height: 17px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    margin-left: -5px;
    font-size: 9px; font-weight: 800;
    display: grid; place-items: center;
    color: #fff;
}
.mav:first-child { margin-left: auto; }

.fchip {
    position: absolute;
    background: #fff;
    border: 1px solid #e4e0ff;
    border-radius: 12px;
    box-shadow: 0 16px 52px rgba(79,70,229,.18);
    padding: 11px 16px;
    z-index: 3;
}
.fc-top {
    top: -10px; right: -12px;
    display: flex; align-items: center; gap: 10px;
    min-width: 190px;
    animation: fc1 6s ease-in-out infinite;
}
@keyframes fc1 {
    0%, 100% { transform: rotate(-1.5deg) translateY(0); }
    50%       { transform: rotate(1deg) translateY(-8px); }
}
.fc-ico {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    display: grid; place-items: center;
    font-size: 14px; color: #fff; flex-shrink: 0;
}
.fc-t { font-size: 12px; font-weight: 700; color: #12102a; }
.fc-s { font-size: 11px; color: #9896b8; }
.fc-bot {
    bottom: -10px; left: -12px;
    min-width: 160px;
    animation: fc2 7s ease-in-out infinite 1.5s;
}
@keyframes fc2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(9px); }
}
.fc-lbl { font-size: 11px; color: #9896b8; margin-bottom: 7px; }
.fc-pb {
    height: 5px; background: #e8e4ff;
    border-radius: 3px; overflow: hidden; margin-bottom: 5px;
}
.fc-pf {
    height: 100%; border-radius: 3px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    width: 74%;
}
.fc-pct { font-size: 17px; font-weight: 800; color: #12102a; font-family: var(--font-family); }
.fc-pct span { font-size: 11px; font-weight: 400; color: #9896b8; }

/* Hero visual compat */
.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: center;
    margin-top: 46px;
    position: relative;
    z-index: 1;
}
.hero-visual { position: relative; }
.hero-visual img { width: 100%; display: block; border-radius: 12px; }
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.hero-metrics div {
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}
.hero-metrics span { display: block; font-size: 20px; font-weight: 700; color: var(--accent); }
.hero-metrics label { color: #6b7280; font-size: 13px; }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    border-radius: 11px;
    font-weight: 300;
    border: 1px solid #dddddd;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
    font-family: var(--font-family);
    font-size: 16px;
}
.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 300;
}
.btn.primary:hover { transform: translateY(-1px); }
.btn.secondary, .btn.ghost {
    background: #fff;
    border-color: var(--border);
    color: #334155;
    font-weight: 300;
}
.btn.secondary:hover, .btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-gradient {
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    border: 1px solid transparent;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-family);
}
.btn-gradient:hover { color: #fff; opacity: 0.95; }

.btn-outline-secondary.nav-btn {
    border-width: 1px;
    border-color: #d7d9e0;
    color: #111827;
}
.btn-outline-secondary.nav-btn:hover {
    color: #4F46E5;
    border-color: #cfd2da;
    background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(147,51,234,0.05));
}

.btn-white {
    background: #fff;
    color: #4F46E5;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    transition: all .25s;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
    border: none;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,.26);
    color: #4F46E5;
}

.btn-gradient-white {
    background-color: #ffffff !important;
    padding: 9px 30px;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4F46E5;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-family);
}
.btn-gradient-white .btn-text-gradient {
    background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.btn-gradient-white:hover { transform: translateY(-2px); }

/* =============================================
   UTILITIES
   ============================================= */

.gradient-text {
    background: linear-gradient(90deg, #9333EA, #4F46E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section { padding: 56px 6vw; background: #ffffff; }

.section-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}
.section-head .eyebrow {
    color: var(--accent-3);
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
    font-size: 12px;
}
.section-head h2 {
    margin: 0 0 10px;
    color: #000;
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    font-family: var(--font-family);
    line-height: 1.15;
}
.section-head .lede {
    margin: 0;
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
}

.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.card h3, .card h4 { margin: 10px 0 6px; color: #0f172a; }
.card p { margin: 0; color: #4b5563; font-size: 18px; font-weight: 300; }

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

.shadow-top, .shadow-bottom, .sec_shadow { position: relative; }
.shadow-bottom::after, .sec_shadow:after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    background: url(/assets/images/new-feature-section-after.png) no-repeat;
    width: 446px; height: 266px;
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.hero-after-section { position: relative; z-index: 1; }
.hero-after-section .hero-after-card p.text-muted.text-center.mb-4 {
    max-width: 78%;
    margin: auto;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    color: #000;
    line-height: 1.6;
}
.hero-after-section .hero-after-card h2 {
    font-size: clamp(24px, 3.5vw, 44px);
    line-height: 1.15;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.feature-grid .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 20px;
}

.hero-after-section .hero-after-card .feature-card {
    border-radius: 18px;
    padding: 16px;
    background: #FBF9FD;
    min-height: 160px;
    display: flex;
    gap: 16px;
    box-shadow: 5px 5px 9px rgb(160 175 248 / 25%);
    transition: all 0.3s ease;
}
.hero-after-section .hero-after-card .feature-card:hover {background:#F6EDFF;}
.hero-after-section .hero-after-card .feature-card h5 {
    margin: 0;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 24px);
    color: #000;
    font-family: var(--font-family);
}
.hero-after-section .hero-after-card .feature-card p {
    margin: 6px 0 0 0;
    color: #333333;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.hero-after-section .hero-after-card .feature-card .feature-icon {
    flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */

.how-steps-section {
    position: relative;
    overflow: visible;
    background: url("/assets/images/how-steps-section.png") no-repeat center top;
    background-size: cover;
}
.how-steps-section .how-title {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    font-family: var(--font-family);
    line-height: 1.15;
}
.how-steps-section .how-subtitle {
    margin: 0;
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}

.how-steps-section .how-timeline {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 32px auto 0;
    height: 32px;
}
.how-steps-section .timeline-line {
    position: absolute;
    top: -95%; left: -80px; right: -80px;
    height: 2px;
    background: linear-gradient(90deg, #cccccc 0%, #9333ea 50%, #cccccc 100%);
    transform: translateY(-50%);
    z-index: 1;
    margin: 36px auto 40px;
    width: 100%;
}
.how-steps-section .timeline-dot {
    position: absolute;
    top: -12px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #DBE2FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: #ffffff;
    z-index: 2;
    font-family: var(--font-family);
    background: #B96DE8;
}
.how-steps-section .timeline-dot.left   { left: 90px; }
.how-steps-section .timeline-dot.center { left: calc(50% - 16px); }
.how-steps-section .timeline-dot.right  { right: 90px; }

.how-steps-section .how-card {
    border-radius: 18px;
    padding: 20px 18px 24px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.how-steps-section .how-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(147,51,234,0.2));
    color: #4F46E5;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.how-steps-section.how-text { padding: 10px 15px; }
.how-steps-section .how-card h5 {
    margin: 0;
    font-weight: 600;
    font-size: clamp(18px, 2vw, 24px);
    color: #000;
    font-family: var(--font-family);
}
.how-steps-section .how-card p {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.how-steps-section .how-visual {
    border-radius: 14px;
    padding: 8px;
    background: #fff;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}
.how-steps-section .how-card .how-visual img {
    width: 100%; height: auto;
    max-height: 220px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}
.how-steps-section .how-card .how-icon img { width: 40px; }

/* =============================================
   DELIVER FASTER SECTION
   ============================================= */

.deliver-section .deliver-text h2 {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    font-family: var(--font-family);
    line-height: 1.15;
}
.deliver-section .deliver-lede {
    color: #000;
    margin-bottom: 18px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.deliver-section .deliver-visual { position: relative; text-align: center; }
.deliver-section .deliver-visual img { width: 100%; max-width: 520px; height: auto; display: inline-block; }

.deliver-section .feature-list { list-style: none; padding: 0; margin: 0; }
.deliver-section .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--font-family);
}
.deliver-section .feature-list .icon {
    min-width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.deliver-section .feature-list strong {
    font-size: clamp(17px, 1.8vw, 22px);
    color: #000;
    font-weight: 500;
    display: block;
    font-family: var(--font-family);
}
.deliver-section .feature-list p {
    margin: 4px 0 0;
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    font-weight: 300;
    font-family: var(--font-family);
}

/* =============================================
   TEAMS SECTION
   ============================================= */

.teams-section {
    position: relative;
    overflow: visible;
    background: url("/assets/images/teams-section-bg.png") no-repeat center top;
    background-size: cover;
}
.teams-section .teams-title {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    font-family: var(--font-family);
    line-height: 1.15;
}
.teams-section .teams-subtitle {
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    font-family: var(--font-family);
    max-width: 500px;
    margin: auto;
    line-height: 1.6;
}
.teams-section .team-card {
    background: #FBF9FD;
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 5px 10px 18px #A0AFF840;
    min-height: 210px;
}

.teams-section .team-icon { margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;  background: linear-gradient(90deg, #4F46E5 0%, #9333EA 85.24%);
    width: 106px;
    height: 106px;
    border-radius: 50%; 
}

    .teams-section .team-icon svg{
     transition: ease-in 300ms;   
    }
    .teams-section .team-card:hover svg {
        transform:scale(1.25);
        transition: ease-in 300ms;
    }

.team-icon img { width: 80px; }
.team-card h5 {
    margin: 6px 0 6px;
    font-weight: 500;
    color: #000;
    font-size: clamp(18px, 2vw, 24px);
    font-family: var(--font-family);
}
.team-card p {
    margin: 0;
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    font-family: var(--font-family);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
    position: relative;
    overflow: visible;
    background: url("/assets/images/testimonials-section-bg.png") no-repeat center top;
    background-size: cover;
}
.testimonials-section .testimonials-title {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #000;
    font-family: var(--font-family);
    line-height: 1.15;
}
.testimonials-section .testimonials-subtitle {
    color: #000;
    margin: 0 0 24px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.testimonials-section .testimonial-card {
    background: #FBF9FD;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 5px 10px 18px #A0AFF840;
    height: 100%;
}

.testimonials-section .testimonial-card:hover {
 box-shadow:none;
}

.testimonials-section .testimonial-card p {
    margin: 10px 0 14px;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.testimonials-section .testimonial-card .stars { color: #FFB400; letter-spacing: 1px; font-weight: 700; }
.testimonials-section .testimonial-person {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}
.testimonial-person img { width: 40px; height: 40px; }
.testimonial-person strong {
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font-family);
}
.testimonials-section .testimonial-person span {
    color: #000;
    font-size: 14px;
    font-family: var(--font-family);
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-wrap { padding: 80px 6vw; }
.cta-box {
    border-radius: 28px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    padding: 76px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-blob1 {
    position: absolute; top: -80px; right: -80px;
    width: 340px; height: 340px; border-radius: 50%;
    background: rgba(255,255,255,.07); pointer-events: none;
}
.cta-blob2 {
    position: absolute; bottom: -100px; left: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,.04); pointer-events: none;
}
.cta-box h2 {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.02em;
    position: relative; z-index: 1;
    font-family: var(--font-family);
    line-height: 1.15;
}
.cta-box p {
    color: rgba(255,255,255,.80);
    max-width: 490px;
    margin: 0 auto 34px;
    position: relative; z-index: 1;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.cta-note {
    color: rgba(255,255,255,.58);
    font-size: 14px;
    font-weight: 300;
    margin-top: 18px;
    position: relative; z-index: 1;
    font-family: var(--font-family);
}

/* Old CTA compat */
.cta-section {
    position: relative;
    padding: 40px 26px;
    background: url('/assets/images/cta_bg.png') center center / cover no-repeat;
    border-radius: 16px;
    overflow: hidden;
    margin: 40px 6vw 80px;
}
.cta-overlay { position: absolute; inset: 0; background: #4F46E580; pointer-events: none; }
.cta-section .container { position: relative; z-index: 1; }
.cta-kicker {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-family);
}
.cta-subtitle {
    color: #fff;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 300;
    font-family: var(--font-family);
}
.cta { padding-bottom: 90px; }
.cta-card {
    background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(147,51,234,0.12));
    border: 1px solid rgba(79,70,229,0.18);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    align-items: center;
}
.cta .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section { padding: 80px 6vw; }
.faq-intro h2 {
    font-size: clamp(24px, 3.5vw, 44px) !important;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    font-family: var(--font-family);
    line-height: 1.15;
}
.faq-intro p {
    margin: 0;
    color: #000;
    font-size: clamp(15px, 1.5vw, 18px) !important;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 25px;
    overflow: hidden;
    background: #f4f0ff;
}
.faq-accordion .accordion-button {
    background: linear-gradient(90deg, rgba(79,70,229,0.1) 0%, rgba(147,51,234,0.1) 85.24%);
    font-weight: 600;
    color: #000;
    box-shadow: none;
    font-size: 18px;
    font-family: var(--font-family);
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background: #ede6ff;
    box-shadow: none;
    border-radius: 25px;
}
.faq-accordion .accordion-body {
    background: #f9f6ff;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
}
.faq-accordion .accordion-button::after {
    background-image: url('/assets/images/plus-accordions.png');
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url('/assets/images/minus-accordions.png');
    transform: none;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    padding: 50px 6vw 0;
    color: #000;
    background: linear-gradient(180deg, #eeecfc 0%, #f3ebfe 100%);
}
.footer-top { padding-bottom: 40px; }
.footer-brand h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-family);
}
.site-footer .footer-top .footer-brand p {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 300;
    font-family: var(--font-family);
    line-height: 1.6;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    margin-right: 6px;
}
@media (min-width: 992px) { .footer-brand { width: 60%; } }

.site-footer .footer-top h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-family);
}
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 8px; }
.site-footer .footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family);
}

.site-footer .footer-cta { padding: 28px 16px; text-align: center; }
.site-footer .footer-cta h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font-family);
}
.footer-cta .cta__text {
    margin: 15px auto !important;
    font-size: 18px !important;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-family);
    width: 80%;
}
.footer-cta-item { padding: 10px; }
.footer-cta-text {
    background: linear-gradient(90deg, rgba(79,70,229,0.25) 0%, rgba(147,51,234,0.25) 85.24%);
    border-radius: 11px;
    padding: 50px 40px;
}
.footer-cta-icon {
    max-width: 38px; height: 38px;
    width: 100%;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.footer-cta h6 {
    margin: 0 0 4px;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--font-family);
}
.site-footer .footer-cta .footer-cta-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--font-family);
}
.footer-bottom { padding: 16px 0 24px; color: #000; }
.footer-copy {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family);
}
.footer-bottom-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-bottom-links a {
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-family);
}
.site-footer .footer-bottom .footer-bottom-links img {
    width: 14px; height: 14px;
    object-fit: contain;
    margin-right: 4px;
    vertical-align: middle;
}

/* =============================================
   MISC / COMPAT
   ============================================= */

.workflow-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: center;
}
.workflow-content img { width: 100%; border-radius: 12px; border: 1px solid var(--border); }
.workflow .list .row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px; padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 10px;
}
.workflow .bullet {
    width: 28px; height: 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff;
}

.home-footer {
    padding: 26px 6vw;
    border-top: 1px solid var(--border);
    background: #f8f9ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #4b5563;
}
.home-footer .brand { display: inline-flex; align-items: center; gap: 8px; color: #0f172a; font-weight: 700; }
.home-footer img { height: 26px; width: auto; }

.run-through {
    padding: 100px 6vw;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,246,255,0.9));
}
.step-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(99,102,241,0.2);
    padding: 32px;
    position: relative;
    min-height: 320px;
    display: flex; flex-direction: column; gap: 14px;
}
.step-card h5 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; font-family: var(--font-family); }
.step-card p  { margin: 0; color: #4b5563; font-size: 18px; font-weight: 300; }
.step-number {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(147,51,234,0.2));
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; color: #4F46E5;
}
.step-visual { border-radius: 18px; border: 1px solid rgba(99,102,241,0.2); background: #fff; }
.step-icon {
    position: absolute; bottom: 16px; right: 16px;
    font-size: 1.5rem;
    background: rgba(99,102,241,0.12);
    width: 42px; height: 42px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
}
.marker {
    position: absolute; top: -16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: #fff; border: 2px solid rgba(99,102,241,0.8);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.marker:nth-child(1) { left: 0; }
.marker:nth-child(2) { left: calc(50% - 16px); }
.marker:nth-child(3) { right: 0; }
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1000px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual-wrap { display: none; }
}
@media (max-width: 900px) {
    .home-nav {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0px !important;
        padding: 6px 18px;
    }
    .home-nav .nav-links { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
    .home-nav .nav-actions { justify-content: flex-start; }
    .hero-actions { justify-content: flex-start; }
}
@media (max-width: 768px) {
    .feature-icon { margin-bottom: 12px; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
    .how-steps-section .how-card { text-align: left; padding: 0; min-height: unset; }
    .how-steps-section .how-card .card__inner_imageiconbox { display: flex; align-items: center; gap: 10px; }
    .how-steps-section .how-visual { margin: 0; max-width: unset; }

    /* Card body text → 16px on mobile */
    .hero-after-section .hero-after-card .feature-card p,
    .how-steps-section .how-card p,
    .team-card p,
    .testimonial-card p,
    .step-card p,
    .deliver-section .feature-list p,
    .deliver-lede,
    .cta-box p,
    .faq-accordion .accordion-body,
    .faq-accordion .accordion-button,
    .hero-after-section .hero-after-card p.text-muted,
    .how-subtitle,
    .teams-subtitle,
    .testimonials-subtitle,
    .faq-intro p,
    .footer-cta .cta__text,
    .site-footer .footer-top .footer-brand p { font-size: 16px !important;}
    .deliver-section .deliver-text .delivery__started_btn {text-align: center;}
    .teams-section .team-icon{width: 60px; height:60px;}
    .teams-section .team-icon svg{width: 35px; height: 35px;}
    .teams-section .team-card {min-height: unset;padding: 10px 18px;}
    .testimonials-section .testimonial-card .stars{text-align: center; font-size: 25px;}
}

@media (max-width: 600px) {
    .home-hero { padding: 100px 5vw 60px; text-align: center; }
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
    .proof-row { justify-content: center; }
    .no-card-badge { margin-left: 0; }
    .cta .actions { justify-content: flex-start; }
    .cta-wrap { padding: 50px 4vw; }
    .cta-box { padding: 50px 6%; border-radius: 20px; }
    .how-timeline { display: none; }
    .how-card { padding: 0; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
}

@media (max-width: 480px) {
    .feature-card { padding: 12px; gap: 10px; }
    .site-footer .footer-bottom .footer-bottom-links { border-top: 1px solid #ddd; padding-top: 15px; gap: 4px; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
}

@media (max-width: 360px) {
    .feature-card { padding: 10px; gap: 8px; }
    .feature-icon { max-width: 80px; }
    .hero-after-section .hero-after-card .feature-card { min-height: unset; }
}

/* =============================================
   FADE ANIMATIONS
============================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Visible state */
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =============================================
   DELIVER IMAGE ZOOM ON HOVER
   ============================================= */

.deliver-visual {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 16px;
}
.deliver-visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: inline-block;
    transition: transform 0.4s ease;
    border-radius: 16px;
}
.deliver-visual:hover img {
    transform: scale(1.05);
}