/* =====================================================
   WEBTECH AGE CPAAS LANDING PAGE
   RED RESPONSIVE DESIGN
===================================================== */

:root {
    --red: #ff1d25;
    --red-dark: #a8001f;
    --red-light: #fff1f3;
    --red-soft: #fff7f8;
    --black: #151515;
    --text: #444;
    --white: #ffffff;
    --border: #eeeeee;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    --radius: 18px;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eeeeee;
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-button {
    background: var(--red);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 700;
    transition: .3s;
}

.nav-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    border: 0;
    background: var(--red);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 9998;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow);
}

.mobile-menu.show {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu a {
    padding: 13px 10px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.mobile-menu .mobile-cta {
    background: var(--red);
    color: white;
    text-align: center;
    border-radius: 8px;
    margin-top: 10px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 90% 10%, #ffe1e6 0, transparent 35%),
        linear-gradient(135deg, #fff8f9, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 400px;
    height: 400px;
    background: #ffe6ea;
    right: -200px;
    top: 50px;
}

.shape-two {
    width: 200px;
    height: 200px;
    background: #fff0f2;
    left: -100px;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    background: #ffe1e6;
    color: var(--red-dark);
    border: 1px solid #ffcbd3;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    margin: 20px 0;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero-subtitle {
    font-size: 23px;
    line-height: 1.5;
    font-weight: 600;
    color: #333;
    max-width: 620px;
}

.presented {
    margin-top: 18px;
    color: #666;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 23px;
    background: var(--red);
    color: white;
    border-radius: 9px;
    font-weight: 800;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(217,4,41,.22);
}

.primary-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 23px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 9px;
    font-weight: 700;
    transition: .3s;
}

.secondary-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

.hero-trust span {
    color: var(--red);
}


/* =====================================================
   HERO DASHBOARD
===================================================== */

.hero-card {
    position: relative;
    z-index: 2;
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 25px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(100,0,20,.15);
    transform: rotate(1deg);
}

.hero-card-top {
    padding: 14px 18px;
    color: #555;
    font-size: 13px;
    font-weight: 700;
}

.live-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #24b36b;
    border-radius: 50%;
    margin-right: 7px;
}

.dashboard {
    background: linear-gradient(145deg, #fff, #fff3f5);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #f2dfe2;
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.dashboard-title strong {
    color: var(--red);
}

.earning {
    margin-top: 25px;
    padding: 25px;
    border-radius: 15px;
    background: var(--red);
    color: white;
}

.earning small {
    opacity: .85;
}

.earning h2 {
    font-size: 38px;
    margin: 8px 0;
}

.earning span {
    font-size: 13px;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.mini-grid > div {
    padding: 18px;
    background: white;
    border-radius: 13px;
    border: 1px solid #eee;
}

.mini-grid span {
    display: block;
    font-size: 24px;
}

.mini-grid b {
    display: block;
    margin-top: 7px;
}

.mini-grid small {
    color: #888;
}


/* =====================================================
   SERVICE STRIP
===================================================== */

.service-strip {
    background: var(--black);
    color: white;
    padding: 25px 0;
}

.service-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.service-strip-grid > div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
    font-size: 13px;
}

.service-strip-grid span {
    font-size: 22px;
}


/* =====================================================
   INCOME BANNER
===================================================== */

.income-banner {
    background: var(--red);
    color: white;
}

.income-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.income-inner > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.income-inner p {
    margin-left: 5px;
}

.white-btn {
    display: inline-block;
    background: white;
    color: var(--red);
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 800;
}


/* =====================================================
   SECTION
===================================================== */

.section {
    padding: 95px 0;
}

.soft-red {
    background: var(--red-soft);
}

.section-heading {
    max-width: 850px;
    margin-bottom: 50px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin: 10px 0 18px;
    letter-spacing: -1px;
}

.section-heading h2 span {
    color: var(--red);
}

.section-heading p {
    color: #666;
    font-size: 17px;
}


/* =====================================================
   TIMELINE
===================================================== */

.timeline {
    max-width: 850px;
    margin-bottom: 50px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.timeline-year {
    color: var(--red);
    font-size: 25px;
    font-weight: 900;
}

.timeline-content h3 {
    font-size: 21px;
    margin-bottom: 7px;
}

.timeline-content p {
    color: #666;
}


/* =====================================================
   SOLUTIONS
===================================================== */

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.solution-card {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: var(--radius);
    background: white;
    transition: .3s;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: #ffccd4;
    box-shadow: var(--shadow);
}

.solution-card > span {
    font-size: 32px;
}

.solution-card h3 {
    font-size: 18px;
    margin: 12px 0 7px;
}

.solution-card p {
    color: #666;
    font-size: 14px;
}


/* =====================================================
   RED SECTION
===================================================== */

.red-section {
    background:
        radial-gradient(circle at 10% 20%, #ed3554, transparent 30%),
        linear-gradient(135deg, #bd0024, #e3062f);
    color: white;
}

.red-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.white {
    color: white;
}

.red-grid h2 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    margin: 12px 0 20px;
}

.red-grid h2 strong {
    display: block;
}

.red-grid p {
    font-size: 18px;
    opacity: .9;
}

.channel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.channel-list span {
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
    border-radius: 50px;
    font-size: 13px;
}

.quote-card {
    background: white;
    color: #222;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.quote-icon {
    font-size: 60px;
    color: var(--red);
    line-height: 1;
}

.quote-card p {
    color: #333;
    font-size: 20px;
    line-height: 1.6;
}

.quote-card strong {
    display: block;
    margin-top: 20px;
    color: var(--red);
}


/* =====================================================
   MARKET
===================================================== */

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.market-card {
    padding: 35px;
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.market-card.featured {
    background: var(--red);
    color: white;
    transform: translateY(-10px);
}

.market-card span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    opacity: .8;
}

.market-card strong {
    display: block;
    font-size: 40px;
    margin: 10px 0;
}

.market-card p {
    font-size: 14px;
    color: #777;
}

.market-card.featured p {
    color: white;
}

.drivers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.driver {
    padding: 25px;
    border-top: 3px solid var(--red);
}

.driver > div {
    color: var(--red);
    font-weight: 900;
}

.driver h3 {
    margin: 10px 0;
    font-size: 18px;
}

.driver p {
    color: #666;
    font-size: 14px;
}


/* =====================================================
   BENEFITS
===================================================== */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card {
    background: white;
    padding: 28px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.benefit-card > span {
    color: var(--red);
    font-weight: 900;
}

.benefit-card h3 {
    margin: 12px 0 5px;
    font-size: 18px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}


/* =====================================================
   CTA BANNER
===================================================== */

.cta-banner {
    margin-top: 45px;
    background: var(--red);
    color: white;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-banner h3 {
    font-size: 25px;
}

.cta-banner p {
    opacity: .9;
}

.cta-banner .primary-btn {
    background: white;
    color: var(--red);
    box-shadow: none;
}


/* =====================================================
   SERVICES
===================================================== */

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    padding: 30px;
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #ffccd4;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    background: var(--red-light);
    border-radius: 12px;
    font-size: 27px;
}

.service-card h3 {
    font-size: 21px;
    margin: 18px 0 10px;
}

.service-card > p {
    color: #666;
    font-size: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    margin-top: 8px;
    border-top: 1px solid #eee;
    font-size: 13px;
}

.price-row strong {
    color: var(--red);
}


/* =====================================================
   LEAD GENERATION
===================================================== */

.white-heading h2 {
    color: white;
}

.white-heading p {
    color: rgba(255,255,255,.8);
}

.lead-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lead-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    border-radius: 15px;
}

.lead-card strong {
    font-size: 30px;
    opacity: .5;
}

.lead-card h3 {
    margin: 10px 0;
}

.lead-card p {
    opacity: .8;
    font-size: 14px;
}


/* =====================================================
   MAJOR BENEFITS
===================================================== */

.major-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.major-benefits > div {
    text-align: center;
    padding: 35px 20px;
    border-radius: 18px;
    background: var(--red-light);
}

.major-benefits span {
    font-size: 40px;
}

.major-benefits h3 {
    margin-top: 10px;
}


/* =====================================================
   USP
===================================================== */

.usp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.usp-card {
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 1px solid #eee;
}

.usp-card span {
    color: var(--red);
    font-weight: 900;
}

.usp-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.usp-card p {
    color: #666;
    font-size: 14px;
}


/* =====================================================
   PRICING
===================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 850px;
    margin: auto;
}

.pricing-card {
    position: relative;
    padding: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.featured-price {
    border: 3px solid var(--red);
}

.popular {
    position: absolute;
    right: 25px;
    top: 20px;
    background: var(--red);
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 900;
}

.pricing-head span {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
}

.pricing-head h3 {
    font-size: 25px;
    margin-top: 7px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    margin-top: 25px;
}

.price {
    color: var(--red);
    font-size: 48px;
    font-weight: 900;
}

.pricing-card > p {
    color: #666;
}

.yearly {
    background: var(--red-light);
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
}

.yearly strong {
    color: var(--red);
}

.primary-btn.full {
    width: 100%;
}

.included {
    max-width: 850px;
    margin: 30px auto 0;
    padding: 30px;
    background: var(--red-light);
    border-radius: 15px;
}

.included h3 {
    margin-bottom: 20px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.included-grid span {
    color: #333;
    font-weight: 600;
}


/* =====================================================
   DOCUMENTS
===================================================== */

.documents {
    padding: 70px 0;
    background: var(--black);
    color: white;
}

.documents-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.documents h2 {
    font-size: 40px;
    margin: 10px 0;
}

.documents p {
    color: #aaa;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-list span {
    padding: 15px 18px;
    border: 1px solid #333;
    border-radius: 9px;
}

.document-list span::first-letter {
    color: #ff3657;
}

.document-list small {
    color: #aaa;
}


/* =====================================================
   VIDEO
===================================================== */

.video-box {
    max-width: 900px;
    margin: auto;
}

.video-placeholder {
    min-height: 430px;
    border-radius: 22px;
    background:
        linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.7)),
        linear-gradient(135deg, #650015, #d90429);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.play-button {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    background: white;
    color: var(--red);
    border-radius: 50%;
    font-size: 28px;
    padding-left: 4px;
    margin-bottom: 20px;
}

.video-placeholder h3 {
    font-size: 28px;
}

.video-placeholder p {
    opacity: .8;
}

.youtube-cta {
    text-align: center;
    margin-top: 25px;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
    max-width: 900px;
    margin: auto;
}

.faq details {
    background: white;
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 25px;
}

.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 800;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary span {
    color: var(--red);
    font-size: 22px;
}

.faq p {
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    background:
        radial-gradient(circle at 90% 20%, #f13b5b, transparent 30%),
        linear-gradient(135deg, #a90020, #e3062f);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-content {
    max-width: 850px;
    margin: auto;
}

.final-content h2 {
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.08;
    margin: 15px 0;
}

.final-content > p {
    font-size: 18px;
    opacity: .9;
}

.advance {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    margin: 25px 0;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
}

.advance strong {
    font-size: 24px;
}

.advance span {
    font-size: 14px;
}

.white-large-btn {
    display: inline-block;
    padding: 17px 28px;
    background: white;
    color: var(--red);
    border-radius: 9px;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.payment {
    margin-top: 25px;
    font-size: 13px !important;
}

.final-content small {
    opacity: .75;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #111;
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
}

.footer-logo span {
    color: var(--red);
}

.footer-grid p {
    color: #999;
    max-width: 350px;
    margin-top: 15px;
}

.footer-grid h4 {
    margin-bottom: 15px;
}

.footer-grid > div:not(:first-child) a {
    display: block;
    color: #aaa;
    margin: 8px 0;
}

.footer-grid a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #292929;
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 13px;
}


/* =====================================================
   CPAAS MODAL POPUP
===================================================== */

.cpaas-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.cpaas-modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 18px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease-in-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    border: none;
    background: none;
    line-height: 1;
}

.close-modal-btn:hover {
    color: var(--red);
}

.modal-body h2 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 28px;
}

.modal-body h2 span {
    color: var(--red);
}

.modal-body h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.modal-body p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.modal-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-features-list li span {
    color: var(--red);
    font-weight: bold;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav-links {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-subtitle {
        margin: auto;
    }

    .solution-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-strip-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-cards {
        grid-template-columns: 1fr 1fr;
    }

    .drivers {
        grid-template-columns: 1fr 1fr;
    }

    .lead-grid {
        grid-template-columns: 1fr 1fr;
    }

    .major-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .documents-inner {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .container {
        width: 91%;
    }

    .nav-inner {
        min-height: 68px;
    }

    .logo {
        font-size: 24px;
    }

    .mobile-menu {
        top: 68px;
    }

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 7px;
    }

    .hero-card {
        transform: none;
    }

    .earning h2 {
        font-size: 31px;
    }

    .service-strip {
        padding: 25px 0;
    }

    .service-strip-grid {
        grid-template-columns: 1fr;
    }

    .service-strip-grid > div {
        justify-content: flex-start;
    }

    .income-inner {
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
    }

    .income-inner > div {
        flex-direction: column;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 33px;
    }

    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 15px;
    }

    .timeline-year {
        font-size: 21px;
    }

    .solution-grid,
    .market-grid,
    .benefit-grid,
    .service-cards,
    .drivers,
    .lead-grid,
    .major-benefits,
    .usp-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .market-card.featured {
        transform: none;
    }

    .red-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .quote-card {
        padding: 28px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 23px;
    }

    .price {
        font-size: 40px;
    }

    .documents-inner {
        gap: 35px;
    }

    .documents h2 {
        font-size: 34px;
    }

    .video-placeholder {
        min-height: 300px;
    }

    .final-cta {
        padding: 70px 0;
    }

    .final-content h2 {
        font-size: 42px;
    }

    .advance {
        flex-direction: column;
        border-radius: 15px;
    }

    .white-large-btn {
        width: 100%;
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .earning h2 {
        font-size: 27px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

}