:root {
    --font-size: 16px;
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --background: #ffffff;
    --foreground: #162d5a;

    --primary: #367df9;
    --secondary: #162d5a;
    --yellow-accent: #facc15;

    --muted: #f5f8ff;
    --muted-foreground: #505766;

    --border: rgba(22, 45, 90, 0.1);

    --radius: 12px;

    --font-weight-medium: 600;
    --font-weight-normal: 400;
    --ring: #367df9;
}
.facebook_advertising_services header .cart-wrap ul li.user, .facebook_advertising_services header .menu_wrap .navbar-nav > li > a {
    padding:15px 12px;
}
.facebook_advertising_services header .cart-wrap ul li.cart a img, .facebook_advertising_services header .cart-wrap ul li.call-ic a img, .facebook_advertising_services header .cart-wrap ul li.user .login-info img {
    max-width: 18px;
    max-height: 18px;
}
.facebook_advertising_services header .cart-wrap ul li.user .login-info,.facebook_advertising_services header .cart-wrap ul li.call-ic a,.facebook_advertising_services header .cart-wrap ul li.cart a{
    width: 35px;
    height: 35px;
}
.facebook_advertising_services header .cart-wrap ul li {
    margin-right: 12px;
}
.facebook_advertising_services header .logout img{
    width: 35px;
    height: 35px;
}
.facebook_advertising_services header li#user_menu{
    padding-right: 0px;
}
/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4 {
    margin: 0 0 10px;
    font-weight: var(--font-weight-medium);
}

h1 {
    font-size: 78px;
}

h2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
}

h2.sec-title {
    color: var(--foreground);
    text-align: center;
    font-style: normal;
    margin: 0 auto 15px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

p {
    color: var(--muted-foreground);
}

p.subtext {

    color: var(--muted-foreground);
    text-align: center;
    font-family: Manrope;
    margin: 0 auto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;


}

/* =========================
   FORM ELEMENTS
========================= */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: var(--font-weight-medium);
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    background: var(--muted);
    color: var(--foreground);
    border-radius: var(--radius);
    font-size: 16px;
}

:focus-visible {
    outline: 0;
}

a {
    text-decoration: none;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* =========================
   BUTTON
========================= */
.btn {
    padding: 10px 16px;
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-weight: var(--font-weight-medium);
    border-radius: 16px;
    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
}


svg {
    display: block;
}


/* ===== STICKY CTA ===== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;

    background: #fff;
    border-top: 2px solid #367DF9;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.sticky-cta-bar.active {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-bar .sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 32px;
}

.sticky-cta-bar .sticky-cta-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.5;
    margin: 0;
}

.sticky-cta-bar .sticky-cta-sub {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
    margin: 0;
}

.sticky-cta-bar .sticky-cta-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sticky-cta-bar .sticky-btn-outline {
    padding: 12px 24px;
    border: 2px solid var(--foreground);
    color: var(--foreground);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: none;
    border-radius: 16px;

    transition: all 0.3s ease;
}

.sticky-cta-bar .sticky-btn-outline:hover {
    background: var(--foreground);
    color: var(--background);
}

.sticky-cta-bar .sticky-btn-primary {
    padding: 12px 24px;
    background: #367DF9;
    color: #fff;
    border-radius: 16px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    transition: all 0.3s ease;
    box-shadow: 0 15px 25px -5px rgba(54, 125, 249, 0.30), 0 8px 10px -6px rgba(54, 125, 249, 0.30);
}

.sticky-cta-bar .sticky-btn-primary:hover {
    background: rgba(54, 125, 249, 0.9);
}

.sticky-cta-bar .arrow {
    font-size: 14px;
}


/* ===== RESPONSIVE ===== */
@media (max-width:1199px) {
    .sticky-cta-bar .sticky-cta-inner {
        padding: 16px 0;
    }
}

@media (max-width: 768px) {

    .sticky-cta-bar .sticky-cta-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .sticky-cta-bar .sticky-cta-actions {
        width: 100%;

    }

    .sticky-cta-bar .sticky-cta-actions a {
        flex: 1;
        justify-content: center;
    }

    .sticky-cta-bar .sticky-btn-outline,
    .sticky-cta-bar .sticky-btn-primary {
        padding: 10px 16px;
    }
}



/* CTA Button */
.header-cta-button {
    padding: 8px 16px;
    background: var(--background);
    border: none;

    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;

    display: flex;
    align-items: center;
    gap: 8px;

    border-radius: 12px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.header-cta-button:hover {
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.25);
}

.header-cta-button .svg-wrapper {
    transition: transform 0.3s ease;
}

.header-cta-button:hover .svg-wrapper {
    transform: translateX(4px);
}

/* hero section */
/* HERO SECTION */
.hero-section {
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(64px);
}

.hero-blob-right {
    top: 80px;
    right: 0;
    width: 600px;
    height: 600px;
    background: rgba(54, 125, 249, 0.05);

}

.hero-blob-left {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(54, 125, 249, 0.05);

}

.hero-inner {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    margin-bottom: 32px;
    border-radius: 3.402820018375656e+38px;
    border: 1px solid rgba(54, 125, 249, 0.20);
    background: rgba(54, 125, 249, 0.10);
    color: #367DF9;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.hero-title {
    max-width: 751px;
    color: #162D5A;
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 auto;
    padding: 0;
}

.hero-section .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-section .underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
}

.hero-desc {
    padding: 0;
    color: #505766;
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.5px;
    max-width: 896px;
    margin: 32px 0 0;
}

.hero-checklist {
    padding: 25px;
    border-radius: 16px;
    text-align: left;
    max-width: 360px;
    border-radius: 16px;
    border: 1px solid rgba(22, 45, 90, 0.10);
    background: #FFF;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    margin: 32px auto;
}

.hero-section .checklist-title {
    margin: 0 0 8px;
    color: #505766;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.hero-section .check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 32px;
    color: #162D5A;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.05px;

}

.hero-section .check-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 20px;
    height: 20px;

    background-color: rgba(54, 125, 249, 0.1);
    border-radius: 50%;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23367DF9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}


.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(54, 125, 249, 0.30), 0 8px 10px -6px rgba(54, 125, 249, 0.30);
    font-size: 16px;
    line-height: 1.5;
}

.btn-primary:hover {
    background: rgba(54, 125, 249, 0.9);


    box-shadow: 0 25px 50px -12px rgba(54, 125, 249, 0.40);
}

.btn-primary .svg-wrapper:last-child {
    transition: transform 0.3s ease;
}

.btn-primary:hover .svg-wrapper:last-child {
    transform: translateX(4px);
}


.btn-secondary {
    padding: 16px 34px;
    color: var(--foreground);
    border: 2px solid #162D5A;
    background: #FFF;
    font-size: 16px;
    line-height: 1.5;
}

.btn-secondary:hover {
    background: var(--foreground);
    color: #fff;
}

.btn-secondary:hover svg path {
    stroke: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 672px;
    padding-top: 48px;
    margin: 32px auto 0px;
}

.hero-section .stat {
    text-align: center;
}

.hero-section .stat-icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: rgba(54, 125, 249, 0.10);
    margin: 0 auto 8px;
}

.hero-section .stat-value {
    color: #162D5A;
    text-align: center;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.11;
    margin: 0 0 5px;
}

.hero-section .stat-label {
    color: #505766;
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

/* =========================
  POBLEM SECTION
========================= */
.problem-section {
    background: rgba(245, 248, 255, 0.5);

}

.problem-section .problem-header {
    text-align: center;
    margin-bottom: 48px;

}

.problem-section .problem-title {

    max-width: 746px;
}

.problem-section .problem-desc {
    max-width: 491px;

}

.problem-section .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.problem-section .problem-card {
    position: relative;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(22, 45, 90, 0.1);
    transition: box-shadow 0.3s ease 0s !important;
    height: 100%;
}

.problem-section .problem-card.red {
    background: linear-gradient(135deg, #fb2c361a 0%, rgba(251, 44, 54, 0.05) 100%);
}

.problem-section .problem-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.problem-section .problem-card.amber {
    background: linear-gradient(135deg, rgba(254, 154, 0, 0.10) 0%, rgba(254, 154, 0, 0.05) 100%);

}

.problem-section .problem-card.blue {
    background: linear-gradient(135deg, rgba(43, 127, 255, 0.10) 0%, rgba(43, 127, 255, 0.05) 100%);

}

.problem-section .card-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    margin-bottom: 15px;

}

.problem-section .problem-card.red .card-icon {
    background: rgba(251, 44, 54, 0.10);

}

.problem-section .problem-card.amber .card-icon {
    background: rgba(254, 154, 0, 0.10);

}

.problem-section .problem-card.blue .card-icon {
    background: rgba(43, 127, 255, 0.10);

}

.problem-section .card-title {

    margin-bottom: 8px;
    color: var(--foreground);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
}

.problem-section .card-problem {

    color: var(--muted-foreground);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 12px;
}

.problem-section .card-solution {
    position: relative;
    padding-left: 24px;
    color: #367DF9;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
}

.problem-section .card-solution::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M13.3332 4L5.99984 11.3333L2.6665 8" stroke="%23367DF9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}


/* =========================
  SERVICES SECTION
========================= */



.services-section .services-header {
    margin-bottom: 48px;
    text-align: center;
}

.services-section .services-title {
    max-width: 677px;
}

.services-section .services-desc {
    max-width: 672px;

}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.services-section .service-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(22, 45, 90, 0.05);
    padding: 25px;
    transition: box-shadow 0.3s ease 0s, padding-bottom 0.3s ease-in-out !important;
    overflow: hidden;
    height: 100%;
}


.services-section .service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    padding-bottom: 60px;
}

.services-section .card-hover-info {
    border-top: 1px solid rgba(0, 0, 0, 0.08);

    width: calc(100% - 50px);
    margin: 0 auto;

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;

    opacity: 0;
    transform: translateY(100%);

    padding: 12px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;
}

.services-section .card-hover-link {
    font-size: 12px;
    color: var(--muted-foreground);

    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;

}

.services-section .service-card:hover .card-hover-info {
    opacity: 1;

    transform: translateY(0);
}

.services-section .card-hover-link:hover {
    color: #000;
}

.services-section .service-card.large {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 24px;
    background: linear-gradient(135deg, #367DF9 0%, rgba(54, 125, 249, 0.80) 100%);
    color: #fff;
    padding: 32px 32px 52px;
}

.services-section .card-blob {
    position: absolute;
    right: -48px;
    bottom: -48px;
    width: 192px;
    height: 192px;
    background: rgba(255, 255, 255, 0.10);

    border-radius: 50%;
    filter: blur(64px);
    transition: transform 0.5s;
}

.services-section .service-card.large:hover .card-blob {
    transform: scale(1.5);
}

.services-section .card-content {
    position: relative;
    z-index: 2;
}

.services-section .card-icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}


.services-section .large-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.20);
    margin-bottom: 24px;
}

.services-section .card-title {
    margin-bottom: 8px;
    color: var(--foreground);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.services-section .large-title {

    margin-bottom: 16px;
    color: var(--background);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.services-section .card-desc {

    color: var(--muted-foreground);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.services-section .card-desc.light {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.services-section .card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-section .card-list li {
    color: var(--background);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    padding-left: 32px;
    position: relative;
}

.services-section .card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 20px;
    height: 20px;

    background: rgba(255, 255, 255, 0.20);
    border-radius: 50%;

    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M10 3L4.5 8.5L2 6" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.services-section .card-list li:not(:last-child) {
    margin-bottom: 12px;
}

.services-section .service-card.small {
    background: #fff;
}

.services-section .service-card.purple {
    background: linear-gradient(135deg, rgba(173, 70, 255, 0.10) 0%, rgba(173, 70, 255, 0.05) 100%), #FFF;
}

.services-section .service-card.green {
    background: linear-gradient(135deg, rgba(0, 201, 80, 0.10) 0%, rgba(0, 201, 80, 0.05) 100%), #FFF;
}

.services-section .service-card.orange {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.10) 0%, rgba(255, 105, 0, 0.05) 100%), #FFF;

}

.services-section .service-card.cyan {
    background: linear-gradient(135deg, rgba(0, 184, 219, 0.10) 0%, rgba(0, 184, 219, 0.05) 100%), #FFF;
}

.services-section .service-card.purple .card-icon {
    background: rgba(173, 70, 255, 0.10);

}

.services-section .service-card.green .card-icon {
    background: rgba(0, 201, 80, 0.10);

}

.services-section .service-card.orange .card-icon {
    background: rgba(255, 105, 0, 0.10);
}

.services-section .service-card.cyan .card-icon {
    background: rgba(0, 184, 219, 0.10);
}


/* =========================
Pricing Section
========================= */

.pricing-section {}

.pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-section .pricing-header h2 {}

.pricing-section .pricing-header p {
    max-width: 595px;
    display: block;
}

.pricing-section .pricing-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;

    background-color: var(--muted);
    margin-top: 32px;
}

.pricing-section .tab {
    padding: 10px 18px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 16px;
    padding: 12px 23.467px 12px 24px;
    color: var(--muted-foreground);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;



}

.pricing-section .tab.active {
    background: var(--primary);
    color: var(--background);

}

.pricing-section .pricing-content {

    max-width: 896px;
    margin: 0 auto;
}

.pricing-section .plan {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-section .plan.active {
    display: block;
    animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-section .plan-card {

    overflow: hidden;
    border-radius: 24px;
    border: 2px solid var(--border);
    background: var(--background);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pricing-section .plan-card.popular {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.pricing-section .badge {
    padding: 10px;
    font-weight: 600;
    background: linear-gradient(to right, var(--background), var(--primary));
    color: #000000;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    width: 100%;
}

.pricing-section .plan-body {
    padding: 28px 32px 32px;
}

.pricing-section .plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pricing-section .plan-grid .plan-left h3 {
    color: var(--foreground);
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.11;
    margin-bottom: 8px;


}

.pricing-section .plan-grid .plan-left p {
    color: var(--muted-foreground);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 24px;

}

.pricing-section .price {
    color: var(--primary);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}

.pricing-section .price span {
    color: #505766;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;

}

.pricing-section .progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-section .progress-head span {
    color: var(--muted-foreground);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;

}

.pricing-section .progress-head strong {

    color: var(--foreground);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;

}

.pricing-section .progress-box {
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: rgba(245, 248, 255, 0.50);

}

.pricing-section .progress {
    height: 8px;
    background: white;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}

.pricing-section .progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #367DF9 0%, #367DF9 100%);
}

.pricing-section .progress-wrap progress {
    width: 100%;
    height: 8px;
    appearance: none;
    border: none;
    border-radius: 999px;
    overflow: hidden;
}

/* Track */
.pricing-section .progress-wrap progress::-webkit-progress-bar {
    background: white;
    border-radius: 999px;
}

/* Value */
.pricing-section .progress-wrap progress::-webkit-progress-value {
    background: linear-gradient(90deg, #367DF9 0%, #367DF9 100%);
    border-radius: 999px;
}

/* Firefox */
.pricing-section .progress-wrap progress::-moz-progress-bar {
    background: linear-gradient(90deg, #367DF9 0%, #367DF9 100%);
    border-radius: 999px;
}

.pricing-section .btn-primary {
    width: 100%;
    justify-content: center;
}

.pricing-section .btn-secondary {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.pricing-section .plan-right h4 {
    color: var(--foreground);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pricing-section .features {
    margin: 0;
    padding: 0;
}

.pricing-section .features li {
    padding: 13px 14px 13px 45px;
    list-style: none;
    border-radius: 16px;
    background: rgba(245, 248, 255, 0.30);
    color: #162D5A;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    opacity: 0.5;
}

.pricing-section .features li:not(:last-child) {
    margin-bottom: 12px;
}

.pricing-section .features li.active {
    background: rgba(54, 125, 249, 0.05);
    opacity: 1;
    font-weight: 600;
}

.pricing-section .features li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);

    width: 20px;
    height: 20px;

    background-color: rgba(54, 125, 249, 0.1);
    border-radius: 50%;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23367DF9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}


.pricing-section .features li:not(.active)::before {
    background-color: #F5F8FF;
    background-size: 15px 15px;

    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M9 3L3 9" stroke="%23505766" stroke-linecap="round" stroke-linejoin="round"/><path d="M3 3L9 9" stroke="%23505766" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.pricing-section .compare-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;

    gap: 8px;
    margin: 50px auto 0;
    padding: 13px 25px;

    border-radius: 16px;
    border: 1px solid rgba(22, 45, 90, 0.10);
    background: var(--background);


    transition: all 0.3s ease;
    color: var(--foreground);

}

.pricing-section .compare-btn:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pricing-section .compare-btn .icon {
    width: 16px;
    height: 16px;

    background-repeat: no-repeat;
    background-position: center;

    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23111"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>');
}

.case-section {
    position: relative;
    background: linear-gradient(135deg, #162D5A 0%, #162D5A 100%);
    color: var(--background);
    overflow: hidden;

}

.case-section .case-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.case-section .case-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #fff;
    border-radius: 50%;
    filter: blur(120px);
}

.case-section .case-blob-left {
    top: 0;
    left: 0;
}

.case-section .case-blob-right {
    bottom: 0;
    right: 0;
}

.case-section .case-header {
    text-align: center;
    margin-bottom: 48px;
}

.case-section h2.sec-title {
    color: var(--background);
}

.case-section .case-desc {
    max-width: 551px;
    color: rgba(255, 255, 255, 0.80);
}

.case-section .case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.case-section .case-card {
    border-radius: 16px;
    padding: 25px;
    transition: background 0.3s ease 0s, border-color 0.3s ease 0s;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
}

.case-section .case-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.case-section .case-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    align-items: center;
}

.case-section .case-platform {

    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(253, 199, 0, 0.20);
    color: #FFDF20;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.case-section .case-stars {
    font-size: 14px;
    color: #facc15;
}

.case-section .case-brand {

    margin-bottom: 16px;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.case-section .case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.case-section .case-metrics span {

    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.case-section .case-metrics strong {
    display: block;
    color: var(--background);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 5px;
}

.case-section .case-quote {

    margin: 16px 0px;
    color: rgba(255, 255, 255, 0.80);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    position: relative;
    padding-left: 32px;
}

.case-section .case-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M13.3332 2.5C12.8911 2.5 12.4672 2.67559 12.1547 2.98816C11.8421 3.30072 11.6665 3.72464 11.6665 4.16667V9.16667C11.6665 9.60869 11.8421 10.0326 12.1547 10.3452C12.4672 10.6577 12.8911 10.8333 13.3332 10.8333C13.5542 10.8333 13.7661 10.9211 13.9224 11.0774C14.0787 11.2337 14.1665 11.4457 14.1665 11.6667V12.5C14.1665 12.942 13.9909 13.366 13.6783 13.6785C13.3658 13.9911 12.9419 14.1667 12.4998 14.1667C12.2788 14.1667 12.0669 14.2545 11.9106 14.4107C11.7543 14.567 11.6665 14.779 11.6665 15V16.6667C11.6665 16.8877 11.7543 17.0996 11.9106 17.2559C12.0669 17.4122 12.2788 17.5 12.4998 17.5C13.8259 17.5 15.0977 16.9732 16.0354 16.0355C16.9731 15.0979 17.4998 13.8261 17.4998 12.5V4.16667C17.4998 3.72464 17.3242 3.30072 17.0117 2.98816C16.6991 2.67559 16.2752 2.5 15.8332 2.5H13.3332Z" stroke="white" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.16667 2.5C3.72464 2.5 3.30072 2.67559 2.98816 2.98816C2.67559 3.30072 2.5 3.72464 2.5 4.16667V9.16667C2.5 9.60869 2.67559 10.0326 2.98816 10.3452C3.30072 10.6577 3.72464 10.8333 4.16667 10.8333C4.38768 10.8333 4.59964 10.9211 4.75592 11.0774C4.9122 11.2337 5 11.4457 5 11.6667V12.5C5 12.942 4.82441 13.366 4.51184 13.6785C4.19928 13.9911 3.77536 14.1667 3.33333 14.1667C3.11232 14.1667 2.90036 14.2545 2.74408 14.4107C2.5878 14.567 2.5 14.779 2.5 15V16.6667C2.5 16.8877 2.5878 17.0996 2.74408 17.2559C2.90036 17.4122 3.11232 17.5 3.33333 17.5C4.65942 17.5 5.93119 16.9732 6.86887 16.0355C7.80655 15.0979 8.33333 13.8261 8.33333 12.5V4.16667C8.33333 3.72464 8.15774 3.30072 7.84518 2.98816C7.53262 2.67559 7.10869 2.5 6.66667 2.5H4.16667Z" stroke="white" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.case-section .case-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}


.case-section .case-user .user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.case-section .case-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-section .case-user span {
    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;

}

.case-section .case-cta {
    text-align: center;
    margin-top: 48px;
}

.case-section .case-btn {
    color: #000;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: var(--background);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    width: fit-content;
    margin: 0 auto;

}

.case-section .case-btn:hover {
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
/* @media (max-width: 992px) {
    .case-section .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .case-section .case-grid {
        grid-template-columns: 1fr;
    }

    .case-section .case-header {
        margin-bottom: 40px;
    }
} */


/* ===== PROCESS ===== */

.process-section .process-header {
    text-align: center;
    margin-bottom: 48px;
}

.process-section .process-desc {
    max-width: 546px;
}

.process-section .process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-section .process-line {
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: linear-gradient(to right, rgba(54, 125, 249, 0.2), #367DF9, rgba(54, 125, 249, 0.2));
    border-radius: 10px;
}

.process-section .process-item {
    text-align: center;
    position: relative;
}

.process-section .process-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #367DF9 0%, rgba(54, 125, 249, 0.80) 100%);
    box-shadow: 0 20px 25px -5px rgba(54, 125, 249, 0.30), 0 8px 10px -6px rgba(54, 125, 249, 0.30);
    padding: 0 24px;
}

.process-section .process-time {
    display: inline-block;
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(54, 125, 249, 0.10);
    font-weight: 600;
    line-height: 1.4;
}

.process-section .process-heading {

    margin-bottom: 9px;
    color: var(--foreground);
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
}

.process-section .process-text {

    color: #505766;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.process-section .process-cta {
    text-align: center;
    margin-top: 48px;
}

.process-section .btn-primary {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-section {
    background: rgba(0, 0, 0, 0.03);
}

.faq-section .faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-section .faq-list {
    max-width: 896px;
    margin: 0 auto;
}

.faq-section .faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-section .faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    border-width: 0 0 1px 0;
    border-color: rgba(22, 45, 90, 0);
    transition: border-color 0.3s ease-in-out;
    background: #FFF;
}

.faq-section .faq-item.active .faq-question {

    border-color: rgba(22, 45, 90, 0.10);
}

.faq-section .faq-item:hover .faq-question {
    background-color: #f5f8ff4d;
}

.faq-section .faq-question span {
    color: var(--foreground);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
}

/* Icon */
.faq-section .faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M5 7.5L10 12.5L15 7.5" stroke="%23367DF9" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    transition: transform 0.3s ease;
}



/* Active state */
.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-section .faq-item.active .faq-icon::after {
    display: none;
}

/* Answer */
.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px;
}



.faq-section .faq-answer p {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
    padding: 16px 0px 20px;
}

/* CTA */
.faq-section .faq-cta {
    text-align: center;
    padding: 96px 33px 33px;
    border-radius: 16px;
    border: 1px solid rgba(54, 125, 249, 0.20);
    background-color: rgba(54, 125, 249, 0.05);
    max-width: 896px;
    width: 100%;
    margin: 48px auto 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M15.8 40C19.6172 41.9581 24.0082 42.4885 28.1818 41.4955C32.3554 40.5026 36.0371 38.0516 38.5635 34.5843C41.0899 31.117 42.2948 26.8614 41.9612 22.5843C41.6275 18.3072 39.7772 14.2899 36.7436 11.2564C33.7101 8.2228 29.6928 6.37247 25.4157 6.0388C21.1386 5.70513 16.8829 6.91006 13.4156 9.43646C9.94834 11.9629 7.49738 15.6446 6.50445 19.8182C5.51151 23.9918 6.04188 28.3828 8 32.2L4 44L15.8 40Z" stroke="%23367DF9" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center 33px;
    background-size: 38px 38px;
}

.faq-section .faq-cta h3 {
    margin-bottom: 8px;
    color: var(--foreground);
    text-align: center;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.faq-section .faq-cta p {

    margin: 0 0 16px;
    color: var(--muted-foreground);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.faq-section .faq-cta .btn-primary {
    padding: 12px 32px;
    width: fit-content;
    margin: 0 auto;

}

/* ===== FINAL CTA ===== */
.final-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #367DF9 0%, rgba(54, 125, 249, 0.90) 50%, #162D5A 100%);
    color: var(--background);
}

.final-cta-section.py-80 {
    padding-top: 96px;
    padding-bottom: 96px;
}

/* Background blobs */
.final-cta-section .final-cta-bg {
    position: absolute;
    inset: 0;
}

.final-cta-section .cta-blob {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    filter: blur(64px);
}

.final-cta-section .cta-blob-right {
    top: 0;
    right: 0;
}

.final-cta-section .cta-blob-left {
    bottom: 0;
    left: 0;
}

/* Inner */
.final-cta-section .final-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Heading */
.final-cta-section .sec-title {
    margin-bottom: 23px;
    color: var(--background);
}

/* Description */
.final-cta-section .subtext {
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.90);
    max-width: 672px;

}

/* Buttons */
.final-cta-section .final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

/* Primary Button override */
.final-cta-section .btn-primary {
    background: var(--background);
    color: var(--foreground);
    padding: 20px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

.final-cta-section .btn-secondary {
    background: transparent;
    border-color: var(--background);
    color: var(--background);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    padding: 20px 40px;
    transition: all 0.3s ease-in-out 0s !important;
}

.final-cta-section .btn-secondary:hover {
    background-color: var(--background);
    color: var(--foreground)
}

.final-cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.final-cta-section .btn-primary .arrow {
    transition: transform 0.3s ease;
}

.final-cta-section .btn-primary:hover .arrow {
    transform: translateX(4px);
}

/* Features */
.final-cta-section .final-cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Feature item */
.final-cta-section .feature-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.final-cta-section .feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 20px;
    height: 20px;

    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><g clip-path="url(%23clip0_4_1438)"><path d="M9.99984 18.3334C14.6022 18.3334 18.3332 14.6024 18.3332 10C18.3332 5.39765 14.6022 1.66669 9.99984 1.66669C5.39746 1.66669 1.6665 5.39765 1.6665 10C1.6665 14.6024 5.39746 18.3334 9.99984 18.3334Z" stroke="%23ffffffcc" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.5 9.99998L9.16667 11.6666L12.5 8.33331" stroke="%23ffffffcc" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_4_1438"><rect width="20" height="20" fill="white"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-position: center;
}


/* ===== Footer ===== */
.footer-section {
    background: var(--foreground);
    color: #ffffff;
    padding: 40px 16px;
}

.footer-section .container {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-inner {
    text-align: center;
}

/* Logo */
.footer-logo {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.footer-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}


.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    padding-top: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Social Icons */
.footer-social-media {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-media li a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 14px;

    transition: all 0.3s ease;
}

/* SVG icon */
.footer-social-media li a svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Hover */
.footer-social-media li a:hover {
    background: #367df9;
    transform: translateY(-2px);
}

/* Copyright text */
.footer-copy-right p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Links */
.privacy_links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy_links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy_links a:hover {
    color: #fff;
}

.privacy_links span {
    color: rgba(255, 255, 255, 0.4);
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width:1440px) {}

@media (max-width:1280px) {
    .hero-title {
        font-size: 62px;
    }

}

@media (max-width:1199px) {
    .py-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-section {
        padding: 32px 0 60px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-desc {
        margin: 20px 0 0;
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-checklist {
        margin: 30px auto;
    }

    .hero-stats {
        margin: 20px auto 0px;
        padding-top: 30px;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    h2.sec-title {
        font-size: 36px;
    }

    .problem-section .problem-header {
        margin-bottom: 32px;
    }

    .services-section .services-header {
        margin-bottom: 32px;
    }

    .pricing-section .pricing-header {
        margin-bottom: 70px;
    }

    .pricing-section .plan-grid .plan-left h3 {
        font-size: 34px;
    }

    .pricing-section .compare-btn {

        margin: 40px auto 0;
    }

    .case-section .case-header {
        margin-bottom: 32px;
    }

    .case-section .case-grid {
        gap: 16px;
    }

    .case-section .case-metrics strong {
        font-size: 26px;
    }

    .case-section .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-section .case-grid .motion-div:last-child {
        grid-column: span 2;
    }

    .case-section .case-brand {
        font-size: 22px;
    }

    .process-section .process-header {
        margin-bottom: 32px;
    }

    .faq-section .faq-header {
        margin-bottom: 32px;
    }

    .faq-section .faq-cta {
        margin: 32px auto 0;
    }

    .final-cta-section .subtext {
        margin-bottom: 32px;
    }

    .final-cta-section.py-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .final-cta-section .final-cta-buttons {

        margin-bottom: 32px;
    }
}

@media (max-width:1024px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-section .service-card.large {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width:991px) {
    .problem-section .problem-grid {
        gap: 16px;
    }

    .problem-section .problem-card {
        padding: 20px;
    }

    .pricing-section .plan-grid .plan-left h3 {
        font-size: 32px;
    }

    .faq-section .faq-cta h3 {
        font-size: 22px;
    }

    .final-cta-section.py-80 {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .final-cta-section .final-cta-features {
        gap: 16px;
    }

    .footer-social-media {
        gap: 6px;
    }

    .copyright {
        margin-top: 20px;
        padding-top: 20px;
        flex-direction: column;
    }

    .process-section .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-section .process-line {
        display: none;
    }
}


@media (max-width:768px) {
    .py-80 {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .btn {
        font-size: 14px;
    }


    .btn-primary {
        padding: 10px 24px;
    }

    .btn-secondary {
        padding: 10px 28px;
        border-width: 1px;
    }

    .logo-box {
        width: 110px;
    }

    .hero-section {
        padding: 32px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-section .stat-value {
        font-size: 30px;
    }

    .hero-stats {
        margin: 10px auto 0px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-checklist {
        padding: 20px;
    }

    .services-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }



    h2.sec-title {
        font-size: 30px;
    }

    p.subtext {
        font-size: 18px;
    }



    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-section .service-card {
        padding: 20px;
    }

    .services-section .service-card.large {
        grid-column: span 1;
    }

    .pricing-section .plan-grid {

        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-section .price {
        font-size: 36px;
    }

    .pricing-section .compare-btn {
        font-size: 14px;
        padding: 12px 24px;
        margin: 32px auto 0;
    }

    .problem-section .problem-grid {
        grid-template-columns: 1fr;

    }

    .problem-section .card-title {
        font-size: 18px;
    }

    .services-section .large-title {
        font-size: 24px;
    }

    .services-section .service-card.large {
        padding: 24px;
    }

    .services-section .card-title {
        font-size: 18px;
    }

    .pricing-section .pricing-header {
        margin-bottom: 64px;
    }

    .pricing-section .tab {
        padding: 10px 16px;
        font-size: 14px;
        line-height: 1.4;
    }

    .pricing-section .plan-grid .plan-left h3 {
        font-size: 30px;
    }

    .pricing-section .plan-body {
        padding: 24px;
    }

    .pricing-section .badge {
        padding: 8px;
        font-size: 14px;
    }

    .pricing-section .btn-primary {

        padding: 16px 24px;
    }

    .pricing-section .btn-secondary {
        padding: 16px 24px;
    }

    .case-section .case-card {
        padding: 20px;
    }

    .case-section .case-grid {
        grid-template-columns: 1fr;
    }

    .case-section .case-grid .motion-div:last-child {
        grid-column: span 1;
    }

    .case-section .case-cta {
        margin-top: 32px;
    }

    .case-section .case-brand {
        font-size: 20px;
    }

    .case-section .case-metrics strong {
        font-size: 24px;
    }

    .case-section .case-platform {
        font-size: 12px;
    }

    .case-section .case-btn {
        padding: 12px 24px;
    }

    .process-section .process-heading {
        font-size: 18px;
    }

    .process-section .btn-primary {
        padding: 12px 24px;
    }

    .process-section .process-cta {
        margin-top: 32px;
    }

    .faq-section .faq-question {
        padding: 16px 20px;
    }

    .faq-section .faq-item {
        margin-bottom: 12px;
    }

    .faq-section .faq-question span {
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-section .faq-answer p {
        font-size: 14px;
    }

    .faq-section .faq-cta h3 {
        font-size: 20px;
    }

    .faq-section .faq-cta p {
        font-size: 14px;
    }

    .faq-section .faq-cta {
        padding: 79px 24px 24px;
    }

    .faq-section .faq-cta .btn-primary {
        padding: 12px 24px;
    }

    .faq-section .faq-cta {
        background-position: center 24px;
    }

    .final-cta-section .final-cta-buttons {
        flex-direction: column;
        gap: 12px;

    }

    .final-cta-section .btn-primary,
    .final-cta-section .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        justify-content: center;
    }

    .final-cta-section .cta-blob {
        width: 250px;
        height: 250px;
    }

    .final-cta-section.py-80 {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .final-cta-section .feature-item {
        font-size: 14px;
    }

    .footer-section {
        padding: 40px 0px 30px;
    }

    .footer-logo {
        width: 110px;
    }

    .footer-social-media li a {
        width: 30px;
        height: 30px;
    }

    .process-section .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:480px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-section .check-item {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-cta {
        padding-top: 0;
    }


    .hero-section .stat-value {
        font-size: 24px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .btn-secondary {
        width: 100%;
        font-size: 14px;
        justify-content: center;
    }

    .hero-checklist {
        padding: 12px;
    }
}