:root {
    --red: #e00000;
    --darkred: #b00000;
    --yellow: #ffcc00;
    --black: #0d1117;
    --text: #111827;
    --muted: #6b7280;
    --soft: #f8fafc;
    --line: #e5e7eb
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif
}

html {
    scroll-behavior: smooth
}

body {
    background: #fff;
    color: var(--text);
    overflow-x: hidden
}

a {
    text-decoration: none
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: auto
}

section {
    padding: 90px 0
}

:root {
    --red: #d71920;
    --dark-red: #b80009;
    --red-dark: #b10f16;
    --red-soft: #fff2f3;
    --white: #ffffff;
    --black: #121212;
    --grey: #555;
    --text: #444444;
    --line: #ececec;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    --radius: 22px;
    --radius-sm: 16px;
    --container: 1280px;
    --yellow: #ffc107;
    --yellow-dark: #d89b00;
    --soft-yellow: #fff8e1;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--black);
    white-space: nowrap;
}

.logo span {
    color: var(--red);
}

nav>ul {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

nav li {
    list-style: none;
}

nav>ul>li>a {
    font-size: 14px;
    font-weight: 700;
    color: #121212 !important;
    padding: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: inherit;
}

.btn-red {
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: var(--white);
    box-shadow: var(--red-shadow);
}

.btn-red:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--red));
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--yellow);
    color: var(--black);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(255, 196, 0, .14);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
}


.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 82px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1280px, 94vw);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 28px 28px;
    box-shadow: var(--shadow);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transition: 0.22s ease;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 24px;
}

.mega-feature {
    background: linear-gradient(135deg, #fff2f3, var(--soft-yellow), #ffffff);
    border: 1px solid #ffe58a;
    padding: 26px;
    border-radius: 24px;
}

.mega-feature h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.mega-feature p {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 18px;
}

.mega-col h4 {
    color: var(--red);
    margin-bottom: 14px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-left: 4px solid var(--yellow);
    padding-left: 10px;
}

.mega-link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    transition: .2s ease;
}

.mega-link:hover {
    background: linear-gradient(90deg, #fff3f4, var(--soft-yellow));
    transform: translateX(3px);
}

.mega-link i {
    color: var(--red);
    background: var(--soft-yellow);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 16px;
    margin-top: 0;
    min-width: 34px;
}

.mega-link strong {
    display: block;
    color: #121212;
    font-size: 14px;
    margin-bottom: 3px;
}

.mega-link span {
    display: block;
    font-size: 12px;
    color: var(--grey);
    line-height: 1.4;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 1080px) {
    nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }

    nav.active {
        display: block;
    }

    nav>ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        padding: 20px 0;
        box-shadow: none;
        border: 0;
    }

    .has-mega:hover .mega-menu {
        display: block;
        transform: none;
    }

    .mega-grid,
    .hero-grid,
    .journey,
    .feature-band {
        grid-template-columns: 1fr;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .ecosystem-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 60px;
    }

    .hero-stats,
    .ecosystem-grid,
    .industry-grid,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-visual {
        min-height: auto;
    }

    .dashboard-stack {
        height: auto;
        display: grid;
        gap: 18px;
    }

    .screen-card,
    .screen-card.main,
    .screen-card.left,
    .screen-card.bottom,
    .screen-card.small {
        position: static;
        width: 100%;
        transform: none;
    }

    .feature-band {
        padding: 32px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .floating-note {
        position: static;
        margin-top: 18px;
        max-width: 100%;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 5px;
        border-radius: 30px;
        font-weight: 800;
        font-size: 11px;
    }

    .nav-wrap {
        gap: 18px;
    }

    nav>ul {
        gap: 0;
    }

    nav>ul>li>a {
        font-size: 14px;
        font-weight: 700;
        padding: 8px 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 991px) {

    .mega-menu {
        position: static;
        width: 100%;
        transform: none !important;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: all .3s ease;
    }

    .has-mega.active .mega-menu {
        opacity: 1;
        display: block;
        max-height: 2000px;
        padding: 0px;
    }

    .has-mega:hover .mega-menu {
        opacity: 0;
        display: block;
        max-height: 0;
    }

    .has-mega.active:hover .mega-menu {
        opacity: 1;
        display: block;
        max-height: 2000px;
    }

    nav.active {
        display: block;
        height: 315px;
        overflow-y: scroll;
    }
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--soft-yellow);
    display: flex;
    color: #e50914;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(255, 196, 0, .20);
}

.hero {
    min-height: 100vh;
    background: linear-gradient(110deg, rgba(10, 10, 10, .94) 0%, rgba(170, 0, 0, .9) 56%, rgba(255, 190, 0, .9) 100%), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 60px;
    align-items: center
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 25px
}

.hero h1 {
    font-size: 68px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 25px
}

.hero h1 span {
    color: var(--yellow)
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #f3f4f6;
    margin-bottom: 35px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-primary,
.btn-yellow,
.btn-dark {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 700
}

.btn-primary {
    background: var(--red);
    color: #fff
}

.btn-yellow {
    background: var(--yellow);
    color: #111827
}

.btn-dark {
    background: #111827;
    color: #fff
}

.mockup {
    background: #fff;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .32)
}

.mockup-header {
    background: linear-gradient(135deg, var(--darkred), var(--red));
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    margin-bottom: 20px
}

.mockup-header h3 {
    font-size: 26px;
    margin-bottom: 8px
}

.mockup-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid #eef0f4
}

.mockup-card strong {
    color: #111827;
    display: block;
    margin-bottom: 6px
}

.mockup-card p {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
    line-height: 1.5
}

.progress {
    height: 10px;
    background: #e5e7eb;
    border-radius: 99px;
    overflow: hidden;
    margin-top: 12px
}

.progress span {
    display: block;
    height: 100%;
    width: 78%;
    background: var(--yellow)
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title h2 {
    font-size: 46px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 15px
}

.section-title p {
    max-width: 850px;
    margin: auto;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .3s;
    position: relative;
    overflow: hidden
}

.card:before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    background: rgba(224, 0, 0, .06);
    border-radius: 50%
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .1)
}

.icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--soft-yellow);
    display: flex;
    color: #e50914;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px
}

.card h3 {
    font-size: 23px;
    margin-bottom: 14px;
    color: #111827
}

.card p,
.card li {
    color: #6b7280;
    line-height: 1.75;
    font-size: 15px
}

.card ul {
    margin-top: 14px;
    padding-left: 20px
}

.dark-section {
    background: #0d1117
}

.dark-section .section-title h2 {
    color: #fff
}

.dark-section .section-title p {
    color: #cbd5e1
}

.dark-card {
    background: #161b22;
    border: 1px solid #252c36
}

.dark-card h3 {
    color: #fff
}

.dark-card p,
.dark-card li {
    color: #cbd5e1
}

.feature-strip,
.faq-section {
    background: #f8fafc
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.feature-box {
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    border-top: 6px solid var(--red);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06)
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 20px
}

.feature-box p {
    color: #6b7280;
    line-height: 1.7
}

.product-section {
    background: #fff7f7
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.product {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #ffd4d4
}

.product h3 {
    color: #c00000;
    margin-bottom: 8px
}

.product p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6
}

.mini-cta {
    background: #fff7f7;
    padding: 60px 0
}

.mini-cta-box {
    background: linear-gradient(135deg, #111827, var(--red));
    color: #fff;
    border-radius: 32px;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px
}

.mini-cta-box h2 {
    font-size: 34px;
    margin-bottom: 10px
}

.mini-cta-box p {
    color: #f3f4f6
}

.faq-box {
    max-width: 950px;
    margin: auto
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
    border-left: 5px solid var(--red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05)
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 8px
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.demo-content h2 {
    font-size: 42px;
    margin-bottom: 18px
}

.demo-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 22px
}

.demo-content ul {
    padding-left: 20px
}

.demo-content li {
    margin-bottom: 12px;
    font-weight: 700
}

.demo-form {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .09);
    border: 1px solid #eee
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 15px 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 14px
}

.demo-form textarea {
    height: 120px;
    resize: none
}

.demo-form button {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer
}

.cta {
    background: linear-gradient(135deg, rgba(12, 12, 12, .94), rgba(180, 0, 0, .92)), url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center
}

.cta h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 18px
}

.cta p {
    max-width: 850px;
    margin: 0 auto 35px;
    color: #f3f4f6;
    font-size: 18px;
    line-height: 1.8
}

.footer {
    background: #050505;
    color: #fff;
    text-align: center;
    padding: 40px 0
}

.footer p {
    color: #9ca3af;
    line-height: 1.8
}

.footer a {
    color: var(--yellow)
}

@media(max-width:1100px) {

    .hero-grid,
    .grid-3 {
        grid-template-columns: 1fr 1fr
    }

    .features,
    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero h1 {
        font-size: 52px
    }
}

@media(max-width:900px) {

    .pricing-grid,
    .demo-grid {
        grid-template-columns: 1fr
    }

    .price-card.featured {
        transform: none
    }

    .mini-cta-box {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hero {
        padding: 30px 0 80px
    }

    .hero-grid,
    .grid-3,
    .features,
    .product-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 40px
    }

    .section-title h2 {
        font-size: 32px
    }

    .cta h2 {
        font-size: 34px
    }

    .logo {
        font-size: 24px
    }
}

.send-ai-section {
    padding: 100px 0;
    background: #fff;
}

.send-section-title1 {
    text-align: center;
    margin-bottom: 60px;
}

p {

    line-height: 1.8;
}

.send-section-title1 span {
    display: inline-block;
    padding: 8px 18px;
    background: #ffe8c7;
    color: #d62828;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.send-section-title1 h2 {
    font-size: 52px;
    margin: 20px 0 15px;
    color: #111;
    font-weight: 900;
}

.send-section-title1 p {
    color: #666;
    font-size: 18px;
}

.send-ai-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.send-ai-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.send-ai-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg,
            #ffd166,
            #ff9f1c);
    border-radius: 50%;
    top: -70px;
    right: -70px;
    opacity: .15;
}

.send-ai-main {
    border-left: 6px solid #e63946;
}

.send-ai-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            #e63946,
            #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.send-ai-icon i {
    color: #fff;
    font-size: 34px;
}

.send-ai-main h3,
.send-ai-list h3 {
    font-size: 32px;
    color: #111;
    margin-bottom: 20px;
}

.send-ai-main p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.send-ai-tag {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    background: #fff4d8;
    color: #c1121f;
    font-weight: 600;
}

.send-ai-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.send-ai-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
}

.send-ai-list li:last-child {
    border-bottom: none;
}

.send-ai-list i {
    width: 34px;
    height: 34px;
    background: #ffe8c7;
    color: #d62828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

@media(max-width:991px) {

    .send-ai-wrapper {
        grid-template-columns: 1fr;
    }

    .send-section-title1 h2 {
        font-size: 38px;
    }
}

.send-workflow-section {
    padding: 100px 0;
    background: #f8fafc;
}

.send-section-heading2 {
    text-align: center;
    margin-bottom: 70px;
}

.send-section-heading2 span {
    display: inline-block;
    background: #ece9ff;
    color: #d71920;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.send-section-heading2 h2 {
    font-size: 52px;
    font-weight: 900;
    color: #101828;
    margin-bottom: 10px;
}

.send-section-heading2 p {
    color: #667085;
    font-size: 18px;
}

.send-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

.send-workflow-grid::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(90deg,
            #d71920,
            #8c7dff);
    z-index: 1;
}

.send-step-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .35s;
}

.send-step-card:hover {
    transform: translateY(-10px);
}

.send-step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 42px;
    font-weight: 700;
    color: #ffeeee;
}

.send-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: var(--soft-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.send-step-icon i {
    color: #e50914;
    font-size: 28px;
}

.send-step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #101828;
}

.send-step-card p {
    color: #667085;
    line-height: 1.8;
}

@media(max-width:991px) {

    .send-workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .send-workflow-grid::before {
        display: none;
    }
}

@media(max-width:767px) {

    .send-workflow-grid {
        grid-template-columns: 1fr;
    }

    .send-section-heading2 h2 {
        font-size: 36px;
    }

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

/* Pricing Cards */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.featured {
    background: linear-gradient(135deg, var(--red), #9b0008);
    border-bottom: 8px solid var(--yellow);
    color: #fff;
    transform: scale(1.05);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #e50914;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.price {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 7px;
}

.pricing-card p {
    margin-bottom: 10px;
    line-height: 23px;
}

.price small {
    font-size: 16px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 10px 0;
    line-height: 1.6;
}

.pricing-card ul li:before {
    content: "✓";
    color: #e50914;
    font-weight: 700;
    flex: 0 0 18px;
    /* fixed width for icon column */
}

.btn-wrap {
    display: flex;
    gap: 15px;
}

.btn-wrap .btn-plan {
    flex: 1;
    text-align: center;
    display: block;
}

.featured ul li:before {
    color: #fff;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 14px;
    background: #e50914;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
}

.btn-white {
    background: #fff;
    color: #e50914;
}

.eyebrow {
    display: inline-block;
    color: rgb(229, 9, 20);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgb(255, 233, 235);
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-toggle {
    background: linear-gradient(135deg, #ff4d4d, #e50914);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(229, 9, 20, .25);
}

.billing-label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    opacity: .6;
    transition: .3s;
}

.billing-label.active {
    opacity: 1;
}

.billing-label.active {
    opacity: 1;
}

.switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .3);
    border-radius: 50px;
    cursor: pointer;
}

.slider:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 4px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked+.slider:before {
    transform: translateX(28px);
}

/* Pricing Cards */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    font-family: inherit;
    padding: 14px 16px;
    border-radius: 14px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    border-image: initial;
    outline: none;
}

.form-group {
    margin-bottom: 14px;
}

@media(max-width:991px) {

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }

}


.amc-section {
    padding: 50px 0;

}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #ffe9eb;
    color: #e50914;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1.6px;
    margin-bottom: 18px;
    color: #000;
}

.section-head p {
    color: var(--text);
    font-size: 17px;
}

.amc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amc-card {
    background: #fff;
    border-radius: 28px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .3s;
    border: 1px solid #ececec;
}

.amc-card:hover {
    transform: translateY(-8px);
}

.amc-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--soft-yellow);
    color: #e50914;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.amc-icon i {
    color: #e50914;
    font-size: 28px;
}

.amc-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
}

.amc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amc-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #5f6c80;
    line-height: 1.6;
}

.amc-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e50914;
    font-weight: 700;
}

.btn:hover {
    color: #000 !important;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    width: min(520px, 96vw);
    background: var(--white);
    border-radius: 28px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 18px;
    cursor: pointer;
    font-size: 22px;
    color: var(--red);
}

.popup h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.popup p {
    color: var(--grey);
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-family: inherit;
    outline: none;
}

.form-group textarea {
    min-height: 95px;
    resize: vertical;
}

@media(max-width:991px) {

    .amc-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 34px;
    }
}


/* FAQ */

.faq {
    max-width: 900px;
    margin: 0 auto 60px;
}

.qa {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .3s;
}

.qa:hover {
    transform: translateY(-3px);
}

.q {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.q b {
    font-size: 18px;
    color: #1f2937;
    font-weight: 700;
}

.q span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffe5e5;
    color: #e53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: .3s;
}

.a {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #6b7280;
    line-height: 1.8;
    transition: all .4s ease;
}

.qa.active .a {
    max-height: 250px;
    padding: 0 25px 25px;
}

.qa.active .q span {
    background: #e53935;
    color: #fff;
    transform: rotate(45deg);
}

/* filed-cta */

.filed-cta {
    background: radial-gradient(circle at top right, rgba(255, 193, 7, .45), transparent 35%), linear-gradient(135deg, var(--red), #8e0008);
    border-radius: 25px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: #fff;
    margin-bottom: 50px;
    box-shadow: 0 20px 50px rgba(229, 57, 53, .25);
}

.filed-cta h3 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 900;
}

.filed-cta p {
    line-height: 1.8;
    max-width: 700px;
}

.filed-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Contact Area */

.filed-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.filed-card {
    background: linear-gradient(135deg, #fff2f3, var(--soft-yellow));
    border: 1px solid #ffe08a;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.filed-card h3 {
    color: #000000;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
}

.filed-card p {
    line-height: 1.8;
    color: #1f2937;
}

.filed-card a {
    color: #e53935;
    text-decoration: none;
    font-weight: 500;
}

footer {
    background: #080808;
    color: #ccc;
    padding: 55px 0 24px;
    border-top: 6px solid var(--yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 35px;
}

footer h3,
footer h4 {
    color: var(--white);
    margin-bottom: 14px;
}

footer p,
footer a {
    color: #aaa;
    font-size: 14px;
    display: block;
    margin-bottom: 9px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    font-size: 13px;
    color: #888;
}

@media(max-width:767px) {

    .filed-cta {
        display: block;
    }

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

.btn-wrap .btn {
    width: 170px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-loader {
    display: inline-flex;
    width: 20px;
    justify-content: center;
    align-items: center;
    margin-left: 6px;
    flex-shrink: 0;
}

.btn-loader span {
    width: 6px;
    height: 6px;
    background: #0a26c5;
    /* dot color */
    border-radius: 50%;
    animation: jump 0.6s infinite ease-in-out;
}

.btn-loader span:nth-child(2) {
    animation-delay: 0.15s;
}

.btn-loader span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes jump {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: .4;
    }

    40% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* ── Type tabs (matches existing red/yellow theme) ── */
.sp-type-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.sp-type-tabs {
    display: inline-flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 5px;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}

.sp-type-tab {
    padding: 11px 26px;
    border: none;
    border-radius: 50px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.sp-type-tab.active {
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: #fff;
    box-shadow: 0 6px 18px rgba(229, 9, 20, .28);
}

/* Panel visibility */
.sp-type-panel {
    display: none;
}

.sp-type-panel.active {
    display: block;
}


@media(max-width:767px) {

    .filed-cta {
        display: block;
    }

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

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

    .pricing-cards {
        display: block;
    }

    .btn-primary,
    .btn-yellow,
    .btn-dark {

        width: 100%;
        text-align: center;
    }

    .hero p {
        margin-bottom: 15px;
    }

    .hero-grid {
        gap: 25px;
    }

    .mockup {
        padding: 18px;
    }

    .card {
        padding: 20px;
    }

    .pricing-toggle-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .pricing-card {
        padding: 20px;
    }

    .section-head h2 {
        font-size: 25px;
    }

    .panel-red,
    .panel-white,
    .cta {
        padding: 20px;
    }

    .btn-wrap .btn {
        padding: 10px 15px !important;
        border-radius: 30px;
        font-weight: 800;
        font-size: 13px !important;
    }

    .send-step-card {
        padding: 20px;
    }

    section {
        padding: 40px 0px !important;
    }

    .send-section-title1 h2 {
        font-size: 25px;
    }

    .section-title h2 {
        font-size: 25px !important;
    }

    .section-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .send-ai-card {
        padding: 20px;
    }

    .section-head {
        text-align: center;
        max-width: 800px;
        margin: 0px auto 20px;
    }

    .amc-card {
        padding: 20px;
    }

    .filed-cta {
        padding: 20px;
    }

    .filed-cta-buttons .btn {
        width: 100%;
    }

    .filed-grid-2 {
        display: block;
    }

    .filed-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.btn-wrap {
    display: block;
}
