*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --c-bg: #f8f6f1;
    --c-surface: #ede9e0;
    --c-border: rgba(30, 24, 16, 0.1);
    --main: #4169E1;
    --c-magenta: #00AA13;
    --c-white: #1a1510;
    --c-muted: #8a8070;
    --c-dim: rgba(26, 21, 16, 0.55);
    --font-display: 'Poppins';
    --font-body: 'Poppins';
    --font-mono: 'Poppins';
    --radius-card: 2px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
    font-family: var(--font-display);
}
img {
    max-width: 100%;
}
p {
    color: #000;
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}
p:last-child {
    margin-bottom: 0;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.banner .demovideo i {
    font-size: 22px;
    width: 22px;
    height: 22px;
    display: inline-block;
}
.banner .demovideo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.button-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.button-block a {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    background-color: var(--main);
    padding: 10px 12px 10px 12px;
    position: relative;
    bottom: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 50px;
    gap: 8px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.button-block a i {
    font-size: 25px;
}
.button-block a strong {
    line-height: 1em;
}
.button-block a.introvideo-btn {
    background-color: #f09b1d;
    color: #fff;
}
.button-block a.demovideo-btn {
    background: #0fb158;
    color: #fff;
}
.button-block a.buy-now {
    background: #ffd615;
    color: #000;
}
.button-block a:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    bottom: 5px;
}
.button-block a small {
    font-size: 14px;
    display: block;
}
/* ─── UTILITY ───────────────────────────────────────── */
.container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--main);
    border: 1px solid rgba(232, 66, 10, 0.3);
    padding: 5px 12px;
    background: rgba(232, 66, 10, 0.06);
}
/* ─── HERO ──────────────────────────────────────────── */
.hero {
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(-55deg,
            transparent,
            transparent 60px,
            rgba(232, 66, 10, 0.025) 60px,
            rgba(232, 66, 10, 0.025) 61px);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}
.blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -80px;
    background: rgba(107, 58, 238, 0.1);
    animation-delay: 0s;
}
.blob-2 {
    width: 350px;
    height: 350px;
    bottom: -50px;
    left: 10%;
    background: rgba(232, 66, 10, 0.08);
    animation-delay: 3s;
}
.hero-left {
    position: relative;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    animation: fade-up 0.7s 0.1s ease both;
}
.hero-eyebrow .line {
    width: 32px;
    height: 2px;
    background: var(--main);
}
.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 50px);
    line-height: 0.96;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
    animation: fade-up 0.7s 0.2s ease both;
}
.hero-h1 em {
    color: var(--main);
    text-shadow: none;
}
.hero-h1 .outline {
    -webkit-text-stroke: 1.5px rgba(26, 21, 16, 0.2);
    color: transparent;
}
.hero-desc {
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid var(--c-magenta);
    animation: fade-up 0.7s 0.3s ease both;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fade-up 0.7s 0.4s ease both;
}
/* ─── SECTION BASE ──────────────────────────────────── */
section {
    position: relative;
}
.section-header {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}
.section-header.left {
    text-align: left;
}
.main-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4.5vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1em;
}
.main-title em {
    color: var(--main);
}
.section-header p {
    margin-top: 5px;
}
/* ─── FEATURES ──────────────────────────────────────── */
.features {
    padding: 40px 0;
    background-color: #fff;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feat-card {
    background: #fff;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 20px;
}
.feat-card .card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--glow-color, rgba(200, 255, 0, 0.06));
    filter: blur(60px);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: opacity var(--transition);
    opacity: 0;
}
.feat-card:hover .card-glow {
    opacity: 1;
}
.feat-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--wi-color, var(--main));
    transition: background var(--transition), color var(--transition);
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
}
.feat-icon img {
    width: 40px;
}
.feat-h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: #000;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 12px;
    color: var(--c-white);
    display: block;
}
.fc-1 { grid-column: span 4; }
.fc-2 { grid-column: span 8; }
.fc-3 { grid-column: span 4; }
.fc-4 { grid-column: span 4; }
.fc-5 { grid-column: span 4; }
.feat-card.featured {
    background: var(--main);
    border-color: transparent;
}
.feat-card.featured .feat-h3 {
    color: #fff;
}
.feat-card.featured .feat-p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}
.feat-card.featured .feat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: transparent;
}
.feat-card.featured:hover {
    border-color: transparent;
    transform: translateY(-3px);
}
.fc-2-inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    height: 100%;
}
.fc-2-inner .fc-2-content {
    flex: 1;
}
.fc-2-inner .fc-2-image {
    width: 220px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: -36px;
    margin-right: -32px;
    opacity: 0.55;
    transition: opacity var(--transition);
}
.feat-card:hover .fc-2-image {
    opacity: 0.85;
}
.fc-2-inner .fc-2-image img {
    width: 100%;
    filter: grayscale(0.4) contrast(1.05);
    border: 2px solid var(--c-magenta);
    box-shadow: 0 0 20px rgba(107, 58, 238, 0.15);
}
/* ─── HOW IT WORKS ──────────────────────────────────── */
.steps {
    padding: 40px 0;
    background-color: var(--c-bg);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.step {
    padding: 0 15px;
    position: relative;
    z-index: 1;
}
.step:nth-child(even) {
    margin-top: 40px;
}
.step-num-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
}
.step-ghost {
    font-family: var(--font-display);
    font-size: 70px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(26, 21, 16, 0.3);
    position: absolute;
    top: -20px;
    left: 8px;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    transition: -webkit-text-stroke var(--transition);
}
.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--step-color, var(--main));
}
/* ─── WHY ───────────────────────────────────────────── */
.why {
    padding: 40px 0;
    background-color: var(--c-bg);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--c-border);
    transition: padding-left var(--transition);
    cursor: default;
}
.why-item:first-child {
    padding-top: 0;
}
.why-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--wi-color, var(--main));
    transition: background var(--transition), color var(--transition);
    background: #fff;
    border-radius: 12px;
}
.why-icon img {
    width: 40px;
}
.why-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.why-item-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    display: block;
    text-transform: capitalize;
}
.why-visual {
    position: relative;
}
.why-img-frame img {
    display: block;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.why-border-deco {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid rgba(200, 255, 0, 0.2);
    z-index: -1;
    pointer-events: none;
}
.vel-label {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--main);
    margin-bottom: 10px;
}
.vel-bar-track {
    height: 3px;
    background: rgba(26, 21, 16, 0.1);
    position: relative;
    overflow: hidden;
}
.vel-bar-fill {
    height: 100%;
    width: 78%;
    background: var(--main);
    box-shadow: 0 0 12px rgba(232, 66, 10, 0.4);
    animation: bar-grow 1.6s 0.5s ease both;
    transform-origin: left;
}
@keyframes bar-grow {
    from { width: 0; }
    to { width: 78%; }
}
.vel-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}
.vel-meta span {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    color: var(--c-muted);
}
.vel-meta strong {
    color: var(--main);
    font-weight: 700;
}
/* ─── SCREENS ───────────────────────────────────────── */
.screens {
    padding: 40px 0;
}
.screens-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.TABROW {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 20px 0;
    gap: 15px;
}
.TABROW .TAB {
    min-width: 197px;
    height: 50px;
    padding: 15px 15px;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
    color: #606060;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 0 1px #d8d8d8 inset;
    cursor: pointer;
    transition: all 0.5s;
    border-radius: 5px;
    background: #fff;
}
.TABROW .TAB.active {
    background-color: var(--main);
    color: #fff;
    box-shadow: none;
}
.screens ul {
    display: none;
    grid-template-columns: repeat(4, 1fr);
}
.screens ul.active {
    display: grid;
    gap: 20px;
}
.screens ul li img {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
/* ─── SERVICES ──────────────────────────────────────── */
.services {
    padding: 40px 0;
}
.services-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.services ul {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
}
.services ul li {
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0;
    background-color: #fff;
}
.services ul li strong {
    font-size: 18px;
    padding: 15px;
    display: block;
    font-weight: 600;
    color: #000;
    text-align: center;
}
.services ul li img {
    vertical-align: top;
}
/* ─── FAQ ───────────────────────────────────────────── */
section.faq {
    padding: 40px 0;
}
.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
details.faq-item {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .07);
    background: white;
    overflow: hidden;
    transition: box-shadow .2s;
}
details.faq-item:hover {
    box-shadow: var(--shadow-sm);
}
details.faq-item[open] {
    box-shadow: var(--shadow-md);
}
details.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    user-select: none;
    color: #000;
    text-transform: capitalize;
}
details.faq-item summary::-webkit-details-marker {
    display: none;
}
details.faq-item summary .faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8f8f8;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all .25s;
}
details.faq-item summary .faq-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
    transition: transform .25s;
}
details.faq-item .faq-ans {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
}
.faq-cta-box {
    background: var(--c-bg);
    border-radius: 48px;
    padding: 48px 40px;
    color: black;
    position: sticky;
    top: 120px;
}
.faq-cta-box h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}
/* ═══════════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .hero-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fc-1, .fc-2, .fc-3, .fc-4, .fc-5 {
        grid-column: span 1;
    }
    .fc-2-inner {
        flex-direction: column;
    }
    .fc-2-inner .fc-2-image {
        width: 100%;
        margin-bottom: 0;
        margin-right: 0;
        align-self: auto;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .step:nth-child(even) {
        margin-top: 0;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-visual {
        order: -1;
    }
    .why-border-deco {
        display: none;
    }
    .services ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-cta-box {
        position: static;
    }
    
}
/* ─── TABLETS (max 768px) ─────────────────────────── */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: 30px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-right {
        display: none;
    }
    .hero-h1 {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.1;
    }
    .hero-eyebrow {
        margin-bottom: 16px;
    }
    .hero-cta {
        gap: 10px;
    }
    /* Features */
    .features {
        padding: 30px 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .fc-1, .fc-2, .fc-3, .fc-4, .fc-5 {
        grid-column: span 1;
    }
    .feat-h3 {
        font-size: 18px;
    }
    /* Steps */
    .steps {
        padding: 30px 0;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .step {
        padding: 0;
    }
    .step-title {
        font-size: 20px;
    }
    /* Why */
    .why {
        padding: 30px 0;
    }
    .why-item {
        gap: 16px;
    }
    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    .why-item-title {
        font-size: 17px;
    }
    /* Screens */
    .screens {
        padding: 30px 0;
    }
    .TABROW {
        gap: 8px;
    }
    .TABROW .TAB {
        min-width: 130px;
        height: 44px;
        font-size: 12px;
        padding: 10px 12px;
    }
    .screens ul.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    /* Services */
    .services {
        padding: 30px 0;
    }
    .services ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .services ul li strong {
        font-size: 15px;
    }
    /* FAQ */
    section.faq {
        padding: 30px 0;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    details.faq-item summary {
        font-size: 16px;
        padding: 12px 16px;
        line-height: normal;
    }
    .faq-cta-box {
        padding: 32px 24px;
        border-radius: 24px;
    }
    .faq-cta-box h3 {
        font-size: 24px;
    }
}
/* ─── MOBILE (max 480px) ─────────────────────────── */
@media (max-width: 630px) {
    /* Hero */
    .hero-h1 {
        font-size: clamp(24px, 9vw, 34px);
    }
    .hero-desc {
        font-size: 14px;
    }
    /* Blobs — hide on small screens for performance */
    .blob-1, .blob-2 {
        display: none;
    }
    /* Features */
    .feat-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    /* Steps */
    .step-ghost {
        font-size: 50px;
    }
    /* Why */
    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 8px;
    }
    .why-icon img {
        width: 28px;
    }
    /* Screens */
    .TABROW .TAB {
        min-width: 100px;
        font-size: 11px;
        height: 40px;
    }
    .screens ul.active {
        grid-template-columns: 1fr 1fr;
    }
    /* Services */
    .services ul {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    /* FAQ */
    details.faq-item summary {
        font-size: 14px;
        padding: 10px 14px;
    }
    .faq-cta-box {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .faq-cta-box h3 {
        font-size: 20px;
    }
    /* Sections padding reduce */
    .features,
    .steps,
    .why,
    .screens,
    .services,
    section.faq {
        padding: 24px 0;
    }
}
@media (max-width: 630px) {
    .screens ul.active {
        grid-template-columns: 100%;
    }
}